blob: cddd1a88ebd2ec0806a7a36bc4ce0febeb1a7b99 [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
Daniel Veillarde8553732003-09-01 20:33:14 +000018 --libtool-libs print linking information for use with libtool
Owen Taylor3473f882001-02-23 17:55:21 +000019 --cflags print pre-processor and compiler flags
20 --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
Owen Taylor3473f882001-02-23 17:55:21 +000077 --libs)
Daniel Veillard61c52202003-04-30 12:20:34 +000078 if [ "`uname`" = "Linux" ]
79 then
80 if [ "@XML_LIBDIR@" = "-L/usr/lib64" ]
81 then
82 echo @XML_LIBS@
83 else
84 echo @XML_LIBDIR@ @XML_LIBS@
85 fi
86 else
87 echo @XML_LIBDIR@ @XML_LIBS@
88 fi
Owen Taylor3473f882001-02-23 17:55:21 +000089 ;;
90
91 *)
92 usage
93 exit 1
94 ;;
95 esac
96 shift
97done
98
99exit 0