diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:57 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:57 +0000 |
commit | 4cb25771597a2e1102bf5fd91e6cabf191eeecf2 (patch) | |
tree | 56619266f0f090f88bc9f9f9c0bc8dc96d61f81a | |
parent | 62d4ea34f0fd64e258abb993004c8966eecc6cf7 (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 641668b..b4b7c45 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = xload -xload_CFLAGS = $(DEP_CFLAGS) -xload_LDADD = $(DEP_LIBS) +xload_CFLAGS = $(XLOAD_CFLAGS) +xload_LDADD = $(XLOAD_LIBS) xload_SOURCES = \ get_load.c \ diff --git a/configure.ac b/configure.ac index 848cb6f..abe859f 100644 --- a/configure.ac +++ b/configure.ac @@ -32,9 +32,9 @@ AC_PROG_CC AC_PROG_INSTALL # Checks for pkg-config packages -XAW_CHECK_XPRINT_SUPPORT(DEP) +XAW_CHECK_XPRINT_SUPPORT(XLOAD) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +AC_SUBST(XLOAD_CFLAGS) +AC_SUBST(XLOAD_LIBS) AC_OUTPUT([Makefile]) |