bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 01/19] configure.in: Tune ./configure checking/help messages.


From: G. Branden Robinson
Subject: [PATCH 01/19] configure.in: Tune ./configure checking/help messages.
Date: Fri, 27 Oct 2023 11:43:12 -0500

...with respect to library opacity and wide character support options.
---
 configure.in | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/configure.in b/configure.in
index 354e4a51..72cb304c 100644
--- a/configure.in
+++ b/configure.in
@@ -947,7 +947,7 @@ NCURSES_OK_WINT_T=
 
 AC_MSG_CHECKING(if you want wide-character code)
 AC_ARG_ENABLE(widec,
-       [  --disable-widec         do not compile with wide-char/UTF-8 code],
+       [  --disable-widec         compile without wide character and UTF-8 
support],
        [with_widec=$enableval],
        [with_widec=$cf_dft_widec])
 AC_MSG_RESULT($with_widec)
@@ -959,8 +959,8 @@ if test "x$with_widec" = xyes ; then
        if test "x$disable_lib_suffixes" = xno ; then
                LIB_SUFFIX="w${LIB_SUFFIX}"
        fi
-       AC_DEFINE(USE_WIDEC_SUPPORT,1,[Define to 1 to compile with 
wide-char/UTF-8 code])
-       AC_DEFINE(NCURSES_WIDECHAR,1,[Define to 1 to compile with 
wide-char/UTF-8 code])
+       AC_DEFINE(USE_WIDEC_SUPPORT,1,[Define to 1 to compile with wide 
character and UTF-8 support])
+       AC_DEFINE(NCURSES_WIDECHAR,1,[Define to 1 to compile with wide 
character and UTF-8 support])
        case "$CPPFLAGS" in
        (*_XOPEN_SOURCE=*)
                ;;
@@ -1411,9 +1411,9 @@ AC_SUBST(cf_cv_enable_opaque)
 
 AC_SUBST(NCURSES_SIZE_T)
 
-AC_MSG_CHECKING(if you want opaque curses-library structures)
+AC_MSG_CHECKING(whether curses library structures should be opaque)
 CF_ARG_ENABLE(opaque-curses,
-       [  --disable-opaque-curses do not make curses WINDOW, etc., "opaque"],
+       [  --disable-opaque-curses do not make WINDOW, etc., structures opaque],
        [enable_opaque_curses=yes],[
         test "$cf_cv_enable_reentrant" = 1 && enable_opaque_curses=yes
         test "$cf_cv_enable_reentrant" = 1 || 
enable_opaque_curses=$cf_dft_opaque_curses
@@ -1424,21 +1424,21 @@ test "$cf_cv_enable_reentrant" = 1 && \
 test "$enable_opaque_curses" = no && \
 AC_MSG_ERROR(reentrant configuration requires opaque library)
 
-AC_MSG_CHECKING(if you want opaque form-library structures)
+AC_MSG_CHECKING(whether form library structures should be opaque)
 AC_ARG_ENABLE(opaque-form,
-       [  --disable-opaque-form   do not make form-library structures 
"opaque"],
+       [  --disable-opaque-form   do not make form library structures opaque],
        [enable_opaque_form=yes],[enable_opaque_form=$cf_dft_opaque_curses])
 AC_MSG_RESULT($enable_opaque_form)
 
-AC_MSG_CHECKING(if you want opaque menu-library structures)
+AC_MSG_CHECKING(whether menu library structures should be opaque)
 AC_ARG_ENABLE(opaque-menu,
-       [  --disable-opaque-menu   do not make menu-library structures 
"opaque"],
+       [  --disable-opaque-menu   do not make menu library structures opaque],
        [enable_opaque_menu=yes],[enable_opaque_menu=$cf_dft_opaque_curses])
 AC_MSG_RESULT($enable_opaque_menu)
 
-AC_MSG_CHECKING(if you want opaque panel-library structures)
+AC_MSG_CHECKING(whether panel library structures should be opaque)
 AC_ARG_ENABLE(opaque-panel,
-       [  --disable-opaque-panel  do not make panel-library structures 
"opaque"],
+       [  --disable-opaque-panel  do not make panel library structures opaque],
        [enable_opaque_panel=yes],[enable_opaque_panel=$cf_dft_opaque_curses])
 AC_MSG_RESULT($enable_opaque_panel)
 
-- 
2.30.2

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]