| includedir=${prefix}/include |
| libdir=${exec_prefix}/lib |
| Usage: xml2-config [OPTION] |
| Known values for OPTION are: |
| --prefix=DIR change libxml prefix [default $prefix] |
| --exec-prefix=DIR change libxml exec prefix [default $exec_prefix] |
| --libs print library linking information |
| add --dynamic to print only shared libraries |
| --cflags print pre-processor and compiler flags |
| --modules module support enabled |
| --help display this help and exit |
| --version output version information |
| -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; |
| includedir=$prefix/include |
| cflags="-I${includedir}/libxml2 " |
| if [ -r ${libdir}/libxml2.la ] |
| echo ${libdir}/libxml2.la |
| if [ "$2" = "--dynamic" ]; then |
| libs="-lxml2 -licui18n -licuuc -licudata -lm " |
| if [ "-L${libdir}" != "-L/usr/lib" -a "-L${libdir}" != "-L/usr/lib64" ]; then |
| if test -n "$cflags$libs"; then |