diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:51 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:51 +0000 |
commit | cb31d8afa9cafc1b1a841f3c5b1803b13b6702d1 (patch) | |
tree | 456e4b2d252c4df22da2feff10397463ff7adc64 | |
parent | a6905c610f37091082698d50fec19e688d74db27 (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.am | 4 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index a106921..1e8e7b3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = viewres -viewres_CFLAGS = $(DEP_CFLAGS) -viewres_LDADD = $(DEP_LIBS) +viewres_CFLAGS = $(VIEWRES_CFLAGS) +viewres_LDADD = $(VIEWRES_LIBS) viewres_SOURCES = \ viewres.c diff --git a/configure.ac b/configure.ac index 4e0e292..24a6f98 100644 --- a/configure.ac +++ b/configure.ac @@ -31,9 +31,9 @@ AM_CONFIG_HEADER(config.h) AC_PROG_CC AC_PROG_INSTALL -XAW_CHECK_XPRINT_SUPPORT(DEP) +XAW_CHECK_XPRINT_SUPPORT(VIEWRES) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +AC_SUBST(VIEWRES_CFLAGS) +AC_SUBST(VIEWRES_LIBS) AC_OUTPUT([Makefile]) |