diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:48 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:48 +0000 |
commit | 055e01c0756e6aa8603169dd104cdd2153d2b749 (patch) | |
tree | 1300600dcd550652b6cd37ab4aad4a586d5bf6a5 | |
parent | c83a1200d2480ac67d755e4c589b524d1b834a6a (diff) | |
download | iceauth-055e01c0756e6aa8603169dd104cdd2153d2b749.tar.gz |
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 8a92496..0f555bc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = iceauth -iceauth_CFLAGS = $(DEP_CFLAGS) -iceauth_LDADD = $(DEP_LIBS) +iceauth_CFLAGS = $(ICEAUTH_CFLAGS) +iceauth_LDADD = $(ICEAUTH_LIBS) iceauth_SOURCES = \ iceauth.c \ diff --git a/configure.ac b/configure.ac index 475bbe8..53cee91 100644 --- a/configure.ac +++ b/configure.ac @@ -32,8 +32,8 @@ AC_PROG_CC AC_PROG_INSTALL # Checks for pkg-config packages -PKG_CHECK_MODULES(DEP, x11 ice) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +PKG_CHECK_MODULES(ICEAUTH, x11 ice) +AC_SUBST(ICEAUTH_CFLAGS) +AC_SUBST(ICEAUTH_LIBS) AC_OUTPUT([Makefile]) |