diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:56:07 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:56:07 +0000 |
commit | f63f6eb288ab5b518525e31407f1be1514cf72e7 (patch) | |
tree | 83b7050c8bfea2372db16e3fa4bd7474cc836608 | |
parent | f9a60649a815c42cd5ebd9e24dbbb12d62fd90de (diff) |
fix remaining DEP_{CFLAGS,LIBS} refenences
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 16bf048..ad5486b 100644 --- a/configure.ac +++ b/configure.ac @@ -36,8 +36,8 @@ XAW_CHECK_XPRINT_SUPPORT(XMORE) if test "x$xaw_use_xprint" = "xyes" ; then PKG_CHECK_MODULES(XPRINT_UTIL, xprintutil) - XMORE_CFLAGS="$DEP_CFLAGS $XPRINT_UTIL_CFLAGS" - XMORE_LIBS="$DEP_LIBS $XPRINT_UTIL_LIBS" + XMORE_CFLAGS="$XMORE_CFLAGS $XPRINT_UTIL_CFLAGS" + XMORE_LIBS="$XMORE_LIBS $XPRINT_UTIL_LIBS" fi AC_SUBST(XMORE_CFLAGS) |