1
1

Added --enable-nanorc to configure

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@596 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Chris Allegretta 2001-04-13 02:32:06 +00:00
родитель 84de552b28
Коммит ea066c8413
5 изменённых файлов: 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

368
configure поставляемый

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

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