summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-07-20 19:31:57 +0000
committerAdam Jackson <ajax@nwnk.net>2005-07-20 19:31:57 +0000
commite32351b3b39517f94e976062f91403a154488359 (patch)
tree7f296c82546daa6e14f83e7be291695186874a7f
parent23e06fb205c2494dc8c44e976e27ca0a30c30ed2 (diff)
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
configure cache, you cache it, and the cached value is probably wrong.
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac6
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 6637a7a..fd45374 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,8 +23,8 @@ AM_YFLAGS = -d
bin_PROGRAMS = xgc
-xgc_CFLAGS = $(DEP_CFLAGS) -D_BSD_SOURCE
-xgc_LDADD = $(DEP_LIBS) -lm
+xgc_CFLAGS = $(XGC_CFLAGS) -D_BSD_SOURCE
+xgc_LDADD = $(XGC_LIBS) -lm
xgc_SOURCES = \
choice.c \
diff --git a/configure.ac b/configure.ac
index 210c9d9..9f1093f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,9 +33,9 @@ AC_PROG_YACC
AC_PROG_CC
AC_PROG_INSTALL
-XAW_CHECK_XPRINT_SUPPORT(DEP)
+XAW_CHECK_XPRINT_SUPPORT(XGC)
-AC_SUBST(DEP_CFLAGS)
-AC_SUBST(DEP_LIBS)
+AC_SUBST(XGC_CFLAGS)
+AC_SUBST(XGC_LIBS)
AC_OUTPUT([Makefile])