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 | |
parent | 5e9d81e541449d811574d64c9f0e84e0cf24b536 (diff) | |
download | gsoc2013-evolution-ff55521bec80d0e26fde8d8dac2efa8da3bfb843.tar.gz 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
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | acconfig.h | 1 | ||||
-rw-r--r-- | configure.in | 5 |
3 files changed, 12 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2001-10-22 Ettore Perazzoli <ettore@ximian.com> + + * 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 <jpr@ximian.com> * 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 ****************************** |