Cache results of argp check.

Thu Mar 19 00:17:46 1998  Tom Tromey  <tromey@cygnus.com>

	* gnome-support.m4: Cache results of argp check.

svn path=/trunk/; revision=69
This commit is contained in:
Tom Tromey
1998-03-19 07:24:22 +00:00
committed by Tom Tromey
parent 40c9962c2e
commit dc8628becc
2 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 19 00:17:46 1998 Tom Tromey <tromey@cygnus.com>
* gnome-support.m4: Cache results of argp check.
Sun Mar 15 15:54:43 1998 Owen Taylor <owt1@cornell.edu>
* gnome-x-checks.m4: Replaced checks for X and GTK

View File

@ -14,10 +14,18 @@ AC_DEFUN([GNOME_SUPPORT_CHECKS],[
# We check for argp_domain because we use it, and it appears only in
# very recent versions of the argp library.
AC_TRY_COMPILE([#include <argp.h>], [
struct argp foo;
extern char *foo2;
foo.argp_domain = foo2;],,LIBOBJS="$LIBOBJS argp-ba.o argp-eexst.o argp-fmtstream.o argp-fs-xinl.o argp-help.o argp-parse.o argp-pv.o argp-pvh.o argp-xinl.o")
AC_CACHE_CHECK([for working argp code], gnome_cv_argp, [
AC_TRY_COMPILE([#include <argp.h>], [
struct argp foo;
extern char *foo2;
foo.argp_domain = foo2;],
gnome_cv_argp=yes,
gnome_cv_argp=no)])
if test "$gnome_cv_argp" = no; then
LIBOBJS="$LIBOBJS argp-ba.o argp-eexst.o argp-fmtstream.o argp-fs-xinl.o argp-help.o argp-parse.o argp-pv.o argp-pvh.o argp-xinl.o"
fi
# This header enables some optimizations inside argp.
AC_CHECK_HEADERS(linewrap.h)