xref: /AOO41X/main/libxslt/libxslt-configure.patch (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir--- misc/libxslt-1.1.26/ltmain.sh	Wed Aug 29 14:28:46 2007
2*cdf0e10cSrcweir+++ misc/build/libxslt-1.1.26/ltmain.sh	Wed Jun 25 13:06:05 2008
3*cdf0e10cSrcweir@@ -6195,9 +6195,9 @@
4*cdf0e10cSrcweir 	    revision="$number_revision"
5*cdf0e10cSrcweir 	    ;;
6*cdf0e10cSrcweir 	  freebsd-aout|freebsd-elf|sunos)
7*cdf0e10cSrcweir-	    current="$number_major"
8*cdf0e10cSrcweir-	    revision="$number_minor"
9*cdf0e10cSrcweir-	    age="0"
10*cdf0e10cSrcweir+	    current=`expr $number_major + $number_minor`
11*cdf0e10cSrcweir+	    age="$number_minor"
12*cdf0e10cSrcweir+	    revision="$number_revision"
13*cdf0e10cSrcweir 	    ;;
14*cdf0e10cSrcweir 	  irix|nonstopux)
15*cdf0e10cSrcweir 	    func_arith $number_major + $number_minor
16*cdf0e10cSrcweir@@ -6271,8 +6271,8 @@
17*cdf0e10cSrcweir 	  ;;
18*cdf0e10cSrcweir
19*cdf0e10cSrcweir 	freebsd-elf)
20*cdf0e10cSrcweir-	  major=".$current"
21*cdf0e10cSrcweir-	  versuffix=".$current"
22*cdf0e10cSrcweir+	  major=.`expr $current - $age`
23*cdf0e10cSrcweir+	  versuffix="$major.$age.$revision"
24*cdf0e10cSrcweir 	  ;;
25*cdf0e10cSrcweir
26*cdf0e10cSrcweir 	irix | nonstopux)
27*cdf0e10cSrcweir--- misc/libxslt-1.1.26/xslt-config.in	Wed Jan 17 14:18:26 2007
28*cdf0e10cSrcweir+++ misc/build/libxslt-1.1.26/xslt-config.in	Wed Jun 25 13:06:05 2008
29*cdf0e10cSrcweir@@ -1,10 +1,16 @@
30*cdf0e10cSrcweir #! /bin/sh
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir-prefix=@prefix@
33*cdf0e10cSrcweir-exec_prefix=@exec_prefix@
34*cdf0e10cSrcweir+#prefix=@prefix@
35*cdf0e10cSrcweir+#exec_prefix=@exec_prefix@
36*cdf0e10cSrcweir+#exec_prefix_set=no
37*cdf0e10cSrcweir+#includedir=@includedir@
38*cdf0e10cSrcweir+#libdir=@libdir@
39*cdf0e10cSrcweir+
40*cdf0e10cSrcweir+prefix=${SOLARVERSION}/${INPATH}
41*cdf0e10cSrcweir+exec_prefix=${SOLARVERSION}/${INPATH}
42*cdf0e10cSrcweir exec_prefix_set=no
43*cdf0e10cSrcweir-includedir=@includedir@
44*cdf0e10cSrcweir-libdir=@libdir@
45*cdf0e10cSrcweir+includedir=${SOLARVERSION}/${INPATH}/inc${UPDMINOREXT}/external
46*cdf0e10cSrcweir+libdir=${SOLARVERSION}/${INPATH}/lib${UPDMINOREXT}
47*cdf0e10cSrcweir
48*cdf0e10cSrcweir usage()
49*cdf0e10cSrcweir {
50*cdf0e10cSrcweir@@ -89,7 +95,8 @@
51*cdf0e10cSrcweir     shift
52*cdf0e10cSrcweir done
53*cdf0e10cSrcweir
54*cdf0e10cSrcweir-the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@"
55*cdf0e10cSrcweir+#the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@"
56*cdf0e10cSrcweir+the_libs="-L${libdir} ${XSLTLIB} -lm"
57*cdf0e10cSrcweir if test "$includedir" != "/usr/include"; then
58*cdf0e10cSrcweir     the_flags="$the_flags -I$includedir `@XML_CONFIG@ --cflags`"
59*cdf0e10cSrcweir else
60*cdf0e10cSrcweir--- misc/libxslt-1.1.26/configure	2008-05-14 00:40:54.000000000 +0900
61*cdf0e10cSrcweir+++ misc/build/libxslt-1.1.26/configure	2008-07-17 22:12:38.097000000 +0900
62*cdf0e10cSrcweir@@ -7437,7 +7437,7 @@
63*cdf0e10cSrcweir
64*cdf0e10cSrcweir cygwin*)
65*cdf0e10cSrcweir   # func_win32_libid is a shell function defined in ltmain.sh
66*cdf0e10cSrcweir-  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
67*cdf0e10cSrcweir+  lt_cv_deplibs_check_method='file_magic ^x86 archive|^x86 DLL'
68*cdf0e10cSrcweir   lt_cv_file_magic_cmd='func_win32_libid'
69*cdf0e10cSrcweir   ;;
70*cdf0e10cSrcweir
71*cdf0e10cSrcweir@@ -7446,7 +7446,7 @@
72*cdf0e10cSrcweir   # func_win32_libid shell function, so use a weaker test based on 'objdump',
73*cdf0e10cSrcweir   # unless we find 'file', for example because we are cross-compiling.
74*cdf0e10cSrcweir   if ( file / ) >/dev/null 2>&1; then
75*cdf0e10cSrcweir-    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
76*cdf0e10cSrcweir+    lt_cv_deplibs_check_method='file_magic ^x86 archive|^x86 DLL'
77*cdf0e10cSrcweir     lt_cv_file_magic_cmd='func_win32_libid'
78*cdf0e10cSrcweir   else
79*cdf0e10cSrcweir     lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
80