17 lines
291 B
Bash
Executable file
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
|