diff options
-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 47de49f..eed0c3a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = xmessage -xmessage_CFLAGS = $(DEP_CFLAGS) -xmessage_LDADD = $(DEP_LIBS) +xmessage_CFLAGS = $(XMESSAGE_CFLAGS) +xmessage_LDADD = $(XMESSAGE_LIBS) xmessage_SOURCES = \ makeform.c \ diff --git a/configure.ac b/configure.ac index bb24235..8bafdc2 100644 --- a/configure.ac +++ b/configure.ac @@ -32,8 +32,8 @@ AC_PROG_CC AC_PROG_INSTALL # Checks for pkg-config packages -XAW_CHECK_XPRINT_SUPPORT(DEP) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +XAW_CHECK_XPRINT_SUPPORT(XMESSAGE) +AC_SUBST(XMESSAGE_CFLAGS) +AC_SUBST(XMESSAGE_LIBS) AC_OUTPUT([Makefile]) |