diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-23 00:57:05 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-23 00:57:05 +0800 |
commit | ff55521bec80d0e26fde8d8dac2efa8da3bfb843 (patch) | |
tree | cda3d5cff6d2d2ad48b02f5547a429e365ef8d6b /configure.in | |
parent | 5e9d81e541449d811574d64c9f0e84e0cf24b536 (diff) | |
download | gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.gz gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.bz2 gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.lz gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.xz gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.zst gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.zip |
HAVE_KDE_APPLNK.
* acconfig.h: HAVE_KDE_APPLNK.
* configure.in (EVO_CHECK_LIB): AC_DEFINE `HAVE_KDE_APPLNK' in the
case in which the kde applnk dir is found. Also fix the logic
with the checking so it doesn't get fooled.
svn path=/trunk/; revision=13877
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 3d3ed505ba..599a7ec86d 100644 --- a/configure.in +++ b/configure.in @@ -1032,12 +1032,13 @@ if test -z "$with_kde_applnk_path"; then fi if test -d "$with_kde_applnk_path" ; then AC_MSG_RESULT("$with_kde_applnk_path" found) + AC_DEFINE(HAVE_KDE_APPLNK) KDE_APPLNK_DIR="$with_kde_applnk_path" else AC_MSG_RESULT(not found) - KDE_APPLNK_DIR="no" + KDE_APPLNK_DIR="" fi -AM_CONDITIONAL(HAVE_KDE_APPLNK, test "x$with_kde_applnk_path" != xno) +AM_CONDITIONAL(HAVE_KDE_APPLNK, test x"$KDE_APPLNK_DIR" != x) AC_SUBST(KDE_APPLNK_DIR) dnl ****************************** |