blob: f679d811d0f6632670c473f6b218c45a9c456929 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001#! /bin/sh
2
3prefix=@prefix@
4exec_prefix=@exec_prefix@
5includedir=@includedir@
6libdir=@libdir@
7
8usage()
9{
10 cat <<EOF
Daniel Veillard070803b2002-05-03 07:29:38 +000011Usage: xml2-config [OPTION]
Owen Taylor3473f882001-02-23 17:55:21 +000012
13Known values for OPTION are:
14
15 --prefix=DIR change libxml prefix [default $prefix]
William M. Brack92029422004-01-04 01:01:14 +000016 --exec-prefix=DIR change libxml exec prefix [default $exec_prefix]
Owen Taylor3473f882001-02-23 17:55:21 +000017 --libs print library linking information
18 --cflags print pre-processor and compiler flags
Daniel Veillardce1648b2005-01-04 15:10:22 +000019 --modules module support enabled
Owen Taylor3473f882001-02-23 17:55:21 +000020 --help display this help and exit
21 --version output version information
22EOF
23
24 exit $1
25}
26
27if test $# -eq 0; then
28 usage 1
29fi
30
31cflags=false
32libs=false
33
34while test $# -gt 0; do
35 case "$1" in
36 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
37 *) optarg= ;;
38 esac
39
40 case "$1" in
41 --prefix=*)
42 prefix=$optarg
Daniel Veillard070803b2002-05-03 07:29:38 +000043 includedir=$prefix/include
44 libdir=$prefix/lib
Owen Taylor3473f882001-02-23 17:55:21 +000045 ;;
46
47 --prefix)
48 echo $prefix
49 ;;
50
William M. Brack92029422004-01-04 01:01:14 +000051 --exec-prefix=*)
52 exec_prefix=$optarg
53 libdir=$exec_prefix/lib
54 ;;
55
56 --exec-prefix)
57 echo $exec_prefix
58 ;;
59
Owen Taylor3473f882001-02-23 17:55:21 +000060 --version)
61 echo @VERSION@
62 exit 0
63 ;;
64
65 --help)
66 usage 0
67 ;;
68
69 --cflags)
70 echo @XML_INCLUDEDIR@ @XML_CFLAGS@
71 ;;
72
Daniel Veillarde8553732003-09-01 20:33:14 +000073 --libtool-libs)
74 echo ${libdir}/@XML_LIBTOOLLIBS@
75 ;;
76
Daniel Veillardce1648b2005-01-04 15:10:22 +000077 --modules)
78 echo @WITH_MODULES@
79 ;;
80
Owen Taylor3473f882001-02-23 17:55:21 +000081 --libs)
Daniel Veillard61c52202003-04-30 12:20:34 +000082 if [ "`uname`" = "Linux" ]
83 then
84 if [ "@XML_LIBDIR@" = "-L/usr/lib64" ]
85 then
86 echo @XML_LIBS@
87 else
88 echo @XML_LIBDIR@ @XML_LIBS@
89 fi
90 else
91 echo @XML_LIBDIR@ @XML_LIBS@
92 fi
Owen Taylor3473f882001-02-23 17:55:21 +000093 ;;
94
95 *)
96 usage
97 exit 1
98 ;;
99 esac
100 shift
101done
102
103exit 0