From 4f20fe728adc70fad1798d0febe0accc2a1a351a Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Mon, 27 Mar 2000 21:51:19 +0000 Subject: [PATCH] The new streamlined ipc remember command is used by epplets by default now, ready for 0.16.4. If you use this epplets with a pre-0.16.4 E, you should compile with --disable-new-remember. SVN revision: 2356 --- configure.in | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index c3d4e45..4b34106 100644 --- a/configure.in +++ b/configure.in @@ -248,12 +248,12 @@ AC_DEFINE(NO_AUTO_RESPAWN) fi AC_ARG_ENABLE(new-remember, -[ --enable-new-remember use if you have a version of enlightenment >= 0.16.4], +[ --disable-new-remember use if you have a version of enlightenment <= 0.16.4], if test "$enableval" = "yes"; then - AC_MSG_RESULT(yes) - AC_DEFINE(NEW_REMEMBER) + AC_MSG_RESULT(yes) else - AC_MSG_RESULT(no) + AC_MSG_RESULT(no) + AC_DEFINE(NEW_REMEMBER) fi, AC_MSG_RESULT(no) ) @@ -353,6 +353,9 @@ else mv api/epplet.h.new api/epplet.h fi +echo +echo "If you are running Enlightenment < 0.16.4, you *must* configure" +echo "with epplets with --disable-new-remember." echo echo "Now type 'make' to build $PACKAGE $VERSION." echo "Then type 'make install' to install."