Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / libxslt / dummy / bin / xml2-config
blob4ee8dd0206c5fd306539bb15d74f0862607f7052
1 #!/bin/sh
3 # Use flags found out by configure when we *don't* want
4 # to use the "system" xml2-config in $PATH
6 case $1 in
7 --cflags)
8 echo $LIBXML_CFLAGS
9 ;;
10 --libs)
11 echo $LIBXML_LIBS
13 --version)
14 # Assume it's close enough to the system version...
15 xml2-config --version
17 esac