1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/xml2-config.in

109 lines
1.8 KiB
Plaintext
Raw Permalink Normal View History

2001-02-23 20:55:21 +03:00
#! /bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
includedir=@includedir@
libdir=@libdir@
cflags=
libs=
2001-02-23 20:55:21 +03:00
usage()
{
cat <<EOF
Usage: xml2-config [OPTION]
2001-02-23 20:55:21 +03:00
Known values for OPTION are:
--prefix=DIR change libxml prefix [default $prefix]
--exec-prefix=DIR change libxml exec prefix [default $exec_prefix]
2001-02-23 20:55:21 +03:00
--libs print library linking information
add --dynamic to print only shared libraries
2001-02-23 20:55:21 +03:00
--cflags print pre-processor and compiler flags
--modules module support enabled
2001-02-23 20:55:21 +03:00
--help display this help and exit
--version output version information
EOF
exit $1
}
if test $# -eq 0; then
usage 1
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case "$1" in
--prefix=*)
prefix=$optarg
includedir=$prefix/include
libdir=$prefix/lib
2001-02-23 20:55:21 +03:00
;;
--prefix)
echo $prefix
;;
--exec-prefix=*)
exec_prefix=$optarg
libdir=$exec_prefix/lib
;;
--exec-prefix)
echo $exec_prefix
;;
2001-02-23 20:55:21 +03:00
--version)
echo @VERSION@
exit 0
;;
--help)
usage 0
;;
--cflags)
cflags="@XML_INCLUDEDIR@ @XML_CFLAGS@"
2001-02-23 20:55:21 +03:00
;;
--libtool-libs)
2024-06-21 04:16:44 +03:00
if [ -r ${libdir}/libxml2.la ]
then
2024-06-21 04:16:44 +03:00
echo ${libdir}/libxml2.la
fi
;;
--modules)
echo @WITH_MODULES@
;;
2001-02-23 20:55:21 +03:00
--libs)
if [ "$2" = "--dynamic" ]; then
shift
libs="@XML_LIBS@ @XML_PRIVATE_LIBS_NO_SHARED@"
else
libs="@XML_LIBS@ @XML_PRIVATE_LIBS@ @LIBS@"
fi
2024-06-21 04:38:11 +03:00
if [ "@libdir@" != "/usr/lib" -a "@libdir@" != "/usr/lib64" ]; then
libs="@XML_LIBDIR@ $libs"
fi
;;
2001-02-23 20:55:21 +03:00
*)
usage 1
2001-02-23 20:55:21 +03:00
;;
esac
shift
done
if test -n "$cflags$libs"; then
echo $cflags $libs
fi
2001-02-23 20:55:21 +03:00
exit 0