aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-23 00:57:05 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-23 00:57:05 +0800
commitff55521bec80d0e26fde8d8dac2efa8da3bfb843 (patch)
treecda3d5cff6d2d2ad48b02f5547a429e365ef8d6b
parent5e9d81e541449d811574d64c9f0e84e0cf24b536 (diff)
downloadgsoc2013-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
-rw-r--r--ChangeLog8
-rw-r--r--acconfig.h1
-rw-r--r--configure.in5
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 <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 ******************************