2016-08-14 19:18:00 +00:00
|
|
|
# Configuration for GNU nano - a small and user-friendly text editor
|
2003-01-15 17:40:35 +00:00
|
|
|
#
|
2017-04-09 10:09:23 +00:00
|
|
|
# Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc.
|
|
|
|
# Copyright (C) 2014, 2017 Mike Frysinger
|
2003-01-15 17:40:35 +00:00
|
|
|
#
|
2016-08-29 15:10:49 +00:00
|
|
|
# GNU nano is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License,
|
|
|
|
# or (at your option) any later version.
|
2003-01-15 17:40:35 +00:00
|
|
|
#
|
2016-08-29 15:10:49 +00:00
|
|
|
# GNU nano is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
|
|
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the GNU General Public License for more details.
|
2003-01-15 17:40:35 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2016-08-29 15:10:49 +00:00
|
|
|
# along with this program. If not, see http://www.gnu.org/licenses/.
|
2003-01-15 17:40:35 +00:00
|
|
|
|
2017-05-04 07:49:43 +00:00
|
|
|
AC_INIT([GNU nano], [2.8.2], [nano-devel@gnu.org], [nano])
|
2003-09-07 00:44:12 +00:00
|
|
|
AC_CONFIG_SRCDIR([src/nano.c])
|
2013-01-03 03:47:26 +00:00
|
|
|
AC_CANONICAL_HOST
|
2017-02-21 22:04:33 +00:00
|
|
|
AM_INIT_AUTOMAKE([1.14])
|
2004-11-18 00:05:14 +00:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2003-01-15 17:40:35 +00:00
|
|
|
|
2014-04-02 21:03:32 +00:00
|
|
|
dnl Make sure the ONCE macros are available.
|
|
|
|
|
2017-02-21 22:04:33 +00:00
|
|
|
AC_PREREQ([2.69])
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2017-02-21 22:04:35 +00:00
|
|
|
dnl Lie about gnulib features we don't use to speed up & shrink down.
|
|
|
|
|
2017-02-21 22:04:41 +00:00
|
|
|
gl_cv_func_printf_directive_n=yes
|
2017-02-21 22:04:35 +00:00
|
|
|
gl_cv_func_printf_infinite_long_double=yes
|
2017-02-21 22:04:41 +00:00
|
|
|
gl_cv_func_printf_long_double=yes
|
|
|
|
gl_cv_func_snprintf_directive_n=yes
|
2017-03-14 20:06:05 +00:00
|
|
|
gl_cv_glob_lists_symlinks=yes
|
2017-02-21 22:04:35 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
dnl Checks for programs.
|
2005-06-21 04:16:12 +00:00
|
|
|
|
2004-05-13 17:19:54 +00:00
|
|
|
AC_GNU_SOURCE
|
2000-06-06 05:53:49 +00:00
|
|
|
AC_PROG_CC
|
2017-02-21 22:04:35 +00:00
|
|
|
gl_EARLY
|
|
|
|
gl_INIT
|
2004-08-01 16:09:15 +00:00
|
|
|
AC_PROG_LN_S
|
2000-06-06 05:53:49 +00:00
|
|
|
AC_ISC_POSIX
|
2002-02-23 18:23:43 +00:00
|
|
|
AC_SYS_LARGEFILE
|
2014-03-24 13:42:58 +00:00
|
|
|
PKG_PROG_PKG_CONFIG
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2003-01-15 17:40:35 +00:00
|
|
|
dnl Internationalization macros.
|
2005-06-21 04:16:12 +00:00
|
|
|
|
2017-02-21 22:04:34 +00:00
|
|
|
AM_GNU_GETTEXT_VERSION([0.18.3])
|
2003-01-15 17:40:35 +00:00
|
|
|
AM_GNU_GETTEXT([external], [need-ngettext])
|
2006-07-18 18:16:30 +00:00
|
|
|
AM_CONDITIONAL(USE_NLS, test x$USE_NLS = xyes)
|
2003-01-15 17:40:35 +00:00
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
dnl Data location.
|
|
|
|
|
|
|
|
pkgdatadir=${datadir}/${PACKAGE}
|
|
|
|
AC_DEFINE_DIR([PKGDATADIR], [pkgdatadir], [Where data are placed to.])
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
dnl Checks for header files.
|
2005-06-21 04:16:12 +00:00
|
|
|
|
2017-02-21 22:04:48 +00:00
|
|
|
AC_CHECK_HEADERS(libintl.h limits.h pwd.h termios.h sys/param.h)
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
dnl Checks for options.
|
|
|
|
|
2014-04-03 19:50:12 +00:00
|
|
|
AC_ARG_ENABLE(browser,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-browser], [Disable the built-in file browser]))
|
2017-05-08 17:08:23 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_browser" != xyes; then
|
|
|
|
enable_browser=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_browser" != xyes; then
|
|
|
|
if test "x$enable_browser" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_BROWSER, 1, [Define this to enable the built-in file browser.])
|
|
|
|
fi
|
2014-04-03 19:50:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(color,
|
|
|
|
AS_HELP_STRING([--disable-color], [Disable color and syntax highlighting]))
|
|
|
|
if test "x$enable_nanorc" = xno; then
|
|
|
|
if test "x$enable_color" = xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-color cannot work with --disable-nanorc])
|
|
|
|
else
|
2014-04-04 11:59:03 +00:00
|
|
|
# Disabling nanorc silently disables color support.
|
2014-04-03 19:50:12 +00:00
|
|
|
enable_color=no
|
|
|
|
fi
|
|
|
|
fi
|
2014-04-04 11:59:03 +00:00
|
|
|
if test "x$enable_color" = xno; then
|
|
|
|
AC_DEFINE(DISABLE_COLOR, 1, [Define this to disable syntax highlighting.])
|
|
|
|
else
|
2017-02-21 22:04:39 +00:00
|
|
|
color_support=yes
|
2014-04-03 19:50:12 +00:00
|
|
|
fi
|
2008-09-30 16:47:57 +00:00
|
|
|
|
2016-05-25 20:13:50 +00:00
|
|
|
AC_ARG_ENABLE(comment,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-comment], [Disable the comment/uncomment function]))
|
2016-05-25 20:13:50 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_comment" = xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-comment cannot work with --enable-tiny])
|
|
|
|
else
|
|
|
|
enable_comment=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_comment" != xyes; then
|
|
|
|
if test "x$enable_comment" != xno; then
|
2016-12-07 18:56:27 +00:00
|
|
|
AC_DEFINE(ENABLE_COMMENT, 1, [Define this to enable the comment/uncomment function.])
|
2016-05-25 20:13:50 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-09-30 16:47:57 +00:00
|
|
|
AC_ARG_ENABLE(extra,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-extra], [Disable the Easter egg]))
|
2014-04-03 20:57:44 +00:00
|
|
|
if test "x$enable_extra" = xno; then
|
|
|
|
AC_DEFINE(DISABLE_EXTRA, 1, [Define this to disable extra stuff.])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2008-09-30 16:47:57 +00:00
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
AC_ARG_ENABLE(help,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-help], [Disable the built-in help texts]))
|
2017-04-25 15:51:45 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_help" = xyes; then
|
|
|
|
if test "x$enable_multibuffer" != xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-help cannot work without --enable-multibuffer])
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
enable_help=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$enable_multibuffer" = xno; then
|
|
|
|
if test "x$enable_help" = xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-help cannot work with --disable-multibuffer])
|
|
|
|
else
|
|
|
|
# Disabling multibuffer silently disables the help texts.
|
|
|
|
enable_help=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_help" != xyes; then
|
|
|
|
if test "x$enable_help" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_HELP, 1, [Define this to enable the Ctrl+G help texts.])
|
|
|
|
fi
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2014-06-19 17:39:26 +00:00
|
|
|
AC_ARG_ENABLE(histories,
|
|
|
|
AS_HELP_STRING([--disable-histories], [Disable search and position histories]))
|
|
|
|
if test "x$enable_histories" = xno; then
|
|
|
|
AC_DEFINE(DISABLE_HISTORIES, 1, [Define this to disable search and position histories.])
|
|
|
|
fi
|
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
AC_ARG_ENABLE(justify,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-justify], [Disable the justify/unjustify functions]))
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_justify" = xno; then
|
2007-04-19 03:23:16 +00:00
|
|
|
AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routines.])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2001-04-13 02:32:06 +00:00
|
|
|
|
2014-04-03 19:50:12 +00:00
|
|
|
AC_ARG_ENABLE(libmagic,
|
|
|
|
AS_HELP_STRING([--disable-libmagic], [Disable detection of file types via libmagic]))
|
|
|
|
|
2016-10-20 08:44:29 +00:00
|
|
|
AC_ARG_ENABLE(linenumbers,
|
|
|
|
AS_HELP_STRING([--disable-linenumbers], [Disable line numbering]))
|
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_linenumbers" != xyes; then
|
|
|
|
enable_linenumbers=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_linenumbers" != xyes; then
|
|
|
|
if test "x$enable_linenumbers" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_LINENUMBERS, 1, [Define this to enable line numbering.])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
AC_ARG_ENABLE(mouse,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-mouse], [Disable mouse support]))
|
2017-05-01 18:45:07 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_mouse" != xyes; then
|
|
|
|
enable_mouse=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_mouse" != xyes; then
|
|
|
|
if test "x$enable_mouse" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_MOUSE, 1, [Define this to enable mouse support.])
|
|
|
|
fi
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2014-04-03 19:50:12 +00:00
|
|
|
AC_ARG_ENABLE(multibuffer,
|
|
|
|
AS_HELP_STRING([--disable-multibuffer], [Disable multiple file buffers]))
|
2017-05-01 18:20:34 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_multibuffer" != xyes; then
|
|
|
|
enable_multibuffer=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_multibuffer" != xyes; then
|
|
|
|
if test "x$enable_multibuffer" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_MULTIBUFFER, 1, [Define this to enable multiple file buffers.])
|
|
|
|
fi
|
2014-04-03 19:50:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(nanorc,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-nanorc], [Disable the use of .nanorc files]))
|
2014-04-13 20:50:20 +00:00
|
|
|
if test "x$enable_nanorc" = xno; then
|
|
|
|
AC_DEFINE(DISABLE_NANORC, 1, [Define this to disable the use of .nanorc files.])
|
|
|
|
else
|
2014-04-03 19:50:12 +00:00
|
|
|
nanorc_support=yes
|
|
|
|
fi
|
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
AC_ARG_ENABLE(operatingdir,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-operatingdir], [Disable the setting of an operating directory]))
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_operatingdir" = xno; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable the setting of an operating directory (a chroot of sorts).])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2000-12-01 18:46:01 +00:00
|
|
|
|
2000-12-06 01:08:10 +00:00
|
|
|
AC_ARG_ENABLE(speller,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-speller], [Disable the spell-checker functions]))
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_speller" = xno; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the spell-checker functions.])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2000-12-01 18:46:01 +00:00
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
AC_ARG_ENABLE(tabcomp,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-tabcomp], [Disable the tab-completion functions]))
|
2017-05-08 17:15:51 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_tabcomp" != xyes; then
|
|
|
|
enable_tabcomp=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_tabcomp" != xyes; then
|
|
|
|
if test "x$enable_tabcomp" != xno; then
|
|
|
|
AC_DEFINE(ENABLE_TABCOMP, 1, [Define this to have tab completion for filenames and search strings.])
|
|
|
|
fi
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2001-01-03 07:11:47 +00:00
|
|
|
|
2016-12-07 12:10:40 +00:00
|
|
|
AC_ARG_ENABLE(wordcomp,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-wordcomp], [Disable the word-completion function]))
|
2016-12-07 12:10:40 +00:00
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
if test "x$enable_wordcomp" = xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-wordcomp cannot work with --enable-tiny])
|
|
|
|
else
|
|
|
|
enable_wordcomp=no
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$disable_wordcomp" != xyes; then
|
|
|
|
if test "x$enable_wordcomp" != xno; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(ENABLE_WORDCOMPLETION, 1, [Define this to enable the word-completion function.])
|
2016-12-07 12:10:40 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2001-04-02 05:36:08 +00:00
|
|
|
AC_ARG_ENABLE(wrapping,
|
2017-04-26 11:37:32 +00:00
|
|
|
AS_HELP_STRING([--disable-wrapping], [Disable all hard-wrapping of text]))
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_wrapping" = xno; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DISABLE_WRAPPING, 1, [Define this to disable all hard text wrapping.])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2001-04-02 05:36:08 +00:00
|
|
|
|
2002-10-25 16:08:53 +00:00
|
|
|
AC_ARG_ENABLE(wrapping-as-root,
|
2014-03-26 09:35:52 +00:00
|
|
|
AS_HELP_STRING([--disable-wrapping-as-root], [Disable wrapping of text as root by default]))
|
|
|
|
if test "x$enable_wrapping_as_root" = xno; then
|
2006-11-25 18:26:07 +00:00
|
|
|
AC_DEFINE(DISABLE_ROOTWRAPPING, 1, [Define this to disable text wrapping as root by default.])
|
2014-03-26 09:35:52 +00:00
|
|
|
fi
|
2002-10-25 16:08:53 +00:00
|
|
|
|
2014-04-04 13:12:07 +00:00
|
|
|
AC_ARG_ENABLE(debug,
|
|
|
|
AS_HELP_STRING([--enable-debug], [Enable debugging (disabled by default)]))
|
|
|
|
if test "x$enable_debug" = xyes; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DEBUG, 1, [Define this to enable debug messages and abortion on failing asserts.])
|
2014-04-04 13:12:07 +00:00
|
|
|
else
|
|
|
|
AC_DEFINE(NDEBUG, 1, [Shut up assert warnings :-)])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(tiny,
|
|
|
|
AS_HELP_STRING([--enable-tiny], [Disable features for the sake of size]))
|
|
|
|
if test "x$enable_tiny" = xyes; then
|
|
|
|
AC_DEFINE(NANO_TINY, 1, [Define this to make the nano executable as small as possible.])
|
2014-04-04 13:42:13 +00:00
|
|
|
if test "x$enable_color" != xyes; then
|
|
|
|
AC_DEFINE(DISABLE_COLOR, 1, [Define this to disable syntax highlighting.])
|
|
|
|
color_support=no
|
2014-04-13 21:05:57 +00:00
|
|
|
else
|
|
|
|
if test "x$enable_nanorc" != xyes; then
|
|
|
|
AC_MSG_ERROR([--enable-color with --enable-tiny cannot work without --enable-nanorc])
|
|
|
|
fi
|
2014-04-04 13:42:13 +00:00
|
|
|
fi
|
2014-04-04 13:54:05 +00:00
|
|
|
if test "x$enable_extra" != xyes; then
|
2014-04-04 13:12:07 +00:00
|
|
|
AC_DEFINE(DISABLE_EXTRA, 1, [Define this to disable extra stuff.])
|
|
|
|
fi
|
2014-06-19 17:39:26 +00:00
|
|
|
if test "x$enable_histories" != xyes; then
|
|
|
|
AC_DEFINE(DISABLE_HISTORIES, 1, [Define this to disable search and position histories.])
|
|
|
|
fi
|
2014-04-04 13:54:05 +00:00
|
|
|
if test "x$enable_justify" != xyes; then
|
|
|
|
AC_DEFINE(DISABLE_JUSTIFY, 1, [Define this to disable the justify routines.])
|
|
|
|
fi
|
2014-04-13 19:44:30 +00:00
|
|
|
if test "x$enable_libmagic" != xyes; then
|
|
|
|
enable_libmagic=no
|
|
|
|
fi
|
2014-04-13 20:50:20 +00:00
|
|
|
if test "x$enable_nanorc" != xyes; then
|
|
|
|
AC_DEFINE(DISABLE_NANORC, 1, [Define this to disable the use of .nanorc files.])
|
|
|
|
fi
|
2014-04-04 13:54:05 +00:00
|
|
|
if test "x$enable_operatingdir" != xyes; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DISABLE_OPERATINGDIR, 1, [Define this to disable the setting of an operating directory (a chroot of sorts).])
|
2014-04-04 13:54:05 +00:00
|
|
|
fi
|
|
|
|
if test "x$enable_speller" != xyes; then
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(DISABLE_SPELLER, 1, [Define this to disable the spell-checker functions.])
|
2014-04-04 13:54:05 +00:00
|
|
|
fi
|
|
|
|
if test "x$enable_wrapping" != xyes; then
|
|
|
|
AC_DEFINE(DISABLE_WRAPPING, 1, [Define this to disable all text wrapping.])
|
|
|
|
fi
|
2014-04-04 13:12:07 +00:00
|
|
|
fi
|
|
|
|
|
2014-04-03 19:50:12 +00:00
|
|
|
AM_CONDITIONAL(USE_COLOR, test x$color_support = xyes)
|
|
|
|
AM_CONDITIONAL(USE_NANORC, test x$nanorc_support = xyes)
|
2003-01-17 00:17:45 +00:00
|
|
|
|
2005-03-25 22:25:24 +00:00
|
|
|
AC_MSG_CHECKING([whether to enable UTF-8 support])
|
2014-03-26 09:35:52 +00:00
|
|
|
AC_ARG_ENABLE(utf8, AS_HELP_STRING([--enable-utf8], [Enable UTF-8 support]))
|
2014-03-27 10:28:19 +00:00
|
|
|
AC_MSG_RESULT(${enable_utf8:-auto})
|
2005-03-25 22:25:24 +00:00
|
|
|
|
2014-04-03 19:50:12 +00:00
|
|
|
AC_ARG_ENABLE(altrcname,
|
|
|
|
AS_HELP_STRING([--enable-altrcname], [Specify an alternate rcfile name (default: .nanorc)]),
|
|
|
|
[if test x$enableval != no; then
|
|
|
|
AC_DEFINE_UNQUOTED(RCFILE_NAME, "$enableval", [Specify an alternate rcfile name (default: .nanorc).]) rcfilename=$enableval
|
|
|
|
fi])
|
|
|
|
|
|
|
|
|
2007-12-18 15:55:48 +00:00
|
|
|
AC_MSG_CHECKING([whether to use slang])
|
|
|
|
CURSES_LIB_NAME=""
|
|
|
|
AC_ARG_WITH(slang,
|
2014-03-26 09:35:52 +00:00
|
|
|
AS_HELP_STRING([--with-slang[=DIR]], [Use the slang library instead of curses]),
|
2007-12-18 15:55:48 +00:00
|
|
|
[ case "$with_slang" in
|
|
|
|
no)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
|
|
|
|
if test x$with_slang != xyes; then
|
2014-03-26 10:45:07 +00:00
|
|
|
# Add additional search path.
|
2007-12-18 15:55:48 +00:00
|
|
|
LDFLAGS="-L$with_slang/lib $LDFLAGS"
|
|
|
|
CPPFLAGS="-I$with_slang/include $CPPFLAGS"
|
|
|
|
fi
|
|
|
|
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2007-12-18 15:55:48 +00:00
|
|
|
AC_CHECK_HEADER(slcurses.h,
|
|
|
|
AC_MSG_CHECKING([for SLutf8_enable in -lslang])
|
|
|
|
_libs=$LIBS
|
|
|
|
LIBS="$LIBS -lslang"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLutf8_enable(1);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-03-26 10:45:07 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
CURSES_LIB_WIDE=yes
|
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)
|
|
|
|
|
2014-03-26 10:45:07 +00:00
|
|
|
# We might need the term library.
|
2007-12-18 15:55:48 +00:00
|
|
|
for termlib in ncurses curses termcap terminfo termlib; do
|
|
|
|
AC_CHECK_LIB([${termlib}], tputs, [tcap="-l$termlib"])
|
|
|
|
test -n "$tcap" && break
|
|
|
|
done
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([for SLutf8_enable in -lslang $tcap])
|
|
|
|
LIBS="$LIBS $tcap"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLutf8_enable(1);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-04-03 10:52:27 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
CURSES_LIB_WIDE=yes
|
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang $tcap"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang $tcap"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)
|
|
|
|
|
2014-03-26 10:45:07 +00:00
|
|
|
# We might need the math library.
|
2007-12-18 15:55:48 +00:00
|
|
|
AC_MSG_CHECKING([for SLutf8_enable in -lslang $tcap -lm])
|
|
|
|
LIBS="$LIBS -lm"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLutf8_enable(1);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-04-03 10:52:27 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
CURSES_LIB_WIDE=yes
|
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang $tcap -lm"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang $tcap -lm"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling])),
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** The header file slcurses.h was not found. If you wish to use
|
|
|
|
*** slang support this header file is required. Please either
|
|
|
|
*** install a version of slang that includes the slcurses.h file or
|
|
|
|
*** do not call the configure script with --with-slang.]))
|
|
|
|
fi
|
|
|
|
|
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2014-03-26 10:45:07 +00:00
|
|
|
# Reset libs if the above slang tests failed.
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2007-12-18 15:55:48 +00:00
|
|
|
LIBS=$_libs
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CHECK_HEADER(slcurses.h,
|
|
|
|
AC_MSG_CHECKING([for SLtt_initialize in -lslang])
|
|
|
|
_libs=$LIBS
|
|
|
|
LIBS="$LIBS -lslang"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLtt_initialize(NULL);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-04-03 10:52:27 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)
|
|
|
|
|
2014-03-26 10:45:07 +00:00
|
|
|
# We might need the term library.
|
2007-12-18 15:55:48 +00:00
|
|
|
for termlib in ncurses curses termcap terminfo termlib; do
|
|
|
|
AC_CHECK_LIB([${termlib}], tputs, [tcap="-l$termlib"])
|
|
|
|
test -n "$tcap" && break
|
|
|
|
done
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([for SLtt_initialize in -lslang $tcap])
|
|
|
|
LIBS="$LIBS $tcap"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLtt_initialize(NULL);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-04-03 10:52:27 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang $tcap"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang $tcap"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)
|
|
|
|
|
2014-03-26 10:45:07 +00:00
|
|
|
# We might need the math library.
|
2007-12-18 15:55:48 +00:00
|
|
|
AC_MSG_CHECKING([for SLtt_initialize in -lslang $tcap -lm])
|
|
|
|
LIBS="$LIBS -lm"
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <slcurses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
SLtt_initialize(NULL);
|
|
|
|
return 0;
|
|
|
|
}],
|
|
|
|
[AC_MSG_RESULT(yes)
|
2014-04-03 10:52:27 +00:00
|
|
|
AC_DEFINE(USE_SLANG, 1, [Define this to use the slang wrappers for curses instead of native curses.])
|
2007-12-18 15:55:48 +00:00
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
CURSES_LIB="-L${with_slang}/lib -lslang $tcap -lm"
|
|
|
|
else
|
|
|
|
CURSES_LIB="-lslang $tcap -lm"
|
|
|
|
fi
|
|
|
|
CURSES_LIB_NAME=slang],
|
|
|
|
[AC_MSG_RESULT(no)],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
|
|
|
|
AC_MSG_WARN([*** Can not use slang when cross-compiling])),
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** The header file slcurses.h was not found. If you wish to use
|
|
|
|
*** slang support this header file is required. Please either
|
|
|
|
*** install a version of slang that includes the slcurses.h file or
|
|
|
|
*** do not call the configure script with --with-slang.]))
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "${_libs+set}" = "set"; then
|
|
|
|
LIBS=$_libs
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$with_slang != xyes; then
|
|
|
|
LDFLAGS=${_ldflags}
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac], [AC_MSG_RESULT(no)])
|
|
|
|
|
2008-08-28 06:13:05 +00:00
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
dnl Checks for functions.
|
|
|
|
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2017-03-23 19:22:33 +00:00
|
|
|
AC_CHECK_FUNCS(iswalnum iswpunct mblen mbstowcs mbtowc wctomb)
|
2005-03-25 22:25:24 +00:00
|
|
|
fi
|
2000-06-06 05:53:49 +00:00
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
|
2014-03-24 13:31:37 +00:00
|
|
|
dnl Checks for available flags.
|
2014-04-02 21:03:32 +00:00
|
|
|
|
2014-03-24 13:31:37 +00:00
|
|
|
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"], [], [])
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
dnl Checks for library functions.
|
2014-04-02 21:03:32 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
AC_TYPE_SIGNAL
|
2014-04-02 21:03:32 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
dnl Checks for libraries.
|
2005-03-25 23:19:04 +00:00
|
|
|
|
2014-03-24 13:42:58 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2014-03-24 13:42:58 +00:00
|
|
|
PKG_CHECK_MODULES([NCURSESW], [ncursesw], [
|
|
|
|
CURSES_LIB=$NCURSESW_LIBS
|
|
|
|
CPPFLAGS="$NCURSESW_CFLAGS $CPPFLAGS"
|
|
|
|
CURSES_LIB_NAME=ncursesw
|
|
|
|
CURSES_LIB_WIDE=yes
|
|
|
|
], [:])
|
|
|
|
else
|
|
|
|
PKG_CHECK_MODULES([NCURSES], [ncurses], [
|
|
|
|
CURSES_LIB=$NCURSES_LIBS
|
|
|
|
CPPFLAGS="$NCURSES_CFLAGS $CPPFLAGS"
|
|
|
|
CURSES_LIB_NAME=ncurses
|
|
|
|
], [:])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2004-12-12 19:04:56 +00:00
|
|
|
AC_CHECK_HEADERS(ncurses.h)
|
2005-03-25 22:25:24 +00:00
|
|
|
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2013-01-21 03:36:18 +00:00
|
|
|
OLDLIBS="$LIBS"
|
|
|
|
AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw5-config, no)
|
|
|
|
if test "x$NCURSESW_CONFIG" != xno; then
|
|
|
|
CURSES_LIB=`$NCURSESW_CONFIG --libs`
|
|
|
|
LIBS="$CURSES_LIB $LIBS"
|
|
|
|
CPPFLAGS="`$NCURSESW_CONFIG --cflags` $CPPFLAGS"
|
|
|
|
AC_CHECK_LIB(ncursesw, get_wch, [CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE=yes])
|
|
|
|
else
|
|
|
|
AC_CHECK_LIB(ncursesw, get_wch, [CURSES_LIB="-lncursesw" CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE=yes])
|
|
|
|
fi
|
|
|
|
LIBS="$OLDLIBS"
|
2005-03-25 22:25:24 +00:00
|
|
|
fi
|
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2005-03-25 22:25:24 +00:00
|
|
|
AC_CHECK_LIB(ncurses, initscr, [CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses])
|
2004-12-12 19:04:56 +00:00
|
|
|
fi
|
2000-06-06 05:53:49 +00:00
|
|
|
fi
|
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2004-12-12 19:04:56 +00:00
|
|
|
AC_CHECK_HEADERS(curses.h)
|
2005-03-25 22:25:24 +00:00
|
|
|
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno; then
|
2005-06-18 17:06:02 +00:00
|
|
|
AC_CHECK_LIB(curses, get_wch, [CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses CURSES_LIB_WIDE=yes])
|
2005-03-25 22:25:24 +00:00
|
|
|
fi
|
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2014-03-26 10:45:07 +00:00
|
|
|
AC_CHECK_LIB(curses, initscr, [CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses])
|
2004-12-12 19:04:56 +00:00
|
|
|
fi
|
2000-06-06 05:53:49 +00:00
|
|
|
fi
|
|
|
|
|
2005-03-25 23:19:04 +00:00
|
|
|
if eval "test x$CURSES_LIB_NAME = x"; then
|
2000-06-06 05:53:49 +00:00
|
|
|
AC_MSG_WARN([
|
2004-12-12 19:04:56 +00:00
|
|
|
*** No curses lib available. Consider getting the official ncurses
|
2000-06-06 05:53:49 +00:00
|
|
|
*** distribution from ftp://ftp.gnu.org/pub/gnu/ncurses if you get
|
|
|
|
*** errors compiling nano.])
|
|
|
|
else
|
2004-12-12 19:04:56 +00:00
|
|
|
AC_MSG_RESULT([Using $CURSES_LIB_NAME as the curses library])
|
2000-06-06 05:53:49 +00:00
|
|
|
fi
|
|
|
|
|
2016-11-23 19:26:03 +00:00
|
|
|
AC_CHECK_LIB([$CURSES_LIB_NAME], [use_default_colors],
|
2017-04-26 11:37:32 +00:00
|
|
|
[AC_DEFINE(HAVE_USE_DEFAULT_COLORS, 1, [Define this if your curses library has the use_default_colors() function.])],
|
2016-11-23 19:26:03 +00:00
|
|
|
[], [$CURSES_LIB])
|
2017-02-21 22:04:45 +00:00
|
|
|
AC_CHECK_LIB([$CURSES_LIB_NAME], [set_escdelay],
|
|
|
|
[AC_DEFINE(HAVE_SET_ESCDELAY, 1, [Define this if your curses library has the set_escdelay() function.])],
|
|
|
|
[], [$CURSES_LIB])
|
2016-11-23 19:26:03 +00:00
|
|
|
AC_CHECK_LIB([$CURSES_LIB_NAME], [key_defined],
|
2017-04-26 11:37:32 +00:00
|
|
|
[AC_DEFINE(HAVE_KEY_DEFINED, 1, [Define this if your curses library has the key_defined() function.])],
|
2016-11-23 19:26:03 +00:00
|
|
|
[], [$CURSES_LIB])
|
2001-01-06 18:12:43 +00:00
|
|
|
|
2004-09-18 22:02:21 +00:00
|
|
|
dnl Parse any configure options.
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
LIBS="$LIBS $CURSES_LIB"
|
2000-06-19 23:19:07 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
AC_SUBST(CURSES_LIB)
|
|
|
|
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" != xno && \
|
2005-06-21 15:47:39 +00:00
|
|
|
test x$CURSES_LIB_WIDE = xyes && \
|
|
|
|
test x$ac_cv_func_iswalnum = xyes && \
|
|
|
|
test x$ac_cv_func_iswpunct = xyes && \
|
|
|
|
test x$ac_cv_func_mblen = xyes && \
|
|
|
|
test x$ac_cv_func_mbstowcs = xyes && \
|
|
|
|
test x$ac_cv_func_mbtowc = xyes && \
|
2017-03-08 08:16:47 +00:00
|
|
|
test x$ac_cv_func_wctomb = xyes; then
|
|
|
|
AC_DEFINE(ENABLE_UTF8, 1, [Define this if your system has sufficient UTF-8 support.])
|
2004-12-12 19:04:56 +00:00
|
|
|
else
|
2014-03-26 09:35:52 +00:00
|
|
|
if test "x$enable_utf8" = xyes; then
|
2005-03-25 22:25:24 +00:00
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** UTF-8 support was requested, but insufficient UTF-8 support was
|
|
|
|
*** detected in your curses and/or C libraries. Please verify that your
|
2007-12-18 15:55:48 +00:00
|
|
|
*** slang was built with UTF-8 support or your curses was built with
|
|
|
|
*** wide character support, and that your C library was built with wide
|
|
|
|
*** character support.])
|
2014-03-26 09:35:52 +00:00
|
|
|
elif test "x$enable_utf8" != xno; then
|
2005-03-25 22:25:24 +00:00
|
|
|
AC_MSG_WARN([
|
|
|
|
*** Insufficient UTF-8 support was detected in your curses and/or C
|
2007-12-18 15:55:48 +00:00
|
|
|
*** libraries. If you want UTF-8 support, please verify that your slang
|
|
|
|
*** was built with UTF-8 support or your curses was built with wide
|
|
|
|
*** character support, and that your C library was built with wide
|
|
|
|
*** character support.])
|
2005-03-25 22:25:24 +00:00
|
|
|
fi
|
2004-12-12 19:04:56 +00:00
|
|
|
fi
|
|
|
|
|
2017-04-04 16:42:23 +00:00
|
|
|
AC_CACHE_CHECK([for enhanced regular expression flag], nano_cv_flag_reg_enhanced,
|
2016-03-22 10:42:28 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <regex.h>]],
|
|
|
|
[[
|
|
|
|
#ifndef REG_ENHANCED
|
|
|
|
error: No REG_ENHANCED support!
|
|
|
|
#endif
|
|
|
|
]])],
|
2017-04-04 16:42:23 +00:00
|
|
|
[nano_cv_flag_reg_enhanced=yes],
|
|
|
|
[nano_cv_flag_reg_enhanced=no])])
|
|
|
|
dnl The bundled gnulib regex module doesn't support REG_ENHANCED.
|
|
|
|
if test "$ac_use_included_regex" = "yes"; then
|
|
|
|
nano_cv_flag_reg_enhanced="no"
|
|
|
|
fi
|
|
|
|
if test "$nano_cv_flag_reg_enhanced" = "yes"; then
|
|
|
|
nano_reg_extended="REG_EXTENDED | REG_ENHANCED"
|
|
|
|
else
|
|
|
|
nano_reg_extended="REG_EXTENDED"
|
|
|
|
fi
|
2016-03-22 10:42:28 +00:00
|
|
|
|
2017-04-04 16:42:23 +00:00
|
|
|
AC_DEFINE_UNQUOTED(NANO_REG_EXTENDED, $nano_reg_extended,
|
2016-03-22 10:42:28 +00:00
|
|
|
[Flag(s) to use to get the full range of extended regular expressions])
|
|
|
|
|
2017-01-09 13:28:33 +00:00
|
|
|
# Check for word-boundary support (/< and />).
|
|
|
|
AC_MSG_CHECKING([for GNU-style word boundary regex support])
|
|
|
|
AC_ARG_WITH(wordbounds,
|
|
|
|
AS_HELP_STRING([--with-wordbounds], [Use GNU-style word boundary delimiters]),
|
2017-04-03 19:10:53 +00:00
|
|
|
[with_wordbounds=$withval], [with_wordbounds=auto])
|
|
|
|
if test "$with_wordbounds" != "no"; then
|
|
|
|
dnl If we're using the bundled gnulib regex module, we know it's supported.
|
|
|
|
if test "$ac_use_included_regex" = "yes"; then
|
|
|
|
with_wordbounds="yes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl We explicitly don't check if the user forced the option, because
|
|
|
|
dnl this is needed for cross compilers and we can't test the target.
|
|
|
|
if test "$with_wordbounds" != "yes"; then
|
|
|
|
AC_TRY_RUN([
|
2009-03-01 00:50:19 +00:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#include <regex.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
regex_t r;
|
|
|
|
size_t nmatch;
|
|
|
|
regmatch_t pmatch;
|
|
|
|
|
2017-04-04 16:42:23 +00:00
|
|
|
if (regcomp(&r, "\\\\>", $nano_reg_extended|REG_NOSUB))
|
2014-03-26 10:45:07 +00:00
|
|
|
return 1;
|
2009-03-01 00:50:19 +00:00
|
|
|
if (regexec(&r, "word boundary", nmatch, &pmatch, 0))
|
2014-03-26 10:45:07 +00:00
|
|
|
return 1;
|
2009-03-01 00:50:19 +00:00
|
|
|
return 0;
|
|
|
|
}],
|
2017-04-03 19:10:53 +00:00
|
|
|
with_wordbounds="yes",
|
|
|
|
with_wordbounds="no",
|
|
|
|
with_wordbounds="cross")
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
case $with_wordbounds in
|
|
|
|
yes)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(GNU_WORDBOUNDS, 1, [Define this if the system supports GNU-style word boundaries in regexes.])
|
|
|
|
;;
|
|
|
|
no)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
;;
|
|
|
|
cross)
|
|
|
|
AC_MSG_WARN([*** Can't check for GNU-style word boundary support when cross-compiling])
|
|
|
|
;;
|
|
|
|
esac
|
2013-01-20 17:57:04 +00:00
|
|
|
|
2017-01-09 13:28:33 +00:00
|
|
|
if test x$color_support = xyes; then
|
2009-03-01 00:50:19 +00:00
|
|
|
# if test x$CURSES_LIB_NAME = xcurses; then
|
|
|
|
AC_MSG_CHECKING([whether _XOPEN_SOURCE_EXTENDED is needed])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <curses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int testcolor = COLOR_WHITE;
|
|
|
|
return 0;
|
|
|
|
}], AC_MSG_RESULT(no),
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#ifndef _XOPEN_SOURCE_EXTENDED
|
|
|
|
#define _XOPEN_SOURCE_EXTENDED 1
|
|
|
|
#endif
|
|
|
|
#include <curses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int testcolor = COLOR_WHITE;
|
|
|
|
return 0;
|
|
|
|
}],
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(NEED_XOPEN_SOURCE_EXTENDED, 1, [Define this if you need the _XOPEN_SOURCE_EXTENDED macro for color support.])
|
2009-03-01 00:50:19 +00:00
|
|
|
AC_MSG_RESULT(yes),
|
|
|
|
AC_MSG_RESULT(not sure)
|
|
|
|
AC_MSG_WARN([*** Couldn't successfully compile basic color test with or without _XOPEN_SOURCE_EXTENDED])
|
|
|
|
AC_MSG_WARN([*** This build may not compile. Consider configuring with --disable-color or installing ncurses])),
|
|
|
|
AC_MSG_WARN([*** Can't check need for _XOPEN_SOURCE_EXTENDED when cross-compiling]))
|
2016-03-22 10:42:28 +00:00
|
|
|
# fi
|
|
|
|
fi
|
2009-03-01 00:50:19 +00:00
|
|
|
|
2010-03-07 19:35:46 +00:00
|
|
|
AC_MSG_CHECKING([whether LINES and COLS can be redefined])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <curses.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
LINES = 80;
|
|
|
|
COLS = 25;
|
|
|
|
return 0;
|
2014-03-26 09:35:52 +00:00
|
|
|
}],
|
2017-04-26 11:37:32 +00:00
|
|
|
AC_DEFINE(REDEFINING_MACROS_OK, 1, [Define this if you know your curses library allows LINES and COLS to be redefined to deal with a resizing bug.])
|
2010-03-07 19:35:46 +00:00
|
|
|
AC_MSG_RESULT(yes),
|
|
|
|
AC_MSG_RESULT(no),
|
|
|
|
AC_MSG_WARN([*** Can't check for macro redefinability when cross-compiling]))
|
|
|
|
|
2014-03-24 13:47:37 +00:00
|
|
|
AS_IF([test "x$enable_libmagic" != "xno"], [
|
2015-12-23 09:39:50 +00:00
|
|
|
AC_CHECK_HEADERS([magic.h])
|
2014-03-24 13:47:37 +00:00
|
|
|
AC_CHECK_LIB(magic, magic_open)
|
2015-12-23 09:39:50 +00:00
|
|
|
AC_CHECK_HEADERS([zlib.h])
|
2014-06-16 12:06:58 +00:00
|
|
|
AC_CHECK_LIB(z, inflate)
|
2014-03-24 13:47:37 +00:00
|
|
|
])
|
2010-03-07 19:35:46 +00:00
|
|
|
|
2014-04-02 20:37:30 +00:00
|
|
|
# Check for groff html support.
|
2009-02-15 19:16:18 +00:00
|
|
|
AC_MSG_CHECKING([for HTML support in groff])
|
|
|
|
groff -t -mandoc -Thtml </dev/null >/dev/null
|
2014-03-26 09:35:52 +00:00
|
|
|
if test $? -ne 0 ; then
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
AC_MSG_WARN([*** Will not generate HTML version of man pages ***
|
|
|
|
*** Consider installing a newer version of groff with HTML support ***])
|
2009-02-15 19:16:18 +00:00
|
|
|
groff_html_support=no
|
|
|
|
else
|
2014-03-26 09:35:52 +00:00
|
|
|
AC_MSG_RESULT([yes])
|
2009-02-15 19:16:18 +00:00
|
|
|
groff_html_support=yes
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(GROFF_HTML, test x$groff_html_support = xyes)
|
|
|
|
|
2016-05-20 10:59:57 +00:00
|
|
|
# Check whether this is a git repository.
|
2016-04-08 08:22:09 +00:00
|
|
|
AC_MSG_CHECKING([whether building from git])
|
|
|
|
if test -d .git ; then
|
|
|
|
AC_MSG_RESULT([yes])
|
2016-05-20 10:59:57 +00:00
|
|
|
from_git=yes
|
2016-04-08 08:22:09 +00:00
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
2016-05-20 10:59:57 +00:00
|
|
|
from_git=no
|
2016-04-08 08:22:09 +00:00
|
|
|
fi
|
2016-05-20 10:59:57 +00:00
|
|
|
AM_CONDITIONAL(BUILDING_FROM_GIT, test x$from_git = xyes)
|
2009-02-15 19:16:18 +00:00
|
|
|
|
2003-09-07 00:44:12 +00:00
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
doc/Makefile
|
2016-12-24 16:49:14 +00:00
|
|
|
doc/sample.nanorc
|
2017-02-21 22:04:35 +00:00
|
|
|
lib/Makefile
|
2003-09-07 00:44:12 +00:00
|
|
|
m4/Makefile
|
|
|
|
po/Makefile.in
|
|
|
|
src/Makefile
|
2016-12-24 16:25:06 +00:00
|
|
|
syntax/Makefile
|
2003-09-07 00:44:12 +00:00
|
|
|
nano.spec
|
|
|
|
])
|
|
|
|
|
2002-02-23 18:23:43 +00:00
|
|
|
AC_OUTPUT
|