diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 13 |
2 files changed, 10 insertions, 9 deletions
@@ -1,3 +1,9 @@ +2003-05-19 Ettore Perazzoli <ettore@ximian.com> + + * configure.in: Remove GNOME_PREFIX stuff. Add + --disable-default-binary command line option, with corresponding + DEFAULT_BINARY Automake conditional. + 2003-05-19 Not Zed <notzed@lostzed.mmc.com.au> * NEWS: Updated for mail/ camel/ filter/ and e-util/ diff --git a/configure.in b/configure.in index ef425e904b..f388dc473d 100644 --- a/configure.in +++ b/configure.in @@ -947,15 +947,6 @@ else AC_DEFINE_UNQUOTED([KILL_PROCESS_CMD], "$KILL_PROCESS_CMD", [Command to kill processes by name]) fi -dnl **************************************************** -dnl GNOME_PREFIX is is needed by shell/evolution-nognome -dnl **************************************************** -dnl -dnl FIXME this doesn't work with GNOME 2. - -GNOME_PREFIX="`gnome-config --prefix`" -AC_SUBST(GNOME_PREFIX) - dnl ****************************** dnl OpenSSL dnl ****************************** @@ -1255,6 +1246,10 @@ dnl ****************** AC_ARG_WITH(sub-version, [ --with-sub-version=VERSION Specify a sub-version string]) AC_DEFINE_UNQUOTED(SUB_VERSION, "$with_sub_version", [Version substring, for packagers]) +AC_ARG_ENABLE(default-binary, [ --disable-default-binary Do not install as the default "evolution" binary ], , enable_default_binary=yes) +AM_CONDITIONAL(DEFAULT_BINARY, test x$enable_default_binary = xyes) + + dnl ******************** dnl KDE applnk directory dnl ******************** |