office-gobmx/libxslt/dummy/bin/xml2-config
2011-06-13 01:04:28 +03:00

17 lines
291 B
Bash
Executable file

#!/bin/sh
# Use flags found out by configure when we *don't* want
# to use the "system" xml2-config in $PATH
case $1 in
--cflags)
echo $LIBXML_CFLAGS
;;
--libs)
echo $LIBXML_LIBS
;;
--version)
# Assume it's close enough to the system version...
xml2-config --version
;;
esac