glib-config: removed autogenerated file
authorManish Singh <yosh@src.gnome.org>
Fri, 12 Jun 1998 08:18:29 +0000 (08:18 +0000)
committerManish Singh <yosh@src.gnome.org>
Fri, 12 Jun 1998 08:18:29 +0000 (08:18 +0000)
glib.m4: s/GLIB/GTK (in a comment)

-Yosh

.cvsignore
glib-config [deleted file]
glib.m4

index 3b9cb6e..725adbc 100644 (file)
@@ -14,3 +14,4 @@ stamp-h
 .libs
 testglib
 config.cache
+glib-config
diff --git a/glib-config b/glib-config
deleted file mode 100755 (executable)
index 3ed07a0..0000000
+++ /dev/null
@@ -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
-
diff --git a/glib.m4 b/glib.m4
index ee94b59..7ac6cfd 100644 (file)
--- a/glib.m4
+++ b/glib.m4
@@ -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