summaryrefslogtreecommitdiff
path: root/libxslt/dummy/bin/xml2-config
blob: 4ee8dd0206c5fd306539bb15d74f0862607f7052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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