]> git.wh0rd.org Git - nano.git/commitdiff
Allowing --enable-extra and --enable-multibuffer to override --enable-tiny.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 4 Apr 2014 07:54:08 +0000 (07:54 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 4 Apr 2014 07:54:08 +0000 (07:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4716 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
configure.ac

index 0a6940494a94554c5c0c49f3453aa3ee4c98d527..3fbc29af17b8775bd64186784330e0f719d4abea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2014-04-04  Benno Schulenberg  <bensberg@justemail.net>
        * src/{files.c,nano.c}: Avoid two more compilation warnings.
+       * configure.ac: Allow --enable-extra and --enable-multibuffer
+       to override --enable-tiny.
 
 2014-04-03  Benno Schulenberg  <bensberg@justemail.net>
        * configure.ac: Remove unused '*_support' variables.
index fa76f4aa9c37aba5a5d584a534f039c7da1e5942..606c217dd0794c848bb8f2faa165cca11cff607f 100644 (file)
@@ -69,11 +69,15 @@ AS_HELP_STRING([--enable-tiny], [Disable features for the sake of size]))
 if test "x$enable_tiny" = xyes; then
     AC_DEFINE(NANO_TINY, 1, [Define this to make the nano executable as small as possible.])
     AC_DEFINE(DISABLE_BROWSER, 1, [Define this to disable the built-in file browser.])
-    AC_DEFINE(DISABLE_EXTRA, 1, [Define this to disable extra stuff.])
+    if test "x$enable_extra" = xno; then
+       AC_DEFINE(DISABLE_EXTRA, 1, [Define this to disable extra stuff.])
+    fi
     AC_DEFINE(DISABLE_HELP, 1, [Define this to disable the help text display.])
     AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routines.])
     AC_DEFINE(DISABLE_MOUSE, 1, [Define this to disable the mouse support.])
-    AC_DEFINE(DISABLE_MULTIBUFFER, 1, [Define this to disable multiple file buffers.])
+    if test "x$enable_multibuffer" = xno; then
+       AC_DEFINE(DISABLE_MULTIBUFFER, 1, [Define this to disable multiple file buffers.])
+    fi
     AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable the setting of the operating directory (chroot of sorts).])
     AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the spell checker functions.])
     AC_DEFINE(DISABLE_TABCOMP, 1, [Define this to disable the tab completion functions for files and search strings.])