Commit ea066c84 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Added --enable-nanorc to configure

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@596 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 205 additions and 178 deletions
+205 -178
......@@ -7,6 +7,9 @@ Cvs code -
to its own flag, --disable mouse. The --tiny option defines
this automatically, but now just mouse support can be disabled
if desired.
- configure.in:
- New option, --enable-nanorc which currently does nothing but
sets a define. Will do more later...
nano 1.1 tree forked here 04/07/2001
......
......@@ -54,4 +54,5 @@
/* Define this to disable the mouse functions */
#undef DISABLE_MOUSE
/* Define this to use the .nanorc file */
#undef ENABLE_NANORC
......@@ -88,6 +88,9 @@
/* Define this to disable the mouse functions */
#undef DISABLE_MOUSE
/* Define this to use the .nanorc file */
#undef ENABLE_NANORC
/* Define if you have the __argz_count function. */
#undef HAVE___ARGZ_COUNT
......
This diff is collapsed.
......@@ -33,6 +33,12 @@ AC_ARG_ENABLE(extra,
AC_DEFINE(NANO_EXTRA) extra_support=yes
fi])
AC_ARG_ENABLE(nanorc,
[ --enable-nanorc Enable use of .nanorc file],
[if test x$enableval = xyes; then
AC_DEFINE(ENABLE_NANORC) nanorc_support=yes
fi])
AC_ARG_ENABLE(tabcomp,
[ --disable-tabcomp Disables tab completion code for a smaller binary],
[if test x$enableval != xyes; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment