Added --enable-nanorc to configure
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@596 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
84de552b28
commit
ea066c8413
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue