From ff55521bec80d0e26fde8d8dac2efa8da3bfb843 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 22 Oct 2001 16:57:05 +0000 Subject: 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 --- ChangeLog | 8 ++++++++ acconfig.h | 1 + configure.in | 5 +++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5184f7ff03..10d72618dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2001-10-22 Ettore Perazzoli + + * 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. + 2001-10-22 JP Rosevear * data/Makefile.am: include destdir in the path of the kde desktop diff --git a/acconfig.h b/acconfig.h index fbdbbe8f76..3bc0c6d604 100644 --- a/acconfig.h +++ b/acconfig.h @@ -24,6 +24,7 @@ #undef ENABLE_NNTP #undef HAVE_BROKEN_SPOOL #undef ENABLE_PEDANTIC_PGPMIME +#undef HAVE_KDE_APPLNK /* db3 version */ #undef EVOLUTION_DB_VERSION_MAJOR 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 ****************************** -- cgit v1.2.3