blob: ed830149f44f9bcb42ad179beb9dbc78f6adc049 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
--- x264/orig.configer 2007-09-15 20:14:00.202704854 +0200
+++ x264/configure 2007-09-15 20:15:13.969525668 +0200
@@ -1,4 +1,4 @@
-#! /bin/sh
+#! /usr/xpg4/bin/sh
if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
@@ -76,7 +76,7 @@
# check whether 'echo -n' works as expected, otherwise try printf
if [ "x`echo -n houba`" = xhouba ]
then
- ECHON="echo -n"
+ ECHON="/usr/ucb/echo -n"
elif [ "x`printf houba`" = xhouba ]
then
ECHON="printf"
--- x264/common/osdep.h Thu Nov 22 06:00:24 2007
+++ x264.modified/common/osdep.h Fri Nov 30 10:23:28 2007
@@ -44,6 +44,9 @@
#define X264_VERSION "" // no configure script for msvc
#endif
+#if defined(SYS_SunOS)
+#define isfinite _finite
+#endif
#ifdef SYS_OPENBSD
#define isfinite finite
#endif
--- x264.base/Makefile Mon Jul 16 08:45:03 2007
+++ x264/Makefile Thu Oct 11 11:52:46 2007
@@ -147,8 +147,10 @@
$(MAKE) -C gtk distclean
install: x264 $(SONAME)
- install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
- install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
+ install -d $(DESTDIR)$(bindir)
+ install -d $(DESTDIR)$(includedir)
+ install -d $(DESTDIR)$(libdir)
+ install -d $(DESTDIR)$(libdir)/pkgconfig
install -m 644 x264.h $(DESTDIR)$(includedir)
install -m 644 libx264.a $(DESTDIR)$(libdir)
install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
|