]> git.wh0rd.org Git - nano.git/commitdiff
configure.ac: - Added --enable-all option to compile in all the extra stuff we'd...
authorChris Allegretta <chrisa@asty.org>
Fri, 17 Jan 2003 00:17:45 +0000 (00:17 +0000)
committerChris Allegretta <chrisa@asty.org>
Fri, 17 Jan 2003 00:17:45 +0000 (00:17 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1367 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
configure.ac

index dfa0cf2823e2adaab384cd5d7ac8c15cb2d266b2..5bb1471e68c2d330e249dc8b8a3baee9b493997d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -73,6 +73,8 @@ Changes
        - Small cleanups. Add copyright header, add autopoint support and
          define bug report address and full package name in AC_INIT. Move
          ALL_LINGUAS to po/LINGUAS, recommended place for gettext 0.11.
+       - Added --enable-all option to compile in all the extra stuff 
+         we'd normally need extra flags for.
 - color.c:
   update_color():
        - Remove an unneeded edit_refresh() call after do_colorinit().
index a40535fc37039ec6970fd64ab8ab7f9883220a81..a01941131cacf80d60da423492bc35e3af4c71fd 100644 (file)
@@ -125,6 +125,7 @@ AC_ARG_ENABLE(wrapping-as-root,
     AC_DEFINE(DISABLE_ROOTWRAP, 1, [Define this to disable wrapping as root by default.])
  fi])
 
+
 AC_ARG_ENABLE(color,
 [  --enable-color          Enable color and syntax highlighting],
 [if test x$enableval = xyes; then
@@ -151,6 +152,22 @@ AC_ARG_ENABLE(nanorc,
     AC_DEFINE(ENABLE_NANORC, 1, [Define this to use the .nanorc file.]) nanorc_support=yes
  fi])
 
+AC_ARG_ENABLE(all,
+[  --enable-all            Enable ALL extra nano functionality (kitchen sink option)],
+[if test x$enableval = xyes; then
+    AC_DEFINE(ENABLE_NANORC, 1, [Define this to use the .nanorc file.]) nanorc_support=yes
+    AC_DEFINE(ENABLE_COLOR, 1, [Define this to have syntax highlighting, requires ENABLE_NANORC too!]) color_support=yes
+    AC_DEFINE(ENABLE_MULTIBUFFER, 1, [Define this to enable multiple file buffers.]) multibuffer_support=yes
+    AC_DEFINE(NANO_EXTRA, 1, [Define this to enable the extra stuff.]) extra_support=yes
+    AC_MSG_WARN([
+
+***********************************************************************
+*** WARNING: Color support is far from perfect, but functional.     ***
+*** Be careful with syntax in your .nanorc or nano may malfunction. ***
+***********************************************************************
+])
+fi])
+
 AC_MSG_CHECKING([whether to use slang])
 CURSES_LIB_NAME=""
 AC_ARG_WITH(slang,