| OLD | NEW |
| (Empty) |
| 1 Modifications to configure.in: | |
| 2 - set the WITH_ICU flag unconditionally | |
| 3 - only output files we use | |
| 4 | |
| 5 Index: libxml/configure.in | |
| 6 =================================================================== | |
| 7 --- libxml.orig/configure.in 2010-07-09 15:00:21.600113911 -0700 | |
| 8 +++ libxml/configure.in 2010-07-09 15:02:50.299108047 -0700 | |
| 9 @@ -1229,6 +1229,9 @@ | |
| 10 fi | |
| 11 AC_SUBST(WITH_OUTPUT) | |
| 12 | |
| 13 +WITH_ICU=1 | |
| 14 +AC_SUBST(WITH_ICU) | |
| 15 + | |
| 16 WITH_ICONV=0 | |
| 17 if test "$with_iconv" = "no" ; then | |
| 18 echo Disabling ICONV support | |
| 19 @@ -1456,7 +1459,7 @@ | |
| 20 ln -s Copyright COPYING | |
| 21 | |
| 22 # keep on one line for cygwin c.f. #130896 | |
| 23 -AC_OUTPUT(libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/
Makefile doc/Makefile doc/examples/Makefile doc/devhelp/Makefile example/Makefil
e python/Makefile python/tests/Makefile xstc/Makefile include/libxml/xmlversion.
h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py) | |
| 24 +AC_OUTPUT(include/libxml/xmlversion.h xml2-config) | |
| 25 | |
| 26 -chmod +x xml2-config python/setup.py | |
| 27 +chmod +x xml2-config | |
| 28 echo Done configuring | |
| OLD | NEW |