glib-config: removed autogenerated file

glib.m4: s/GLIB/GTK (in a comment)

-Yosh
This commit is contained in:
Manish Singh 1998-06-12 08:18:29 +00:00
parent 19532180ec
commit 1aaef10ab2
3 changed files with 2 additions and 58 deletions

View File

@ -14,3 +14,4 @@ stamp-h
.libs
testglib
config.cache
glib-config

View File

@ -1,57 +0,0 @@
#!/bin/sh
prefix=/usr/local
exec_prefix=${prefix}
exec_prefix_set=no
usage="\
Usage: glib-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
if test $# -eq 0; then
echo "${usage}" 1>&2
exit 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
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 1.1.0
;;
--cflags)
if test ${prefix}/include != /usr/include ; then
includes=-I${prefix}/include
fi
echo -I${exec_prefix}/lib/glib/include $includes
;;
--libs)
echo -L${exec_prefix}/lib -lglib-1.1
;;
*)
echo "${usage}" 1>&2
exit 1
;;
esac
shift
done

View File

@ -2,7 +2,7 @@
# Owen Taylor 97-11-3
dnl AM_PATH_GLIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for GTK, and define GLIB_CFLAGS and GLIB_LIBS
dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS
dnl
AC_DEFUN(AM_PATH_GLIB,
[dnl