1998-03-12 23:23:43 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
1998-04-04 00:12:58 +00:00
|
|
|
exec_prefix_set=no
|
1998-03-12 23:23:43 +00:00
|
|
|
|
|
|
|
usage="\
|
1998-04-04 00:12:58 +00:00
|
|
|
Usage: gtk-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
|
1998-03-12 23:23:43 +00:00
|
|
|
|
1998-04-04 00:12:58 +00:00
|
|
|
if test $# -eq 0; then
|
|
|
|
echo "${usage}" 1>&2
|
|
|
|
exit 1
|
1998-03-12 23:23:43 +00:00
|
|
|
fi
|
|
|
|
|
1998-04-04 00:12:58 +00:00
|
|
|
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
|
|
|
|
if test $exec_prefix_set = no ; then
|
|
|
|
exec_prefix=$optarg
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
--prefix)
|
|
|
|
echo $prefix
|
|
|
|
;;
|
|
|
|
--exec-prefix=*)
|
|
|
|
exec_prefix=$optarg
|
|
|
|
exec_prefix_set=yes
|
|
|
|
;;
|
|
|
|
--exec-prefix)
|
|
|
|
echo $exec_prefix
|
|
|
|
;;
|
|
|
|
--version)
|
|
|
|
echo @GTK_VERSION@
|
|
|
|
;;
|
|
|
|
--cflags)
|
1998-04-06 04:31:15 +00:00
|
|
|
if test @includedir@ != /usr/include ; then
|
|
|
|
includes=-I@includedir@
|
|
|
|
fi
|
|
|
|
echo -I@libdir@/glib/include $includes @x_cflags@
|
1998-04-04 00:12:58 +00:00
|
|
|
;;
|
|
|
|
--libs)
|
1998-05-07 04:04:15 +00:00
|
|
|
echo -L@libdir@ @x_ldflags@ -lgtk-@LT_RELEASE@ -lgdk-@LT_RELEASE@ -lglib-@LT_RELEASE@ @x_libs@ -lm
|
1998-04-04 00:12:58 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "${usage}" 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|