summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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])