Added --enable-nanorc to configure

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@596 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-04-13 02:32:06 +00:00
parent 84de552b28
commit ea066c8413
5 changed files with 205 additions and 178 deletions

View File

@ -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

View File

@ -54,4 +54,5 @@
/* Define this to disable the mouse functions */
#undef DISABLE_MOUSE
/* Define this to use the .nanorc file */
#undef ENABLE_NANORC

View File

@ -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

368
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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