1 dnl***************************************************************************
2 dnl Copyright 2018-2022,2023 Thomas E. Dickey *
3 dnl Copyright 1998-2017,2018 Free Software Foundation, Inc. *
5 dnl Permission is hereby granted, free of charge, to any person obtaining a *
6 dnl copy of this software and associated documentation files (the *
7 dnl "Software"), to deal in the Software without restriction, including *
8 dnl without limitation the rights to use, copy, modify, merge, publish, *
9 dnl distribute, distribute with modifications, sublicense, and/or sell *
10 dnl copies of the Software, and to permit persons to whom the Software is *
11 dnl furnished to do so, subject to the following conditions: *
13 dnl The above copyright notice and this permission notice shall be included *
14 dnl in all copies or substantial portions of the Software. *
16 dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 dnl IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 dnl DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 dnl OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 dnl THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
24 dnl Except as contained in this notice, the name(s) of the above copyright *
25 dnl holders shall not be used in advertising or otherwise to promote the *
26 dnl sale, use or other dealings in this Software without prior written *
28 dnl***************************************************************************
30 dnl Author: Thomas E. Dickey 1995-on
32 dnl $Id: aclocal.m4,v 1.1028 2023/01/21 21:51:33 tom Exp $
33 dnl Macros used in NCURSES auto-configuration script.
35 dnl These macros are maintained separately from NCURSES. The copyright on
36 dnl this file applies to the aggregation of macros and does not affect use of
37 dnl these macros in other applications.
39 dnl See these pages for additional information:
40 dnl https://invisible-island.net/autoconf/
41 dnl https://invisible-island.net/autoconf/my-autoconf.html
43 dnl ---------------------------------------------------------------------------
44 dnl ---------------------------------------------------------------------------
45 dnl AM_LANGINFO_CODESET version: 7 updated: 2023/01/11 04:05:23
46 dnl -------------------
47 dnl Inserted as requested by gettext 0.10.40
48 dnl File from /usr/share/aclocal
50 dnl ====================
53 dnl From Bruno Haible.
54 AC_DEFUN([AM_LANGINFO_CODESET],
56 AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
59 #include <langinfo.h>],
60 [char* cs = nl_langinfo(CODESET); (void)cs],
61 am_cv_langinfo_codeset=yes,
62 am_cv_langinfo_codeset=no)
64 if test "$am_cv_langinfo_codeset" = yes; then
65 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
66 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
69 dnl ---------------------------------------------------------------------------
70 dnl CF_ABI_DEFAULTS version: 4 updated: 2023/01/07 16:32:06
72 dnl Provide configure-script defaults for different ncurses ABIs.
73 AC_DEFUN([CF_ABI_DEFAULTS],[
74 AC_REQUIRE([CF_NCURSES_WITH_ABI_VERSION])
87 cf_dft_opaque_curses=no
88 cf_dft_ordinate_type=short
94 case x$cf_cv_abi_default in
96 cf_dft_chtype=uint32_t
100 cf_dft_ext_putwin=yes
101 cf_dft_ext_spfuncs=yes
102 cf_dft_filter_syms=yes
104 cf_dft_mmask_t=uint32_t
105 cf_dft_tparm_arg=intptr_t
111 case x$cf_cv_abi_default in
114 cf_dft_mmask_t=uint64_t
115 cf_dft_opaque_curses=yes
116 cf_dft_ordinate_type=int
117 cf_dft_signed_char=yes
118 # also: remove the wgetch-events feature in ABI 7
122 dnl ---------------------------------------------------------------------------
123 dnl CF_ACVERSION_CHECK version: 5 updated: 2014/06/04 19:11:49
124 dnl ------------------
125 dnl Conditionally generate script according to whether we're using a given autoconf.
127 dnl $1 = version to compare against
128 dnl $2 = code to use if AC_ACVERSION is at least as high as $1.
129 dnl $3 = code to use if AC_ACVERSION is older than $1.
130 define([CF_ACVERSION_CHECK],
132 ifdef([AC_ACVERSION], ,[ifdef([AC_AUTOCONF_VERSION],[m4_copy([AC_AUTOCONF_VERSION],[AC_ACVERSION])],[m4_copy([m4_PACKAGE_VERSION],[AC_ACVERSION])])])dnl
133 ifdef([m4_version_compare],
134 [m4_if(m4_version_compare(m4_defn([AC_ACVERSION]), [$1]), -1, [$3], [$2])],
135 [CF_ACVERSION_COMPARE(
136 AC_PREREQ_CANON(AC_PREREQ_SPLIT([$1])),
137 AC_PREREQ_CANON(AC_PREREQ_SPLIT(AC_ACVERSION)), AC_ACVERSION, [$2], [$3])])])dnl
138 dnl ---------------------------------------------------------------------------
139 dnl CF_ACVERSION_COMPARE version: 3 updated: 2012/10/03 18:39:53
140 dnl --------------------
141 dnl CF_ACVERSION_COMPARE(MAJOR1, MINOR1, TERNARY1,
142 dnl MAJOR2, MINOR2, TERNARY2,
143 dnl PRINTABLE2, not FOUND, FOUND)
144 define([CF_ACVERSION_COMPARE],
145 [ifelse(builtin([eval], [$2 < $5]), 1,
146 [ifelse([$8], , ,[$8])],
147 [ifelse([$9], , ,[$9])])])dnl
148 dnl ---------------------------------------------------------------------------
149 dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
150 dnl -------------------
151 dnl Construct the list of include-options for the C programs in the Ada95
153 AC_DEFUN([CF_ADA_INCLUDE_DIRS],
155 ACPPFLAGS="-I. -I../include -I../../include $ACPPFLAGS"
156 if test "$srcdir" != "."; then
157 ACPPFLAGS="-I\${srcdir}/../../include $ACPPFLAGS"
159 if test "$GCC" != yes; then
160 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
161 elif test "$includedir" != "/usr/include"; then
162 if test "$includedir" = '${prefix}/include' ; then
163 if test x$prefix != x/usr ; then
164 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
167 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
172 dnl ---------------------------------------------------------------------------
173 dnl CF_ADD_ADAFLAGS version: 1 updated: 2010/06/19 15:22:18
175 dnl Add to $ADAFLAGS, which is substituted into makefile and scripts.
176 AC_DEFUN([CF_ADD_ADAFLAGS],[
177 ADAFLAGS="$ADAFLAGS $1"
180 dnl ---------------------------------------------------------------------------
181 dnl CF_ADD_CFLAGS version: 15 updated: 2020/12/31 10:54:15
183 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
184 dnl $1 = flags to add
185 dnl $2 = if given makes this macro verbose.
187 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
188 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
189 dnl confused by the quotes (which require backslashes to keep them usable).
190 AC_DEFUN([CF_ADD_CFLAGS],
195 cf_new_extra_cppflags=
197 for cf_add_cflags in $1
199 case "$cf_fix_cppflags" in
201 case "$cf_add_cflags" in
202 (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
203 case "$cf_add_cflags" in
205 cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
207 test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
208 && test -z "${cf_tst_cflags}" \
209 && cf_fix_cppflags=yes
211 if test "$cf_fix_cppflags" = yes ; then
212 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
214 elif test "${cf_tst_cflags}" = "\"'" ; then
215 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
224 case "$cf_add_cflags" in
226 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
227 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
230 CF_APPEND_TEXT(cf_new_cppflags,$cf_add_cflags)
235 CF_APPEND_TEXT(cf_new_cflags,$cf_add_cflags)
240 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
242 cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[[^"]]*"'\''//'`
244 test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
245 && test -z "${cf_tst_cflags}" \
246 && cf_fix_cppflags=no
251 if test -n "$cf_new_cflags" ; then
252 ifelse([$2],,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])
253 CF_APPEND_TEXT(CFLAGS,$cf_new_cflags)
256 if test -n "$cf_new_cppflags" ; then
257 ifelse([$2],,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])
258 CF_APPEND_TEXT(CPPFLAGS,$cf_new_cppflags)
261 if test -n "$cf_new_extra_cppflags" ; then
262 ifelse([$2],,,[CF_VERBOSE(add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags)])
263 CF_APPEND_TEXT(EXTRA_CPPFLAGS,$cf_new_extra_cppflags)
266 AC_SUBST(EXTRA_CPPFLAGS)
269 dnl ---------------------------------------------------------------------------
270 dnl CF_ADD_CXXFLAGS version: 1 updated: 2020/04/04 16:16:13
272 dnl Copy non-preprocessor flags to $CXXFLAGS, preprocessor flags to $CPPFLAGS
273 dnl The second parameter if given makes this macro verbose.
275 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
276 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
277 dnl confused by the quotes (which require backslashes to keep them usable).
278 AC_DEFUN([CF_ADD_CXXFLAGS],
280 cf_save_CXXFLAGS="$CFLAGS"
282 CF_ADD_CFLAGS($1 ifelse($2,,,[,$2]))
284 CFLAGS="$cf_save_CXXFLAGS"
286 dnl ---------------------------------------------------------------------------
287 dnl CF_ADD_INCDIR version: 17 updated: 2021/09/04 06:35:04
289 dnl Add an include-directory to $CPPFLAGS. Don't add /usr/include, since it is
290 dnl redundant. We don't normally need to add -I/usr/local/include for gcc,
291 dnl but old versions (and some misinstalled ones) need that. To make things
292 dnl worse, gcc 3.x may give error messages if -I/usr/local/include is added to
293 dnl the include-path).
294 AC_DEFUN([CF_ADD_INCDIR],
296 if test -n "$1" ; then
297 for cf_add_incdir in $1
299 while test "$cf_add_incdir" != /usr/include
301 if test -d "$cf_add_incdir"
304 if test -n "$CFLAGS$CPPFLAGS" ; then
305 # a loop is needed to ensure we can add subdirs of existing dirs
306 for cf_test_incdir in $CFLAGS $CPPFLAGS ; do
307 if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then
308 cf_have_incdir=yes; break
313 if test "$cf_have_incdir" = no ; then
314 if test "$cf_add_incdir" = /usr/local/include ; then
317 cf_save_CPPFLAGS=$CPPFLAGS
318 CF_APPEND_TEXT(CPPFLAGS,-I$cf_add_incdir)
319 AC_TRY_COMPILE([#include <stdio.h>],
322 [cf_have_incdir=yes])
323 CPPFLAGS=$cf_save_CPPFLAGS
328 if test "$cf_have_incdir" = no ; then
329 CF_VERBOSE(adding $cf_add_incdir to include-path)
330 ifelse([$2],,CPPFLAGS,[$2])="$ifelse([$2],,CPPFLAGS,[$2]) -I$cf_add_incdir"
332 cf_top_incdir=`echo "$cf_add_incdir" | sed -e 's%/include/.*$%/include%'`
333 test "$cf_top_incdir" = "$cf_add_incdir" && break
334 cf_add_incdir="$cf_top_incdir"
345 dnl ---------------------------------------------------------------------------
346 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
348 dnl Add a library, used to enforce consistency.
350 dnl $1 = library to add, without the "-l"
351 dnl $2 = variable to update (default $LIBS)
352 AC_DEFUN([CF_ADD_LIB],[CF_ADD_LIBS(-l$1,ifelse($2,,LIBS,[$2]))])dnl
353 dnl ---------------------------------------------------------------------------
354 dnl CF_ADD_LIBDIR version: 11 updated: 2020/12/31 20:19:42
356 dnl Adds to the library-path
358 dnl Some machines have trouble with multiple -L options.
360 dnl $1 is the (list of) directory(s) to add
361 dnl $2 is the optional name of the variable to update (default LDFLAGS)
363 AC_DEFUN([CF_ADD_LIBDIR],
365 if test -n "$1" ; then
366 for cf_add_libdir in $1
368 if test "$cf_add_libdir" = /usr/lib ; then
370 elif test -d "$cf_add_libdir"
373 if test -n "$LDFLAGS$LIBS" ; then
374 # a loop is needed to ensure we can add subdirs of existing dirs
375 for cf_test_libdir in $LDFLAGS $LIBS ; do
376 if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then
377 cf_have_libdir=yes; break
381 if test "$cf_have_libdir" = no ; then
382 CF_VERBOSE(adding $cf_add_libdir to library-path)
383 ifelse([$2],,LDFLAGS,[$2])="-L$cf_add_libdir $ifelse([$2],,LDFLAGS,[$2])"
389 dnl ---------------------------------------------------------------------------
390 dnl CF_ADD_LIBS version: 3 updated: 2019/11/02 16:47:33
392 dnl Add one or more libraries, used to enforce consistency. Libraries are
393 dnl prepended to an existing list, since their dependencies are assumed to
394 dnl already exist in the list.
396 dnl $1 = libraries to add, with the "-l", etc.
397 dnl $2 = variable to update (default $LIBS)
398 AC_DEFUN([CF_ADD_LIBS],[
399 cf_add_libs="[$]ifelse($2,,LIBS,[$2])"
402 for cf_add_1lib in $1; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done
404 for cf_add_1lib in $cf_add_0lib; do
405 for cf_add_2lib in $cf_add_libs; do
406 if test "x$cf_add_1lib" = "x$cf_add_2lib"; then
411 test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs"
413 ifelse($2,,LIBS,[$2])="$cf_add_libs"
415 dnl ---------------------------------------------------------------------------
416 dnl CF_ADD_SUBDIR_PATH version: 5 updated: 2020/12/31 20:19:42
417 dnl ------------------
418 dnl Append to a search-list for a nonstandard header/lib-file
419 dnl $1 = the variable to return as result
420 dnl $2 = the package name
421 dnl $3 = the subdirectory, e.g., bin, include or lib
422 dnl $4 = the directory under which we will test for subdirectories
423 dnl $5 = a directory that we do not want $4 to match
424 AC_DEFUN([CF_ADD_SUBDIR_PATH],
426 test "x$4" != "x$5" && \
428 ifelse([$5],NONE,,[{ test -z "$5" || test "x$5" = xNONE || test "x$4" != "x$5"; } &&]) {
429 test -n "$verbose" && echo " ... testing for $3-directories under $4"
430 test -d "$4/$3" && $1="[$]$1 $4/$3"
431 test -d "$4/$3/$2" && $1="[$]$1 $4/$3/$2"
432 test -d "$4/$3/$2/$3" && $1="[$]$1 $4/$3/$2/$3"
433 test -d "$4/$2/$3" && $1="[$]$1 $4/$2/$3"
434 test -d "$4/$2/$3/$2" && $1="[$]$1 $4/$2/$3/$2"
437 dnl ---------------------------------------------------------------------------
438 dnl CF_APPEND_CFLAGS version: 3 updated: 2021/09/05 17:25:40
440 dnl Use CF_ADD_CFLAGS after first checking for potential redefinitions.
441 dnl $1 = flags to add
442 dnl $2 = if given makes this macro verbose.
443 define([CF_APPEND_CFLAGS],
445 for cf_add_cflags in $1
447 case "x$cf_add_cflags" in
449 CF_REMOVE_CFLAGS($cf_add_cflags,CFLAGS,[$2])
450 CF_REMOVE_CFLAGS($cf_add_cflags,CPPFLAGS,[$2])
453 CF_ADD_CFLAGS([$cf_add_cflags],[$2])
456 dnl ---------------------------------------------------------------------------
457 dnl CF_APPEND_TEXT version: 1 updated: 2017/02/25 18:58:55
459 dnl use this macro for appending text without introducing an extra blank at
461 define([CF_APPEND_TEXT],
463 test -n "[$]$1" && $1="[$]$1 "
466 dnl ---------------------------------------------------------------------------
467 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
469 dnl Allow user to disable a normally-on option.
470 AC_DEFUN([CF_ARG_DISABLE],
471 [CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
472 dnl ---------------------------------------------------------------------------
473 dnl CF_ARG_ENABLE version: 3 updated: 1999/03/30 17:24:31
475 dnl Allow user to enable a normally-off option.
476 AC_DEFUN([CF_ARG_ENABLE],
477 [CF_ARG_OPTION($1,[$2],[$3],[$4],no)])dnl
478 dnl ---------------------------------------------------------------------------
479 dnl CF_ARG_OPTION version: 5 updated: 2015/05/10 19:52:14
481 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
487 dnl $3 = action to perform if option is not default
488 dnl $4 = action if perform if option is default
489 dnl $5 = default option value (either 'yes' or 'no')
490 AC_DEFUN([CF_ARG_OPTION],
491 [AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
492 if test "$enableval" != "$5" ; then
494 ,[ $3]) ifelse([$4],,,[
497 fi],[enableval=$5 ifelse([$4],,,[
501 dnl ---------------------------------------------------------------------------
502 dnl CF_AR_FLAGS version: 9 updated: 2021/01/01 13:31:04
504 dnl Check for suitable "ar" (archiver) options for updating an archive.
506 dnl In particular, handle some obsolete cases where the "-" might be omitted,
507 dnl as well as a workaround for breakage of make's archive rules by the GNU
508 dnl binutils "ar" program.
509 AC_DEFUN([CF_AR_FLAGS],[
510 AC_REQUIRE([CF_PROG_AR])
512 AC_CACHE_CHECK(for options to update archives, cf_cv_ar_flags,[
513 case "$cf_cv_system_name" in
516 cat >mk_static_lib.sh <<-EOF
521 exec \[$]MSVC_BIN -out:"\[$]out" \[$]@
523 chmod +x mk_static_lib.sh
524 AR=`pwd`/mk_static_lib.sh
527 cf_cv_ar_flags=unknown
528 for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
531 # check if $ARFLAGS already contains this choice
532 if test "x$ARFLAGS" != "x" ; then
533 cf_check_ar_flags=`echo "x$ARFLAGS" | sed -e "s/$cf_ar_flags\$//" -e "s/$cf_ar_flags / /"`
534 if test "x$ARFLAGS" != "$cf_check_ar_flags" ; then
540 rm -f "conftest.$ac_cv_objext"
543 cat >"conftest.$ac_ext" <<EOF
544 #line __oline__ "configure"
545 int testdata[[3]] = { 123, 456, 789 };
547 if AC_TRY_EVAL(ac_compile) ; then
548 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&AC_FD_CC
549 $AR $ARFLAGS "$cf_ar_flags" conftest.a "conftest.$ac_cv_objext" 2>&AC_FD_CC 1>/dev/null
550 if test -f conftest.a ; then
551 cf_cv_ar_flags="$cf_ar_flags"
555 CF_VERBOSE(cannot compile test-program)
559 rm -f conftest.a "conftest.$ac_ext" "conftest.$ac_cv_objext"
564 if test -n "$ARFLAGS" ; then
565 if test -n "$cf_cv_ar_flags" ; then
566 ARFLAGS="$ARFLAGS $cf_cv_ar_flags"
569 ARFLAGS=$cf_cv_ar_flags
574 dnl ---------------------------------------------------------------------------
575 dnl CF_AWK_BIG_PRINTF version: 5 updated: 2015/04/17 21:13:04
576 dnl -----------------
577 dnl Check if awk can handle big strings using printf. Some older versions of
578 dnl awk choke on large strings passed via "%s".
580 dnl $1 = desired string size
581 dnl $2 = variable to set with result
582 AC_DEFUN([CF_AWK_BIG_PRINTF],
589 if ( ${AWK} 'BEGIN { xx = "x"; while (length(xx) < $1) { xx = xx "x"; }; printf("%s\n", xx); }' 2>/dev/null \
590 | $AWK '{ printf "%d\n", length([$]0); }' 2>/dev/null | $AWK 'BEGIN { eqls=0; recs=0; } { recs++; if ([$]0 == 12000) eqls++; } END { if (recs != 1 || eqls != 1) exit 1; }' 2>/dev/null >/dev/null ) ; then
598 dnl ---------------------------------------------------------------------------
599 dnl CF_BOOL_DECL version: 8 updated: 2004/01/30 15:51:18
601 dnl Test if 'bool' is a builtin type in the configured C++ compiler. Some
602 dnl older compilers (e.g., gcc 2.5.8) don't support 'bool' directly; gcc
603 dnl 2.6.3 does, in anticipation of the ANSI C++ standard.
605 dnl Treat the configuration-variable specially here, since we're directly
606 dnl substituting its value (i.e., 1/0).
608 dnl $1 is the shell variable to store the result in, if not $cv_cv_builtin_bool
609 AC_DEFUN([CF_BOOL_DECL],
611 AC_MSG_CHECKING(if we should include stdbool.h)
613 AC_CACHE_VAL(cf_cv_header_stdbool_h,[
614 AC_TRY_COMPILE([],[bool foo = false],
615 [cf_cv_header_stdbool_h=0],
620 ],[bool foo = false],
621 [cf_cv_header_stdbool_h=1],
622 [cf_cv_header_stdbool_h=0])])])
624 if test "$cf_cv_header_stdbool_h" = 1
625 then AC_MSG_RESULT(yes)
626 else AC_MSG_RESULT(no)
629 AC_MSG_CHECKING([for builtin bool type])
631 AC_CACHE_VAL(ifelse($1,,cf_cv_builtin_bool,[$1]),[
634 #include <sys/types.h>
636 [ifelse($1,,cf_cv_builtin_bool,[$1])=1],
637 [ifelse($1,,cf_cv_builtin_bool,[$1])=0])
640 if test "$ifelse($1,,cf_cv_builtin_bool,[$1])" = 1
641 then AC_MSG_RESULT(yes)
642 else AC_MSG_RESULT(no)
645 dnl ---------------------------------------------------------------------------
646 dnl CF_BOOL_SIZE version: 19 updated: 2023/01/05 18:00:14
648 dnl Test for the size of 'bool' in the configured C++ compiler (e.g., a type).
649 dnl Don't bother looking for bool.h, since it has been deprecated.
651 dnl If the current compiler is C rather than C++, we get the bool definition
652 dnl from <stdbool.h>.
653 AC_DEFUN([CF_BOOL_SIZE],
655 AC_CHECK_SIZEOF(bool,,[
659 #if defined(__cplusplus)
661 #ifdef HAVE_GXX_BUILTIN_H
662 #include <g++/builtin.h>
663 #elif HAVE_GPP_BUILTIN_H
664 #include <gpp/builtin.h>
671 #if $cf_cv_header_stdbool_h
678 AC_CACHE_CHECK(for type of bool, cf_cv_type_of_bool,[
683 #if defined(__cplusplus)
685 #ifdef HAVE_GXX_BUILTIN_H
686 #include <g++/builtin.h>
687 #elif HAVE_GPP_BUILTIN_H
688 #include <gpp/builtin.h>
695 #if $cf_cv_header_stdbool_h
703 FILE *fp = fopen("cf_test.out", "w");
707 fputs("unsigned ", fp);
708 if (sizeof(x) == sizeof(int)) fputs("int", fp);
709 else if (sizeof(x) == sizeof(char)) fputs("char", fp);
710 else if (sizeof(x) == sizeof(short))fputs("short",fp);
711 else if (sizeof(x) == sizeof(long)) fputs("long", fp);
714 ${cf_cv_main_return:-return}(0);
717 [cf_cv_type_of_bool=`cat cf_test.out`
718 if test -z "$cf_cv_type_of_bool"; then
719 cf_cv_type_of_bool=unknown
721 [cf_cv_type_of_bool=unknown],
723 case x$ac_cv_sizeof_bool in
724 (x1) cf_cv_type_of_bool="unsigned char";;
725 (x2) cf_cv_type_of_bool="unsigned short";;
726 (x4) cf_cv_type_of_bool="unsigned int";;
727 (x8) cf_cv_type_of_bool="unsigned long";;
728 (*) cf_cv_type_of_bool=unknown;;
734 if test "$cf_cv_type_of_bool" = unknown ; then
735 case .$NCURSES_BOOL in
736 (.auto|.) NCURSES_BOOL=unsigned;;
738 AC_MSG_WARN(Assuming $NCURSES_BOOL for type of bool)
739 cf_cv_type_of_bool=$NCURSES_BOOL
742 dnl ---------------------------------------------------------------------------
743 dnl CF_BUILD_CC version: 11 updated: 2022/12/04 15:40:08
745 dnl If we're cross-compiling, allow the user to override the tools and their
746 dnl options. The configure script is oriented toward identifying the host
747 dnl compiler, etc., but we need a build compiler to generate parts of the
750 dnl $1 = default for $CPPFLAGS
751 dnl $2 = default for $LIBS
752 AC_DEFUN([CF_BUILD_CC],[
753 CF_ACVERSION_CHECK(2.52,,
754 [AC_REQUIRE([CF_PROG_EXT])])
755 if test "$cross_compiling" = yes ; then
757 # defaults that we might want to override
758 : ${BUILD_CFLAGS:=''}
759 : ${BUILD_CPPFLAGS:='ifelse([$1],,,[$1])'}
760 : ${BUILD_LDFLAGS:=''}
761 : ${BUILD_LIBS:='ifelse([$2],,,[$2])'}
762 : ${BUILD_EXEEXT:='$x'}
763 : ${BUILD_OBJEXT:='o'}
765 AC_ARG_WITH(build-cc,
766 [ --with-build-cc=XXX the build C compiler ($BUILD_CC)],
767 [BUILD_CC="$withval"],
768 [AC_CHECK_PROGS(BUILD_CC, [gcc clang c99 c89 cc cl],none)])
769 AC_MSG_CHECKING(for native build C compiler)
770 AC_MSG_RESULT($BUILD_CC)
772 AC_MSG_CHECKING(for native build C preprocessor)
773 AC_ARG_WITH(build-cpp,
774 [ --with-build-cpp=XXX the build C preprocessor ($BUILD_CPP)],
775 [BUILD_CPP="$withval"],
776 [BUILD_CPP='${BUILD_CC} -E'])
777 AC_MSG_RESULT($BUILD_CPP)
779 AC_MSG_CHECKING(for native build C flags)
780 AC_ARG_WITH(build-cflags,
781 [ --with-build-cflags=XXX the build C compiler-flags ($BUILD_CFLAGS)],
782 [BUILD_CFLAGS="$withval"])
783 AC_MSG_RESULT($BUILD_CFLAGS)
785 AC_MSG_CHECKING(for native build C preprocessor-flags)
786 AC_ARG_WITH(build-cppflags,
787 [ --with-build-cppflags=XXX the build C preprocessor-flags ($BUILD_CPPFLAGS)],
788 [BUILD_CPPFLAGS="$withval"])
789 AC_MSG_RESULT($BUILD_CPPFLAGS)
791 AC_MSG_CHECKING(for native build linker-flags)
792 AC_ARG_WITH(build-ldflags,
793 [ --with-build-ldflags=XXX the build linker-flags ($BUILD_LDFLAGS)],
794 [BUILD_LDFLAGS="$withval"])
795 AC_MSG_RESULT($BUILD_LDFLAGS)
797 AC_MSG_CHECKING(for native build linker-libraries)
798 AC_ARG_WITH(build-libs,
799 [ --with-build-libs=XXX the build libraries (${BUILD_LIBS})],
800 [BUILD_LIBS="$withval"])
801 AC_MSG_RESULT($BUILD_LIBS)
803 # this assumes we're on Unix.
807 : ${BUILD_CC:='${CC}'}
809 AC_MSG_CHECKING(if the build-compiler "$BUILD_CC" works)
811 cf_save_crossed=$cross_compiling
812 cf_save_ac_link=$ac_link
814 cf_build_cppflags=$BUILD_CPPFLAGS
815 test "$cf_build_cppflags" = "#" && cf_build_cppflags=
816 ac_link='$BUILD_CC -o "conftest$ac_exeext" $BUILD_CFLAGS $cf_build_cppflags $BUILD_LDFLAGS "conftest.$ac_ext" $BUILD_LIBS >&AS_MESSAGE_LOG_FD'
818 AC_TRY_RUN([#include <stdio.h>
819 int main(int argc, char *argv[])
821 ${cf_cv_main_return:-return}(argc < 0 || argv == 0 || argv[0] == 0);
826 cf_ok_build_cc=unknown)
828 cross_compiling=$cf_save_crossed
829 ac_link=$cf_save_ac_link
831 AC_MSG_RESULT($cf_ok_build_cc)
833 if test "$cf_ok_build_cc" != yes
835 AC_MSG_ERROR([Cross-build requires two compilers.
836 Use --with-build-cc to specify the native compiler.])
840 : ${BUILD_CC:='${CC}'}
841 : ${BUILD_CPP:='${CPP}'}
842 : ${BUILD_CFLAGS:='${CFLAGS}'}
843 : ${BUILD_CPPFLAGS:='${CPPFLAGS}'}
844 : ${BUILD_LDFLAGS:='${LDFLAGS}'}
845 : ${BUILD_LIBS:='${LIBS}'}
846 : ${BUILD_EXEEXT:='$x'}
847 : ${BUILD_OBJEXT:='o'}
852 AC_SUBST(BUILD_CFLAGS)
853 AC_SUBST(BUILD_CPPFLAGS)
854 AC_SUBST(BUILD_LDFLAGS)
856 AC_SUBST(BUILD_EXEEXT)
857 AC_SUBST(BUILD_OBJEXT)
859 dnl ---------------------------------------------------------------------------
860 dnl CF_C11_NORETURN version: 3 updated: 2021/03/28 11:36:23
862 AC_DEFUN([CF_C11_NORETURN],
864 AC_MSG_CHECKING(if you want to use C11 _Noreturn feature)
865 CF_ARG_ENABLE(stdnoreturn,
866 [ --enable-stdnoreturn enable C11 _Noreturn feature for diagnostics],
867 [enable_stdnoreturn=yes],
868 [enable_stdnoreturn=no])
869 AC_MSG_RESULT($enable_stdnoreturn)
871 if test $enable_stdnoreturn = yes; then
872 AC_CACHE_CHECK([for C11 _Noreturn feature], cf_cv_c11_noreturn,
876 #include <stdnoreturn.h>
877 static _Noreturn void giveup(void) { exit(0); }
879 [if (feof(stdin)) giveup()],
880 cf_cv_c11_noreturn=yes,
881 cf_cv_c11_noreturn=no)
884 cf_cv_c11_noreturn=no,
887 if test "$cf_cv_c11_noreturn" = yes; then
888 AC_DEFINE(HAVE_STDNORETURN_H, 1,[Define if <stdnoreturn.h> header is available and working])
889 AC_DEFINE_UNQUOTED(STDC_NORETURN,_Noreturn,[Define if C11 _Noreturn keyword is supported])
895 AC_SUBST(HAVE_STDNORETURN_H)
896 AC_SUBST(STDC_NORETURN)
898 dnl ---------------------------------------------------------------------------
899 dnl CF_CC_ENV_FLAGS version: 10 updated: 2020/12/31 18:40:20
901 dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
902 dnl into CC. This will not help with broken scripts that wrap the compiler
903 dnl with options, but eliminates a more common category of user confusion.
905 dnl In particular, it addresses the problem of being able to run the C
906 dnl preprocessor in a consistent manner.
908 dnl Caveat: this also disallows blanks in the pathname for the compiler, but
909 dnl the nuisance of having inconsistent settings for compiler and preprocessor
910 dnl outweighs that limitation.
911 AC_DEFUN([CF_CC_ENV_FLAGS],
913 # This should have been defined by AC_PROG_CC
916 AC_MSG_CHECKING(\$CFLAGS variable)
919 AC_MSG_RESULT(broken)
920 AC_MSG_WARN(your environment uses the CFLAGS variable to hold CPPFLAGS options)
923 for cf_arg in $cf_flags
925 CF_ADD_CFLAGS($cf_arg)
933 AC_MSG_CHECKING(\$CC variable)
936 AC_MSG_RESULT(broken)
937 AC_MSG_WARN(your environment uses the CC variable to hold CFLAGS/CPPFLAGS options)
939 cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[[ ]]* / /g' -e 's/[[ ]]*[[ ]]-[[^ ]].*//'`
940 cf_flags=`echo "$CC" | ${AWK:-awk} -v prog="$cf_prog" '{ printf("%s", [substr]([$]0,1+length(prog))); }'`
942 for cf_arg in $cf_flags
946 CF_ADD_CFLAGS($cf_arg)
953 CF_VERBOSE(resulting CC: '$CC')
954 CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
955 CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
962 dnl ---------------------------------------------------------------------------
963 dnl CF_CFG_DEFAULTS version: 16 updated: 2021/01/04 19:33:05
965 dnl Determine the default configuration into which we'll install ncurses. This
966 dnl can be overridden by the user's command-line options. There's two items to
968 dnl 1. the prefix (e.g., /usr)
969 dnl 2. the header files (e.g., /usr/include/ncurses)
970 dnl We'll look for a previous installation of ncurses and use the same defaults.
972 dnl We don't use AC_PREFIX_DEFAULT, because it gets evaluated too soon, and
973 dnl we don't use AC_PREFIX_PROGRAM, because we cannot distinguish ncurses's
974 dnl programs from a vendor's.
975 AC_DEFUN([CF_CFG_DEFAULTS],
976 [AC_REQUIRE([AC_PROG_FGREP])dnl
978 AC_MSG_CHECKING(for prefix)
979 if test "x$prefix" = "xNONE" ; then
980 case "$cf_cv_system_name" in
981 # non-vendor systems don't have a conflict
982 (openbsd*|freebsd*|mirbsd*|linux*|cygwin*|msys*|k*bsd*-gnu|mingw*)
985 (*) prefix=$ac_default_prefix
989 AC_MSG_RESULT($prefix)
991 if test "x$prefix" = "xNONE" ; then
992 AC_MSG_CHECKING(for default include-directory)
993 test -n "$verbose" && echo 1>&AC_FD_MSG
996 "$includedir/ncurses" \
998 "$prefix/include/ncurses" \
1000 /usr/local/include/ncurses \
1002 /usr/include/ncurses
1004 cf_dir=`eval echo "$cf_symbol"`
1005 if test -f "$cf_dir/curses.h" ; then
1006 if ( ${FGREP-fgrep} NCURSES_VERSION "$cf_dir/curses.h" >/dev/null 2>&1 ) ; then
1007 includedir="$cf_symbol"
1008 test -n "$verbose" && echo $ECHO_N " found " 1>&AC_FD_MSG
1012 test -n "$verbose" && echo " tested $cf_dir" 1>&AC_FD_MSG
1014 AC_MSG_RESULT($includedir)
1017 dnl ---------------------------------------------------------------------------
1018 dnl CF_CGETENT version: 6 updated: 2017/01/21 11:06:25
1020 dnl Check if the terminal-capability database functions are available. If not,
1021 dnl ncurses has a much-reduced version.
1022 AC_DEFUN([CF_CGETENT],[
1023 AC_CACHE_CHECK(for terminal-capability database functions,cf_cv_cgetent,[
1025 #include <stdlib.h>],[
1028 char *db_array = temp;
1029 cgetent(&buf, &db_array, "vt100");
1030 cgetcap(buf, "tc", '=');
1031 cgetmatch(buf, "tc");
1033 [cf_cv_cgetent=yes],
1037 if test "$cf_cv_cgetent" = yes
1039 AC_DEFINE(HAVE_BSD_CGETENT,1,[Define to 1 if we have BSD cgetent])
1040 AC_CACHE_CHECK(if cgetent uses const parameter,cf_cv_cgetent_const,[
1042 #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers"
1043 #include <stdlib.h>],[
1046 #ifndef _NETBSD_SOURCE /* given, since April 2004 in stdlib.h */
1047 const char *db_array = temp;
1048 cgetent(&buf, &db_array, "vt100");
1050 cgetcap(buf, "tc", '=');
1051 cgetmatch(buf, "tc");
1053 [cf_cv_cgetent_const=yes],
1054 [cf_cv_cgetent_const=no])
1056 if test "$cf_cv_cgetent_const" = yes
1058 AC_DEFINE_UNQUOTED(CGETENT_CONST,const,[Define to const if needed for some BSD cgetent variations])
1062 dnl ---------------------------------------------------------------------------
1063 dnl CF_CHECK_CACHE version: 13 updated: 2020/12/31 10:54:15
1065 dnl Check if we're accidentally using a cache from a different machine.
1066 dnl Derive the system name, as a check for reusing the autoconf cache.
1068 dnl If we've packaged config.guess and config.sub, run that (since it does a
1069 dnl better job than uname). Normally we'll use AC_CANONICAL_HOST, but allow
1070 dnl an extra parameter that we may override, e.g., for AC_CANONICAL_SYSTEM
1071 dnl which is useful in cross-compiles.
1073 dnl Note: we would use $ac_config_sub, but that is one of the places where
1074 dnl autoconf 2.5x broke compatibility with autoconf 2.13
1075 AC_DEFUN([CF_CHECK_CACHE],
1077 if test -f "$srcdir/config.guess" || test -f "$ac_aux_dir/config.guess" ; then
1078 ifelse([$1],,[AC_CANONICAL_HOST],[$1])
1079 system_name="$host_os"
1081 system_name="`(uname -s -r) 2>/dev/null`"
1082 if test -z "$system_name" ; then
1083 system_name="`(hostname) 2>/dev/null`"
1086 test -n "$system_name" && AC_DEFINE_UNQUOTED(SYSTEM_NAME,"$system_name",[Define to the system name.])
1087 AC_CACHE_VAL(cf_cv_system_name,[cf_cv_system_name="$system_name"])
1089 test -z "$system_name" && system_name="$cf_cv_system_name"
1090 test -n "$cf_cv_system_name" && AC_MSG_RESULT(Configuring for $cf_cv_system_name)
1092 if test ".$system_name" != ".$cf_cv_system_name" ; then
1093 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
1094 AC_MSG_ERROR("Please remove config.cache and try again.")
1097 dnl ---------------------------------------------------------------------------
1098 dnl CF_CHECK_ENVIRON version: 4 updated: 2023/01/14 07:48:15
1099 dnl ----------------
1100 dnl Check for data that is usually declared in <unistd.h>, e.g., the 'environ'
1101 dnl variable. Define a DECL_xxx symbol if we must declare it ourselves.
1103 dnl $1 = the name to check
1104 dnl $2 = the assumed type
1105 AC_DEFUN([CF_CHECK_ENVIRON],
1107 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1109 #ifdef HAVE_STDLIB_H
1112 #include <unistd.h> ],
1113 ifelse([$2],,void*,[$2]) x = (ifelse([$2],,void*,[$2])) $1; (void)x,
1118 if test "$cf_cv_dcl_$1" = no ; then
1119 CF_UPPER(cf_result,decl_$1)
1120 AC_DEFINE_UNQUOTED($cf_result)
1123 # It's possible (for near-UNIX clones) that the data doesn't exist
1124 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1126 dnl ---------------------------------------------------------------------------
1127 dnl CF_CHECK_ERRNO version: 13 updated: 2020/03/10 18:53:47
1129 dnl Check for data that is usually declared in <stdio.h> or <errno.h>, e.g.,
1130 dnl the 'errno' variable. Define a DECL_xxx symbol if we must declare it
1133 dnl $1 = the name to check
1134 dnl $2 = the assumed type
1135 AC_DEFUN([CF_CHECK_ERRNO],
1137 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1139 #ifdef HAVE_STDLIB_H
1143 #include <sys/types.h>
1144 #include <errno.h> ],
1145 ifelse([$2],,int,[$2]) x = (ifelse([$2],,int,[$2])) $1; (void)x,
1150 if test "$cf_cv_dcl_$1" = no ; then
1151 CF_UPPER(cf_result,decl_$1)
1152 AC_DEFINE_UNQUOTED($cf_result)
1155 # It's possible (for near-UNIX clones) that the data doesn't exist
1156 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1158 dnl ---------------------------------------------------------------------------
1159 dnl CF_CHECK_EXTERN_DATA version: 5 updated: 2021/09/04 06:35:04
1160 dnl --------------------
1161 dnl Check for existence of external data in the current set of libraries. If
1162 dnl we can modify it, it is real enough.
1163 dnl $1 = the name to check
1165 AC_DEFUN([CF_CHECK_EXTERN_DATA],
1167 AC_CACHE_CHECK(if external $1 exists, cf_cv_have_$1,[
1173 [cf_cv_have_$1=yes],
1177 if test "$cf_cv_have_$1" = yes ; then
1178 CF_UPPER(cf_result,have_$1)
1179 AC_DEFINE_UNQUOTED($cf_result)
1183 dnl ---------------------------------------------------------------------------
1184 dnl CF_CHECK_FVISIBILITY version: 2 updated: 2020/04/04 16:16:13
1185 dnl --------------------
1186 dnl Check whether the compiler understands -fvisibility=hidden
1189 dnl $2 = compiler-flags variable name
1190 dnl $3 = cache variable to set
1191 AC_DEFUN([CF_CHECK_FVISIBILITY],[
1192 AC_CACHE_CHECK(if $1 -fvisibility=hidden option works,$3,[
1193 cf_save_cflags="[$]$2"
1194 $2="[$]$2 -fvisibility=hidden"
1196 __attribute__ ((visibility("default"))) int somefunc() {return 42;}
1198 if (somefunc()) return 1;
1205 dnl ---------------------------------------------------------------------------
1206 dnl CF_CHECK_GETENV version: 3 updated: 2023/01/05 17:47:56
1208 dnl Check if repeated getenv calls return the same pointer, e.g., it does not
1209 dnl discard the previous pointer when returning a new one.
1210 AC_DEFUN([CF_CHECK_GETENV],
1212 AC_REQUIRE([CF_CHECK_ENVIRON])
1213 AC_CHECK_FUNC( getenv, ,, AC_MSG_ERROR(getenv not found) )
1214 AC_CHECK_FUNCS( putenv setenv strdup )
1215 AC_CACHE_CHECK(if getenv returns consistent values,cf_cv_consistent_getenv,[
1217 $ac_includes_default
1219 #if defined(HAVE_ENVIRON) && defined(DECL_ENVIRON) && !defined(environ)
1220 extern char **environ; /* POSIX, but some systems are not... */
1223 #if defined(HAVE_STRDUP)
1224 #define str_alloc(s) strdup(s)
1226 #define str_alloc(s) strcpy(malloc(strlen(s) + 1, s))
1229 static void set_value(const char *name, const char *value)
1231 #if defined(HAVE_SETENV)
1232 setenv(name, value, 1);
1233 #elif defined(HAVE_PUTENV)
1235 sprintf(buffer, "%s=%s", name, value);
1236 putenv(str_alloc(buffer));
1238 #error neither putenv/setenv found
1244 size_t numenv, limit, j;
1249 for (numenv = 0; environ[numenv]; ++numenv) ;
1250 limit = numenv + 10;
1251 mynames = (char **) calloc(limit + 1, sizeof(char *));
1252 myvalues = (char **) calloc(limit + 1, sizeof(char *));
1253 mypointer = (char **) calloc(limit + 1, sizeof(char *));
1254 #if defined(HAVE_ENVIRON)
1255 for (j = 0; environ[j]; ++j) {
1256 mynames[j] = str_alloc(environ[j]);
1257 equals = strchr(mynames[j], '=');
1260 myvalues[j] = str_alloc(equals);
1262 myvalues[j] = str_alloc("");
1266 for (j = numenv; j < limit; ++j) {
1274 sprintf(name, "TERM%lu", (unsigned long) k);
1275 for (jk = 0; jk < j; ++jk) {
1276 if (!strcmp(name, mynames[jk])) {
1283 sprintf(value, "%lu:%p", (unsigned long) k, &mynames[j]);
1284 set_value(name, value);
1285 mynames[j] = str_alloc(name);
1286 myvalues[j] = str_alloc(value);
1288 for (pass = 0; pass < 3; ++pass) {
1289 for (j = 0; j < limit; ++j) {
1290 char *value = getenv(mynames[j]);
1293 fprintf(stderr, "getenv returned null for %s\\n", mynames[j]);
1294 ${cf_cv_main_return:-return}(1);
1295 } else if (value != mypointer[j]) {
1296 fprintf(stderr, "getenv returned different pointer for %s\\n", mynames[j]);
1297 ${cf_cv_main_return:-return}(1);
1298 } else if (strcmp(value, myvalues[j])) {
1299 fprintf(stderr, "getenv returned different value for %s\\n", mynames[j]);
1300 ${cf_cv_main_return:-return}(1);
1304 mypointer[j] = value;
1305 for (k = 0; k < j; ++k) {
1306 if (mypointer[j] == mypointer[k]) {
1307 fprintf(stderr, "getenv returned same pointer for %s and %s\\n", mynames[j], mynames[k]);
1308 ${cf_cv_main_return:-return}(1);
1314 ${cf_cv_main_return:-return}(0);
1317 [cf_cv_consistent_getenv=yes],
1318 [cf_cv_consistent_getenv=no],
1319 [cf_cv_consistent_getenv=unknown])
1322 if test "x$cf_cv_consistent_getenv" = xno
1324 AC_DEFINE(HAVE_CONSISTENT_GETENV,1,[Define to 1 if getenv repeatably returns the same value for a given name])
1327 dnl ---------------------------------------------------------------------------
1328 dnl CF_CHECK_GNAT_VERSION version: 4 updated: 2021/01/01 13:31:04
1329 dnl ---------------------
1330 AC_DEFUN([CF_CHECK_GNAT_VERSION],
1332 AC_REQUIRE([CF_GNAT_VERSION])
1333 case "$cf_cv_gnat_version" in
1334 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
1335 cf_cv_prog_gnat_correct=yes
1338 AC_MSG_WARN(Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding.)
1339 cf_cv_prog_gnat_correct=no
1343 dnl ---------------------------------------------------------------------------
1344 dnl CF_CHECK_GPM_WGETCH version: 6 updated: 2021/01/04 18:48:01
1345 dnl -------------------
1346 dnl Check if GPM is already linked with curses. If so - and if the linkage
1347 dnl is not "weak" - warn about this because it can create problems linking
1348 dnl applications with ncurses.
1349 AC_DEFUN([CF_CHECK_GPM_WGETCH],[
1350 AC_REQUIRE([AC_PROG_EGREP])dnl
1352 AC_CHECK_LIB(gpm,Gpm_Wgetch,[
1354 AC_CACHE_CHECK(if GPM is weakly bound to curses library, cf_cv_check_gpm_wgetch,[
1355 cf_cv_check_gpm_wgetch=unknown
1356 if test "$cross_compiling" != yes ; then
1358 cat >conftest.$ac_ext <<CF_EOF
1363 ${cf_cv_main_return:-return}(0);
1367 cf_save_LIBS="$LIBS"
1368 # This only works if we can look at the symbol table. If a shared
1369 # library is stripped for install, we cannot use that. So we're forced
1370 # to rely on the static library, noting that some packagers may not
1372 LIBS="-static -lgpm -dynamic $LIBS"
1373 if AC_TRY_EVAL(ac_compile) ; then
1374 if AC_TRY_EVAL(ac_link) ; then
1375 cf_cv_check_gpm_wgetch="`nm \"conftest$ac_exeext\" | ${EGREP-egrep} '\<wgetch\>' | ${EGREP-egrep} '\<[[vVwW]]\>'`"
1376 test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
1377 test -z "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=no
1381 LIBS="$cf_save_LIBS"
1385 if test "$cf_cv_check_gpm_wgetch" != yes ; then
1386 AC_MSG_WARN(GPM library is already linked with curses - read the FAQ)
1389 dnl ---------------------------------------------------------------------------
1390 dnl CF_CHECK_LIBSSP version: 1 updated: 2021/10/30 10:40:19
1392 dnl Check if libssp is needed, e.g., to work around misconfigured libraries
1393 dnl used in cross-compiling to MinGW.
1394 AC_DEFUN([CF_CHECK_LIBSSP],[
1395 AC_CACHE_CHECK(if ssp library is needed,cf_cv_need_libssp,[
1397 #include <sys/types.h>
1400 DIR *dp = opendir(".");
1401 ],cf_cv_need_libssp=no,[
1402 cf_save_LIBS="$LIBS"
1405 #include <sys/types.h>
1408 DIR *dp = opendir(".");
1409 ],cf_cv_need_libssp=yes,
1410 cf_cv_need_libssp=maybe)
1411 LIBS="$cf_save_LIBS"
1415 if test "x$cf_cv_need_libssp" = xyes
1420 dnl ---------------------------------------------------------------------------
1421 dnl CF_CHECK_LIBTOOL_VERSION version: 2 updated: 2021/05/01 16:24:34
1422 dnl ------------------------
1423 dnl Show the version of libtool
1425 dnl Save the version in a cache variable - this is not entirely a good thing,
1426 dnl but the version string from libtool is very ugly, and for bug reports it
1427 dnl might be useful to have the original string.
1429 dnl There is an imitation in OpenBSD, which has no apparent use other than to
1430 dnl deny that it is GNU libtool. Just ignore it.
1431 AC_DEFUN([CF_CHECK_LIBTOOL_VERSION],[
1432 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
1434 AC_MSG_CHECKING(version of $LIBTOOL)
1436 AC_MSG_RESULT($cf_cv_libtool_version)
1437 if test -n "$cf_cv_libtool_version"
1439 cf_check_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '/^$/d' -e 's,[[()]],...,g' -e 's,[[ ]],-,g' -e '2,$d'`
1440 case "x$cf_check_libtool_version" in
1441 (*...GNU-libtool...*)
1444 AC_MSG_ERROR(This is not GNU libtool)
1448 AC_MSG_ERROR(No version found for $LIBTOOL)
1451 AC_MSG_ERROR(GNU libtool has not been found)
1454 dnl ---------------------------------------------------------------------------
1455 dnl CF_CHECK_WCHAR_H version: 3 updated: 2021/01/01 13:31:04
1456 dnl ----------------
1457 dnl Check if wchar.h can be used, i.e., without defining _XOPEN_SOURCE_EXTENDED
1458 AC_DEFUN([CF_CHECK_WCHAR_H],[
1463 AC_CACHE_CHECK(if wchar.h can be used as is,cf_cv_wchar_h_okay,[
1470 #ifdef HAVE_WCTYPE_H
1475 int bar = iswpunct(foo)],
1476 [cf_cv_wchar_h_okay=yes],
1477 [cf_cv_wchar_h_okay=no])])
1479 if test "$cf_cv_wchar_h_okay" = no
1481 CF_PREDEFINE(_XOPEN_SOURCE_EXTENDED)
1484 dnl ---------------------------------------------------------------------------
1485 dnl CF_CHECK_WCWIDTH_GRAPHICS version: 3 updated: 2023/01/05 18:01:30
1486 dnl -------------------------
1487 dnl Most "modern" terminal emulators are based to some degree on VT100, and
1488 dnl should support line-drawing. Even with Unicode. There is a problem.
1490 dnl While most of the VT100 graphics characters were incorporated into Unicode,
1491 dnl all of those were combined into a page of useful graphics characters.
1493 dnl So far, so good.
1495 dnl However, while they are useful, there are other considerations. CJK
1496 dnl is (because of poor device resolution) often rendered as double-width
1497 dnl characters. So... for these generally-useful characters, what should
1498 dnl be the width (to make them consistent with adjacent characters)?
1500 dnl The obvious choice would have been to make this locale-dependent, and use
1501 dnl wcwidth() to tell applications what the actual width is. That was too
1502 dnl obvious. Instead, we have a slew of "ambiguous-width" characters.
1504 dnl http://www.unicode.org/reports/tr11/tr11-29.html
1505 dnl http://www.cl.cam.ac.uk/~mgk25/ucs/scw-proposal.html
1507 dnl The EastAsianWidth-6.2.0.txt file from the Unicode organization lists
1508 dnl more than 22,000 characters, with 1281 of those as ambiguous-width. For
1509 dnl instance, it lists half (44/96) of the Latin-1 characters as
1510 dnl ambiguous-width. Also, all of the box-characters at 0x2500 are ambiguous.
1512 dnl What this means for the implementor is that on some systems wcwidth() can
1513 dnl give bad advice. On Solaris, some of the ambiguous widths are returned as
1514 dnl 1 (the Latin-1 characters), while others are returned as 2 (line-drawing
1515 dnl characters). These do not necessarily match the behavior of the terminal
1516 dnl emulator. xterm, for instance, does an optional startup check to find if
1517 dnl this problem (or similar) exists with the system's locale tables, rejecting
1518 dnl them if they are too unreliable.
1519 AC_DEFUN([CF_CHECK_WCWIDTH_GRAPHICS],[
1520 AC_CACHE_CHECK(if wcwidth agrees graphics are single-width, cf_cv_wcwidth_graphics,[
1521 cat >conftest.in <<CF_EOF
1523 0x250c upper left corner
1524 0x2514 lower left corner
1525 0x2510 upper right corner
1526 0x2518 lower right corner
1527 0x251c tee pointing left
1528 0x2524 tee pointing right
1529 0x2534 tee pointing up
1530 0x252c tee pointing down
1531 0x2500 horizontal line
1532 0x2502 vertical line
1533 0x253c large plus or crossover
1537 0x2592 checker board (stipple)
1538 0x00b0 degree symbol
1541 - Teletype 5410v1 symbols
1542 0x2190 arrow pointing left
1543 0x2192 arrow pointing right
1544 0x2193 arrow pointing down
1545 0x2191 arrow pointing up
1546 0x2592 board of squares
1547 0x2603 lantern symbol
1548 0x25ae solid square block
1549 - these defaults were invented for ncurses
1552 0x2264 less-than-or-equal-to
1553 0x2265 greater-than-or-equal-to
1556 0x00a3 pound-sterling symbol
1557 - thick-line-drawing
1558 0x250f upper left corner
1559 0x2517 lower left corner
1560 0x2513 upper right corner
1561 0x251b lower right corner
1562 0x2523 tee pointing left
1563 0x252b tee pointing right
1564 0x253b tee pointing up
1565 0x2533 tee pointing down
1566 0x2501 horizontal line
1567 0x2503 vertical line
1568 0x254b large plus or crossover
1569 - double-line-drawing
1570 0x2554 upper left corner
1571 0x255a lower left corner
1572 0x2557 upper right corner
1573 0x255d lower right corner
1574 0x2563 tee pointing left
1575 0x2560 tee pointing right
1576 0x2569 tee pointing up
1577 0x2566 tee pointing down
1578 0x2550 horizontal line
1579 0x2551 vertical line
1580 0x256c large plus or crossover
1583 $ac_includes_default
1595 char buffer[MY_LEN + 1];
1596 char notes[MY_LEN + 1];
1600 if (setlocale(LC_ALL, "en_US.UTF8") ||
1601 setlocale(LC_ALL, "en_US.UTF-8") ||
1602 setlocale(LC_ALL, "en_US.utf8") ||
1603 setlocale(LC_ALL, "en_US.utf-8")) {
1604 if ((fp = fopen("conftest.in", "r")) != 0) {
1605 while (fgets(buffer, MY_LEN, fp) != 0) {
1606 if (*buffer == '-') {
1607 fprintf(stderr, "\\t%s", buffer);
1608 } else if (sscanf(buffer, "%x %s", &value, notes) == 2) {
1610 if (wcwidth(value) == 1)
1612 fprintf(stderr, "%d\\t%s", wcwidth(value), buffer);
1614 fprintf(stderr, "?\\t%s", buffer);
1619 fprintf(stderr, "%d/%d passed wcwidth/graphics check\\n", passed, totals);
1620 return (totals == passed) ? 0 : 1;
1623 [cf_cv_wcwidth_graphics=yes],
1624 [cf_cv_wcwidth_graphics=no],
1625 [cf_cv_wcwidth_graphics=unknown])
1628 dnl ---------------------------------------------------------------------------
1629 dnl CF_CLANG_COMPILER version: 8 updated: 2021/01/01 13:31:04
1630 dnl -----------------
1631 dnl Check if the given compiler is really clang. clang's C driver defines
1632 dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
1633 dnl not ignore some gcc options.
1635 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
1636 dnl ensure that it is not mistaken for gcc/g++. It is normally invoked from
1637 dnl the wrappers for gcc and g++ warnings.
1639 dnl $1 = GCC (default) or GXX
1640 dnl $2 = CLANG_COMPILER (default)
1641 dnl $3 = CFLAGS (default) or CXXFLAGS
1642 AC_DEFUN([CF_CLANG_COMPILER],[
1643 ifelse([$2],,CLANG_COMPILER,[$2])=no
1645 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
1646 AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
1647 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
1653 ],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
1655 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
1656 AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
1661 if test "x$ifelse([$2],,CLANG_COMPILER,[$2])" = "xyes" ; then
1663 (c[[1-9]][[0-9]]|*/c[[1-9]][[0-9]])
1664 AC_MSG_WARN(replacing broken compiler alias $CC)
1665 CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`"
1670 AC_MSG_CHECKING(version of $CC)
1671 CLANG_VERSION="`$CC --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(CLANG[[^)]]*) //' -e 's/^.*(Debian[[^)]]*) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
1672 test -z "$CLANG_VERSION" && CLANG_VERSION=unknown
1673 AC_MSG_RESULT($CLANG_VERSION)
1675 for cf_clang_opt in \
1676 -Qunused-arguments \
1677 -Wno-error=implicit-function-declaration
1679 AC_MSG_CHECKING(if option $cf_clang_opt works)
1680 cf_save_CFLAGS="$CFLAGS"
1681 CFLAGS="$CFLAGS $cf_clang_opt"
1683 #include <stdio.h>],[
1684 printf("hello!\\n");],[
1685 cf_clang_optok=yes],[
1687 AC_MSG_RESULT($cf_clang_optok)
1688 CFLAGS="$cf_save_CFLAGS"
1689 if test "$cf_clang_optok" = yes; then
1690 CF_VERBOSE(adding option $cf_clang_opt)
1691 CF_APPEND_TEXT(CFLAGS,$cf_clang_opt)
1696 dnl ---------------------------------------------------------------------------
1697 dnl CF_CONST_X_STRING version: 7 updated: 2021/06/07 17:39:17
1698 dnl -----------------
1699 dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
1700 dnl character-strings.
1702 dnl It is ambiguous because the specification accommodated the pre-ANSI
1703 dnl compilers bundled by more than one vendor in lieu of providing a standard C
1704 dnl compiler other than by costly add-ons. Because of this, the specification
1705 dnl did not take into account the use of const for telling the compiler that
1706 dnl string literals would be in readonly memory.
1708 dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
1709 dnl let the compiler decide how to represent Xt's strings which were #define'd.
1710 dnl That does not solve the problem of using the block of Xt's strings which
1711 dnl are compiled into the library (and is less efficient than one might want).
1713 dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
1714 dnl when compiling the library and compiling using the library, to tell the
1715 dnl compiler that String is const.
1716 AC_DEFUN([CF_CONST_X_STRING],
1718 AC_REQUIRE([AC_PATH_XTRA])
1720 CF_SAVE_XTRA_FLAGS([CF_CONST_X_STRING])
1725 #include <X11/Intrinsic.h>
1727 [String foo = malloc(1); free((void*)foo)],[
1729 AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
1732 #define _CONST_X_STRING /* X11R7.8 (perhaps) */
1733 #undef XTSTRINGDEFINES /* X11R5 and later */
1735 #include <X11/Intrinsic.h>
1736 ],[String foo = malloc(1); *foo = 0],[
1737 cf_cv_const_x_string=no
1739 cf_cv_const_x_string=yes
1743 CF_RESTORE_XTRA_FLAGS([CF_CONST_X_STRING])
1745 case "$cf_cv_const_x_string" in
1747 CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
1750 CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
1756 dnl ---------------------------------------------------------------------------
1757 dnl CF_CPP_OVERRIDE version: 1 updated: 2022/08/20 16:07:10
1759 dnl Check if the C++ compiler accepts the override keyword. This is a C++-11
1761 AC_DEFUN([CF_CPP_OVERRIDE],
1763 if test -n "$CXX"; then
1764 AC_CACHE_CHECK(if $CXX accepts override keyword,cf_cv_cpp_override,[
1772 virtual int foo(float x) = 0;
1776 class derived: public base
1779 int foo(float x) override { return x != 0.0 ? 1 : 0; }
1784 [cf_cv_cpp_override=yes],
1785 [cf_cv_cpp_override=no],
1786 [cf_cv_cpp_override=unknown])
1790 test "$cf_cv_cpp_override" = yes && AC_DEFINE(CPP_HAS_OVERRIDE,1,[Define to 1 if C++ has override keyword])
1792 dnl ---------------------------------------------------------------------------
1793 dnl CF_CPP_PARAM_INIT version: 7 updated: 2017/01/21 11:06:25
1794 dnl -----------------
1795 dnl Check if the C++ compiler accepts duplicate parameter initialization. This
1796 dnl is a late feature for the standard and is not in some recent compilers
1798 AC_DEFUN([CF_CPP_PARAM_INIT],
1800 if test -n "$CXX"; then
1801 AC_CACHE_CHECK(if $CXX accepts parameter initialization,cf_cv_cpp_param_init,[
1813 TEST::TEST(int x = 1) // some compilers do not like second initializer
1819 [cf_cv_cpp_param_init=yes],
1820 [cf_cv_cpp_param_init=no],
1821 [cf_cv_cpp_param_init=unknown])
1825 test "$cf_cv_cpp_param_init" = yes && AC_DEFINE(CPP_HAS_PARAM_INIT,1,[Define to 1 if C++ has parameter initialization])
1827 dnl ---------------------------------------------------------------------------
1828 dnl CF_CPP_STATIC_CAST version: 3 updated: 2013/04/13 18:03:21
1829 dnl ------------------
1830 dnl Check if the C++ compiler accepts static_cast in generics. This appears to
1831 dnl not be supported in g++ before 3.0
1832 AC_DEFUN([CF_CPP_STATIC_CAST],
1834 if test -n "$CXX"; then
1836 AC_CACHE_CHECK(if $CXX accepts static_cast,cf_cv_cpp_static_cast,[
1844 NCursesPanel(int nlines,
1854 template<class T> class NCursesUserPanel : public NCursesPanel
1857 NCursesUserPanel (int nlines,
1861 const T* p_UserData = static_cast<T*>(0))
1862 : NCursesPanel (nlines, ncols, begin_y, begin_x)
1865 NCursesUserPanel(const T* p_UserData = static_cast<T*>(0)) : NCursesPanel()
1869 virtual ~NCursesUserPanel() {};
1872 const char* p_UserData = static_cast<char*>(0)],
1873 [cf_cv_cpp_static_cast=yes],
1874 [cf_cv_cpp_static_cast=no])
1881 test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST,1,[Define to 1 if C++ has static_cast])
1883 dnl ---------------------------------------------------------------------------
1884 dnl CF_CXX_AR_FLAGS version: 3 updated: 2021/01/01 13:31:04
1886 dnl Setup special archiver flags for given compilers.
1887 AC_DEFUN([CF_CXX_AR_FLAGS],[
1889 CXX_ARFLAGS='$(ARFLAGS)'
1890 case "$cf_cv_system_name" in
1892 if test "$GXX" != yes ; then
1894 CXX_ARFLAGS='-ar -o'
1898 CXXLDFLAGS="-u main"
1901 if test "$GXX" != yes ; then
1903 CXX_ARFLAGS='-xar -o'
1907 AC_SUBST(CXXLDFLAGS)
1909 AC_SUBST(CXX_ARFLAGS)
1911 dnl ---------------------------------------------------------------------------
1912 dnl CF_CXX_IOSTREAM_NAMESPACE version: 2 updated: 2012/10/06 17:56:13
1913 dnl -------------------------
1914 dnl For c++, check if iostream uses "std::" namespace.
1915 AC_DEFUN([CF_CXX_IOSTREAM_NAMESPACE],[
1916 AC_CHECK_HEADERS(iostream)
1917 if test x"$ac_cv_header_iostream" = xyes ; then
1918 AC_MSG_CHECKING(if iostream uses std-namespace)
1923 cerr << "testing" << endl;
1924 ],[cf_iostream_namespace=yes],[cf_iostream_namespace=no])
1925 AC_MSG_RESULT($cf_iostream_namespace)
1926 if test "$cf_iostream_namespace" = yes ; then
1927 AC_DEFINE(IOSTREAM_NAMESPACE,1,[Define to 1 if C++ has namespace iostream])
1931 dnl ---------------------------------------------------------------------------
1932 dnl CF_C_INLINE version: 6 updated: 2019/09/07 13:38:36
1934 dnl Check if the C compiler supports "inline".
1935 dnl $1 is the name of a shell variable to set if inline is supported
1936 dnl $2 is the threshold for gcc 4.x's option controlling maximum inline size
1937 AC_DEFUN([CF_C_INLINE],[
1938 AC_REQUIRE([CF_GCC_VERSION])
1941 if test "$ac_cv_c_inline" != no ; then
1943 if test "$INTEL_COMPILER" = yes
1946 elif test "$CLANG_COMPILER" = yes
1949 elif test "$GCC" = yes
1951 AC_CACHE_CHECK(if $CC supports options to tune inlining,cf_cv_gcc_inline,[
1952 cf_save_CFLAGS=$CFLAGS
1953 CFLAGS="$CFLAGS --param max-inline-insns-single=$2"
1954 AC_TRY_COMPILE([inline int foo(void) { return 1; }],
1955 [${cf_cv_main_return:-return} foo()],
1956 [cf_cv_gcc_inline=yes],
1957 [cf_cv_gcc_inline=no])
1958 CFLAGS=$cf_save_CFLAGS
1960 if test "$cf_cv_gcc_inline" = yes ; then
1961 CF_ADD_CFLAGS([--param max-inline-insns-single=$2])
1967 dnl ---------------------------------------------------------------------------
1968 dnl CF_DIRNAME version: 5 updated: 2020/12/31 20:19:42
1970 dnl "dirname" is not portable, so we fake it with a shell script.
1971 AC_DEFUN([CF_DIRNAME],[$1=`echo "$2" | sed -e 's%/[[^/]]*$%%'`])dnl
1972 dnl ---------------------------------------------------------------------------
1973 dnl CF_DIRS_TO_MAKE version: 4 updated: 2021/01/01 13:31:04
1975 AC_DEFUN([CF_DIRS_TO_MAKE],
1978 for cf_item in $cf_list_models
1980 CF_OBJ_SUBDIR($cf_item,cf_subdir)
1981 for cf_item2 in $DIRS_TO_MAKE
1983 test "$cf_item2" = "$cf_subdir" && break
1985 test ".$cf_item2" != ".$cf_subdir" && DIRS_TO_MAKE="$DIRS_TO_MAKE $cf_subdir"
1987 for cf_dir in $DIRS_TO_MAKE
1989 test ! -d "$cf_dir" && mkdir "$cf_dir"
1991 AC_SUBST(DIRS_TO_MAKE)
1993 dnl ---------------------------------------------------------------------------
1994 dnl CF_DISABLE_ECHO version: 14 updated: 2021/09/04 06:35:04
1996 dnl You can always use "make -n" to see the actual options, but it is hard to
1997 dnl pick out/analyze warning messages when the compile-line is long.
2000 dnl ECHO_LT - symbol to control if libtool is verbose
2001 dnl ECHO_LD - symbol to prefix "cc -o" lines
2002 dnl RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
2003 dnl SHOW_CC - symbol to put before explicit "cc -c" lines
2004 dnl ECHO_CC - symbol to put before any "cc" line
2006 AC_DEFUN([CF_DISABLE_ECHO],[
2007 AC_MSG_CHECKING(if you want to see long compiling messages)
2008 CF_ARG_DISABLE(echo,
2009 [ --disable-echo do not display "compiling" commands],
2012 ECHO_LD='@echo linking [$]@;'
2013 RULE_CC='@echo compiling [$]<'
2014 SHOW_CC='@echo compiling [$]@'
2023 AC_MSG_RESULT($enableval)
2030 dnl ---------------------------------------------------------------------------
2031 dnl CF_DISABLE_GNAT_PROJECTS version: 1 updated: 2014/06/01 11:34:00
2032 dnl ------------------------
2033 AC_DEFUN([CF_DISABLE_GNAT_PROJECTS],[
2034 AC_MSG_CHECKING(if we want to use GNAT projects)
2035 CF_ARG_DISABLE(gnat-projects,
2036 [ --disable-gnat-projects test: disable GNAT projects even if usable],
2037 [enable_gnat_projects=no],
2038 [enable_gnat_projects=yes])
2039 AC_MSG_RESULT($enable_gnat_projects)
2041 dnl ---------------------------------------------------------------------------
2042 dnl CF_DISABLE_LEAKS version: 9 updated: 2021/04/03 16:41:50
2043 dnl ----------------
2044 dnl Combine no-leak checks with the libraries or tools that are used for the
2046 AC_DEFUN([CF_DISABLE_LEAKS],[
2048 AC_REQUIRE([CF_WITH_DMALLOC])
2049 AC_REQUIRE([CF_WITH_DBMALLOC])
2050 AC_REQUIRE([CF_WITH_VALGRIND])
2052 AC_MSG_CHECKING(if you want to perform memory-leak testing)
2053 AC_ARG_ENABLE(leaks,
2054 [ --disable-leaks test: free permanent memory, analyze leaks],
2055 [enable_leaks=$enableval],
2057 dnl with_no_leaks is more readable...
2058 if test "x$enable_leaks" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi
2059 AC_MSG_RESULT($with_no_leaks)
2061 if test "$enable_leaks" = no ; then
2062 AC_DEFINE(NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
2063 AC_DEFINE(YY_NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
2066 dnl ---------------------------------------------------------------------------
2067 dnl CF_DISABLE_LIBTOOL_VERSION version: 3 updated: 2015/04/17 21:13:04
2068 dnl --------------------------
2069 dnl Check if we should use the libtool 1.5 feature "-version-number" instead of
2070 dnl the older "-version-info" feature. The newer feature allows us to use
2071 dnl version numbering on shared libraries which make them compatible with
2072 dnl various systems.
2073 AC_DEFUN([CF_DISABLE_LIBTOOL_VERSION],
2075 AC_MSG_CHECKING(if libtool -version-number should be used)
2076 CF_ARG_DISABLE(libtool-version,
2077 [ --disable-libtool-version enable to use libtool's incompatible naming scheme],
2078 [cf_libtool_version=no],
2079 [cf_libtool_version=yes])
2080 AC_MSG_RESULT($cf_libtool_version)
2082 if test "$cf_libtool_version" = yes ; then
2083 LIBTOOL_VERSION="-version-number"
2085 LIBTOOL_VERSION="-version-info"
2088 AC_MSG_WARN(VERSION was not set)
2091 ABI_VERSION="$VERSION"
2092 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
2095 ABI_VERSION=`echo "$VERSION" | sed -e 's/:/./g'`
2096 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
2099 AC_MSG_WARN(unexpected VERSION value: $VERSION)
2104 AC_SUBST(ABI_VERSION)
2105 AC_SUBST(LIBTOOL_VERSION)
2107 dnl ---------------------------------------------------------------------------
2108 dnl CF_DISABLE_RPATH_HACK version: 3 updated: 2021/01/05 20:14:44
2109 dnl ---------------------
2110 dnl The rpath-hack makes it simpler to build programs, particularly with the
2111 dnl *BSD ports which may have essential libraries in unusual places. But it
2112 dnl can interfere with building an executable for the base system. Use this
2113 dnl option in that case.
2114 AC_DEFUN([CF_DISABLE_RPATH_HACK],
2116 AC_MSG_CHECKING(if rpath-hack should be disabled)
2117 CF_ARG_DISABLE(rpath-hack,
2118 [ --disable-rpath-hack don't add rpath options for additional libraries],
2119 [enable_rpath_hack=no],
2120 [enable_rpath_hack=yes])
2121 dnl TODO - drop cf_disable_rpath_hack
2122 if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi
2123 AC_MSG_RESULT($cf_disable_rpath_hack)
2125 if test "$enable_rpath_hack" = yes ; then
2129 dnl ---------------------------------------------------------------------------
2130 dnl CF_ENABLE_BROKEN_LINKER version: 2 updated: 2021/01/02 17:09:14
2131 dnl -----------------------
2132 dnl Some linkers cannot reference a data-only object. Cygwin used to be one.
2133 dnl This usually follows CF_LINK_DATAONLY, but is not required in case we need
2134 dnl an unconditional feature.
2135 AC_DEFUN([CF_ENABLE_BROKEN_LINKER],[
2137 AC_MSG_CHECKING(if you want broken-linker support code)
2138 AC_ARG_ENABLE(broken_linker,
2139 [ --enable-broken_linker compile with broken-linker support code],
2140 [with_broken_linker=$enableval],
2141 [with_broken_linker=no])
2142 AC_MSG_RESULT($with_broken_linker)
2144 : "${BROKEN_LINKER:=0}"
2145 if test "x$with_broken_linker" = xyes ; then
2146 AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
2149 AC_SUBST(BROKEN_LINKER)
2151 dnl ---------------------------------------------------------------------------
2152 dnl CF_ENABLE_PC_FILES version: 16 updated: 2021/11/20 12:48:37
2153 dnl ------------------
2154 dnl This is the "--enable-pc-files" option, which is available if there is a
2155 dnl pkg-config configuration on the local machine.
2156 AC_DEFUN([CF_ENABLE_PC_FILES],[
2157 AC_REQUIRE([CF_PKG_CONFIG])
2158 AC_REQUIRE([CF_WITH_PKG_CONFIG_LIBDIR])
2160 if test "x$PKG_CONFIG" != xnone
2162 AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
2164 AC_MSG_CHECKING(if we should install .pc files)
2167 AC_ARG_ENABLE(pc-files,
2168 [ --enable-pc-files generate and install .pc files for pkg-config],
2169 [enable_pc_files=$enableval],
2170 [enable_pc_files=no])
2171 AC_MSG_RESULT($enable_pc_files)
2173 if test "x$enable_pc_files" != xno
2176 case "x$PKG_CONFIG_LIBDIR" in
2178 AC_MSG_WARN(no PKG_CONFIG_LIBDIR was found)
2181 cf_pkg_config_libdir="$PKG_CONFIG_LIBDIR"
2182 CF_PATH_SYNTAX(cf_pkg_config_libdir)
2188 AC_SUBST(MAKE_PC_FILES)
2190 dnl ---------------------------------------------------------------------------
2191 dnl CF_ENABLE_RPATH version: 2 updated: 2010/03/27 18:39:42
2193 dnl Check if the rpath option should be used, setting cache variable
2194 dnl cf_cv_enable_rpath if so.
2195 AC_DEFUN([CF_ENABLE_RPATH],
2197 AC_MSG_CHECKING(if rpath option should be used)
2198 AC_ARG_ENABLE(rpath,
2199 [ --enable-rpath use rpath option when generating shared libraries],
2200 [cf_cv_enable_rpath=$enableval],
2201 [cf_cv_enable_rpath=no])
2202 AC_MSG_RESULT($cf_cv_enable_rpath)
2204 dnl ---------------------------------------------------------------------------
2205 dnl CF_ENABLE_STRING_HACKS version: 6 updated: 2021/01/05 19:23:48
2206 dnl ----------------------
2207 dnl On a few platforms, the compiler and/or loader nags with untruthful
2208 dnl comments stating that "most" uses of strcat/strcpy/sprintf are incorrect,
2209 dnl and implying that most uses of the recommended alternatives are correct.
2211 dnl Factually speaking, no one has actually counted the number of uses of these
2212 dnl functions versus the total of incorrect uses. Samples of a few thousand
2213 dnl instances are meaningless compared to the hundreds of millions of lines of
2214 dnl existing C code.
2216 dnl strlcat/strlcpy are (as of 2012) non-standard, and are available on some
2217 dnl platforms, in implementations of varying quality. Likewise, snprintf is
2218 dnl standard - but evolved through phases, and older implementations are likely
2219 dnl to yield surprising results, as documented in manpages on various systems.
2220 AC_DEFUN([CF_ENABLE_STRING_HACKS],
2222 AC_MSG_CHECKING(if you want to work around bogus compiler/loader warnings)
2223 AC_ARG_ENABLE(string-hacks,
2224 [ --enable-string-hacks work around bogus compiler/loader warnings],
2225 [enable_string_hacks=$enableval],
2226 [enable_string_hacks=no])
2227 AC_MSG_RESULT($enable_string_hacks)
2229 if test "x$enable_string_hacks" = "xyes"; then
2230 AC_DEFINE(USE_STRING_HACKS,1,[Define to 1 to work around bogus compiler/loader warnings])
2231 AC_MSG_WARN(enabling string-hacks to work around bogus compiler/loader warnings)
2232 AC_CHECK_FUNC(strlcat,[
2233 AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2235 AC_CHECK_LIB(bsd,strlcat,[
2237 AC_CHECK_HEADERS(bsd/string.h)
2238 AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2241 AC_CHECK_FUNCS( strlcpy snprintf )
2244 dnl ---------------------------------------------------------------------------
2245 dnl CF_ENABLE_WARNINGS version: 9 updated: 2021/01/05 19:40:50
2246 dnl ------------------
2247 dnl Configure-option to enable gcc warnings
2249 dnl $1 = extra options to add, if supported
2250 dnl $2 = option for checking attributes. By default, this is done when
2251 dnl warnings are enabled. For other values:
2252 dnl yes: always do this, e.g., to use in generated library-headers
2253 dnl no: never do this
2254 AC_DEFUN([CF_ENABLE_WARNINGS],[
2255 if test "$GCC" = yes || test "$GXX" = yes
2257 CF_FIX_WARNINGS(CFLAGS)
2258 CF_FIX_WARNINGS(CPPFLAGS)
2259 CF_FIX_WARNINGS(LDFLAGS)
2260 AC_MSG_CHECKING(if you want to turn on gcc warnings)
2261 CF_ARG_ENABLE(warnings,
2262 [ --enable-warnings test: turn on gcc compiler warnings],
2263 [enable_warnings=yes],
2264 [enable_warnings=no])
2265 AC_MSG_RESULT($enable_warnings)
2266 if test "$enable_warnings" = "yes"
2268 ifelse($2,,[CF_GCC_ATTRIBUTES])
2271 ifelse($2,yes,[CF_GCC_ATTRIBUTES])
2274 dnl ---------------------------------------------------------------------------
2275 dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39
2277 dnl Check if 'errno' is declared in <errno.h>
2278 AC_DEFUN([CF_ERRNO],
2280 CF_CHECK_ERRNO(errno)
2282 dnl ---------------------------------------------------------------------------
2283 dnl CF_ETIP_DEFINES version: 6 updated: 2021/01/02 17:09:14
2285 dnl Test for conflicting definitions of exception in gcc 2.8.0, etc., between
2286 dnl math.h and builtin.h, only for ncurses
2287 AC_DEFUN([CF_ETIP_DEFINES],
2289 AC_MSG_CHECKING(for special defines needed for etip.h)
2290 cf_save_CXXFLAGS="$CXXFLAGS"
2293 # etip.h includes ncurses.h which includes ncurses_dll.h
2294 # But ncurses_dll.h is generated - fix here.
2295 test -d include || mkdir include
2296 test -f include/ncurses_dll.h || sed -e 's/@NCURSES_WRAP_PREFIX@/'$NCURSES_WRAP_PREFIX'/g' "${srcdir}/include/ncurses_dll.h.in" >include/ncurses_dll.h
2298 for cf_math in "" MATH_H
2300 for cf_excp in "" MATH_EXCEPTION
2302 CXXFLAGS="$cf_save_CXXFLAGS -I${srcdir}/c++ -I${srcdir}/menu -Iinclude -I${srcdir}/include"
2303 test -n "$cf_math" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_math}"
2304 test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}"
2306 #include <etip.h.in>
2308 test -n "$cf_math" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_math})
2309 test -n "$cf_excp" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_excp})
2310 cf_result="$cf_math $cf_excp"
2315 AC_MSG_RESULT($cf_result)
2316 CXXFLAGS="$cf_save_CXXFLAGS"
2318 dnl ---------------------------------------------------------------------------
2319 dnl CF_FIND_LINKAGE version: 22 updated: 2020/12/31 20:19:42
2321 dnl Find a library (specifically the linkage used in the code fragment),
2322 dnl searching for it if it is not already in the library path.
2323 dnl See also CF_ADD_SEARCHPATH.
2325 dnl Parameters (4-on are optional):
2326 dnl $1 = headers for library entrypoint
2327 dnl $2 = code fragment for library entrypoint
2328 dnl $3 = the library name without the "-l" option or ".so" suffix.
2329 dnl $4 = action to perform if successful (default: update CPPFLAGS, etc)
2330 dnl $5 = action to perform if not successful
2331 dnl $6 = module name, if not the same as the library name
2332 dnl $7 = extra libraries
2334 dnl Sets these variables:
2335 dnl $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
2336 dnl $cf_cv_header_path_$3 - include-directory if needed
2337 dnl $cf_cv_library_path_$3 - library-directory if needed
2338 dnl $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
2339 AC_DEFUN([CF_FIND_LINKAGE],[
2341 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
2342 # will be set on completion of the AC_TRY_LINK below.
2343 cf_cv_header_path_$3=
2344 cf_cv_library_path_$3=
2346 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
2348 cf_save_LIBS="$LIBS"
2350 AC_TRY_LINK([$1],[$2],[
2351 cf_cv_find_linkage_$3=yes
2352 cf_cv_header_path_$3=/usr/include
2353 cf_cv_library_path_$3=/usr/lib
2356 LIBS="-l$3 $7 $cf_save_LIBS"
2358 AC_TRY_LINK([$1],[$2],[
2359 cf_cv_find_linkage_$3=yes
2360 cf_cv_header_path_$3=/usr/include
2361 cf_cv_library_path_$3=/usr/lib
2362 cf_cv_library_file_$3="-l$3"
2364 cf_cv_find_linkage_$3=no
2365 LIBS="$cf_save_LIBS"
2367 CF_VERBOSE(find linkage for $3 library)
2368 CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
2370 cf_save_CPPFLAGS="$CPPFLAGS"
2371 cf_test_CPPFLAGS="$CPPFLAGS"
2373 CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
2374 for cf_cv_header_path_$3 in $cf_search
2376 if test -d "$cf_cv_header_path_$3" ; then
2377 CF_VERBOSE(... testing $cf_cv_header_path_$3)
2378 CPPFLAGS="$cf_save_CPPFLAGS"
2379 CF_APPEND_TEXT(CPPFLAGS,-I$cf_cv_header_path_$3)
2380 AC_TRY_COMPILE([$1],[$2],[
2381 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
2382 cf_cv_find_linkage_$3=maybe
2383 cf_test_CPPFLAGS="$CPPFLAGS"
2385 CPPFLAGS="$cf_save_CPPFLAGS"
2390 if test "$cf_cv_find_linkage_$3" = maybe ; then
2392 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
2394 cf_save_LIBS="$LIBS"
2395 cf_save_LDFLAGS="$LDFLAGS"
2398 CPPFLAGS="$cf_test_CPPFLAGS"
2399 LIBS="-l$3 $7 $cf_save_LIBS"
2400 AC_TRY_LINK([$1],[$2],[
2401 CF_VERBOSE(... found $3 library in system)
2402 cf_cv_find_linkage_$3=yes])
2403 CPPFLAGS="$cf_save_CPPFLAGS"
2404 LIBS="$cf_save_LIBS"
2407 if test "$cf_cv_find_linkage_$3" != yes ; then
2408 CF_LIBRARY_PATH(cf_search,$3)
2409 for cf_cv_library_path_$3 in $cf_search
2411 if test -d "$cf_cv_library_path_$3" ; then
2412 CF_VERBOSE(... testing $cf_cv_library_path_$3)
2413 CPPFLAGS="$cf_test_CPPFLAGS"
2414 LIBS="-l$3 $7 $cf_save_LIBS"
2415 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
2416 AC_TRY_LINK([$1],[$2],[
2417 CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
2418 cf_cv_find_linkage_$3=yes
2419 cf_cv_library_file_$3="-l$3"
2421 CPPFLAGS="$cf_save_CPPFLAGS"
2422 LIBS="$cf_save_LIBS"
2423 LDFLAGS="$cf_save_LDFLAGS"
2427 CPPFLAGS="$cf_save_CPPFLAGS"
2428 LDFLAGS="$cf_save_LDFLAGS"
2432 cf_cv_find_linkage_$3=no
2437 LIBS="$cf_save_LIBS"
2439 if test "$cf_cv_find_linkage_$3" = yes ; then
2441 CF_ADD_INCDIR($cf_cv_header_path_$3)
2442 CF_ADD_LIBDIR($cf_cv_library_path_$3)
2446 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
2449 dnl ---------------------------------------------------------------------------
2450 dnl CF_FIND_SUB_INCDIR version: 3 updated: 2021/01/01 13:31:04
2451 dnl ------------------
2452 dnl Find an include-directory with the given leaf-name. This is useful for
2453 dnl example with FreeBSD ports, which use this convention to distinguish
2454 dnl different versions of the same port.
2455 AC_DEFUN([CF_FIND_SUB_INCDIR],[
2456 CF_SUBDIR_PATH(cf_search,$1,include)
2457 for cf_item in $cf_search
2461 CF_ADD_INCDIR($cf_item)
2466 dnl ---------------------------------------------------------------------------
2467 dnl CF_FIND_SUB_LIBDIR version: 3 updated: 2021/01/01 13:31:04
2468 dnl ------------------
2469 dnl Find a library-directory with the given leaf-name. This is useful for
2470 dnl example with FreeBSD ports, which use this convention to distinguish
2471 dnl different versions of the same port.
2472 AC_DEFUN([CF_FIND_SUB_LIBDIR],[
2473 CF_SUBDIR_PATH(cf_search,$1,lib)
2474 for cf_item in $cf_search
2478 CF_ADD_LIBDIR($cf_item)
2483 dnl ---------------------------------------------------------------------------
2484 dnl CF_FIXUP_ADAFLAGS version: 2 updated: 2015/04/17 21:13:04
2485 dnl -----------------
2486 dnl make ADAFLAGS consistent with CFLAGS
2487 AC_DEFUN([CF_FIXUP_ADAFLAGS],[
2488 AC_MSG_CHECKING(optimization options for ADAFLAGS)
2496 cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[ ]].*//'`
2497 CF_ADD_ADAFLAGS($cf_O_flag)
2500 AC_MSG_RESULT($ADAFLAGS)
2502 dnl ---------------------------------------------------------------------------
2503 dnl CF_FIX_WARNINGS version: 4 updated: 2021/12/16 18:22:31
2505 dnl Warning flags do not belong in CFLAGS, CPPFLAGS, etc. Any of gcc's
2506 dnl "-Werror" flags can interfere with configure-checks. Those go into
2509 dnl $1 = variable name to repair
2510 define([CF_FIX_WARNINGS],[
2511 if test "$GCC" = yes || test "$GXX" = yes
2516 for cf_temp_scan in [$]$1
2518 case "x$cf_temp_scan" in
2520 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
2523 CF_APPEND_TEXT(EXTRA_CFLAGS,$cf_temp_scan)
2526 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
2530 if test "x[$]$1" != "x$cf_temp_flags"
2532 CF_VERBOSE(repairing $1: [$]$1)
2534 CF_VERBOSE(... fixed [$]$1)
2535 CF_VERBOSE(... extra $EXTRA_CFLAGS)
2540 AC_SUBST(EXTRA_CFLAGS)
2542 dnl ---------------------------------------------------------------------------
2543 dnl CF_FOPEN_BIN_R version: 3 updated: 2023/01/05 18:05:46
2545 dnl Check if fopen works when the "b" (binary) flag is added to the mode
2546 dnl parameter. POSIX ignores the "b", which c89 specified. Some very old
2547 dnl systems do not accept it.
2548 AC_DEFUN([CF_FOPEN_BIN_R],[
2549 AC_CACHE_CHECK(if fopen accepts explicit binary mode,cf_cv_fopen_bin_r,[
2551 $ac_includes_default
2555 FILE *fp = fopen("conftest.tmp", "wb");
2559 for (p = 0; p < 256; ++p) {
2563 fp = fopen("conftest.tmp", "rb");
2565 for (p = 0; p < 256; ++p) {
2578 ${cf_cv_main_return:-return} (rc);
2581 [cf_cv_fopen_bin_r=yes],
2582 [cf_cv_fopen_bin_r=no],
2583 [cf_cv_fopen_bin_r=unknown])
2585 test "x$cf_cv_fopen_bin_r" != xno && AC_DEFINE(USE_FOPEN_BIN_R,1,[Define to 1 if fopen accepts explicit binary mode])
2587 dnl ---------------------------------------------------------------------------
2588 dnl CF_FORGET_TOOL version: 1 updated: 2013/04/06 18:03:09
2590 dnl Forget that we saw the given tool.
2591 AC_DEFUN([CF_FORGET_TOOL],[
2592 unset ac_cv_prog_ac_ct_$1
2596 dnl ---------------------------------------------------------------------------
2597 dnl CF_FUNC_DLSYM version: 4 updated: 2015/09/12 14:46:44
2599 dnl Test for dlsym() and related functions, as well as libdl.
2604 AC_DEFUN([CF_FUNC_DLSYM],[
2606 AC_CHECK_FUNC(dlsym,cf_have_dlsym=yes,[
2609 AC_CHECK_LIB(dl,dlsym,[
2611 cf_have_libdl=yes])])
2613 if test "$cf_have_dlsym" = yes ; then
2614 test "$cf_have_libdl" = yes && { CF_ADD_LIB(dl) }
2616 AC_MSG_CHECKING(whether able to link to dl*() functions)
2617 AC_TRY_LINK([#include <dlfcn.h>],[
2619 if ((obj = dlopen("filename", 0)) != 0) {
2620 if (dlsym(obj, "symbolname") == 0) {
2624 AC_DEFINE(HAVE_LIBDL,1,[Define to 1 if we have dl library])],[
2625 AC_MSG_ERROR(Cannot link test program for libdl)])
2628 AC_MSG_ERROR(Cannot find dlsym function)
2631 dnl ---------------------------------------------------------------------------
2632 dnl CF_FUNC_GETTTYNAM version: 2 updated: 2023/01/05 18:06:28
2633 dnl -----------------
2634 dnl Check if the 4.3BSD function getttyname exists, as well as if <ttyent.h>
2635 dnl defines the _PATH_TTYS symbol. If the corresponding file exists, but the
2636 dnl other checks fail, just define HAVE_PATH_TTYS.
2637 AC_DEFUN([CF_FUNC_GETTTYNAM],[
2638 AC_CACHE_CHECK(if _PATH_TTYS is defined in ttyent.h,cf_cv_PATH_TTYS,[
2641 #include <ttyent.h>],[
2642 FILE *fp = fopen(_PATH_TTYS, "r"); (void)fp],
2643 [cf_cv_PATH_TTYS=yes],
2644 [cf_cv_PATH_TTYS=no])])
2646 if test $cf_cv_PATH_TTYS = no
2648 for cf_ttys in /etc/ttytype /etc/ttys
2652 cf_cv_PATH_TTYS=maybe
2653 AC_DEFINE(_PATH_TTYS,$cf_ttys,[define to pathname of file containing mapping from tty name to terminal type])
2659 if test $cf_cv_PATH_TTYS != no
2661 AC_CACHE_CHECK(if _PATH_TTYS file exists,cf_cv_have_PATH_TTYS,[
2663 $ac_includes_default
2668 FILE *fp = fopen(_PATH_TTYS, "r");
2669 ${cf_cv_main_return:-return} (fp == 0);
2671 [cf_cv_have_PATH_TTYS=yes],
2672 [cf_cv_have_PATH_TTYS=no],
2673 [cf_cv_have_PATH_TTYS=unknown])])
2674 test "$cf_cv_have_PATH_TTYS" = no && cf_cv_PATH_TTYS=no
2677 if test $cf_cv_PATH_TTYS != no
2679 AC_DEFINE(HAVE_PATH_TTYS,1,[define to 1 if system can map tty name to terminal type])
2680 AC_CACHE_CHECK(for getttynam,cf_cv_func_getttynam,[
2681 AC_TRY_LINK([#include <ttyent.h>],
2682 [struct ttyent *fp = getttynam("/dev/tty"); (void)fp],
2683 [cf_cv_func_getttynam=yes],
2684 [cf_cv_func_getttynam=no])])
2685 test "$cf_cv_func_getttynam" = yes && AC_DEFINE(HAVE_GETTTYNAM)
2688 dnl ---------------------------------------------------------------------------
2689 dnl CF_FUNC_MEMMOVE version: 10 updated: 2023/01/05 18:51:28
2691 dnl Check for memmove, or a bcopy that can handle overlapping copy. If neither
2692 dnl is found, add our own version of memmove to the list of objects.
2693 AC_DEFUN([CF_FUNC_MEMMOVE],
2695 AC_CHECK_FUNC(memmove,,[
2696 AC_CHECK_FUNC(bcopy,[
2697 AC_CACHE_CHECK(if bcopy does overlapping moves,cf_cv_good_bcopy,[
2699 $ac_includes_default
2702 static char data[] = "abcdefghijklmnopqrstuwwxyz";
2704 bcopy(data, temp, sizeof(data));
2705 bcopy(temp+10, temp, 15);
2706 bcopy(temp+5, temp+15, 10);
2707 ${cf_cv_main_return:-return} (strcmp(temp, "klmnopqrstuwwxypqrstuwwxyz"));
2710 [cf_cv_good_bcopy=yes],
2711 [cf_cv_good_bcopy=no],
2712 [cf_cv_good_bcopy=unknown])
2714 ],[cf_cv_good_bcopy=no])
2715 if test "$cf_cv_good_bcopy" = yes ; then
2716 AC_DEFINE(USE_OK_BCOPY,1,[Define to 1 to use bcopy when memmove is unavailable])
2718 AC_DEFINE(USE_MY_MEMMOVE,1,[Define to 1 to use replacement function when memmove is unavailable])
2721 dnl ---------------------------------------------------------------------------
2722 dnl CF_FUNC_NANOSLEEP version: 6 updated: 2023/01/05 18:51:33
2723 dnl -----------------
2724 dnl Check for existence of workable nanosleep() function. Some systems, e.g.,
2725 dnl AIX 4.x, provide a non-working version.
2726 AC_DEFUN([CF_FUNC_NANOSLEEP],[
2727 AC_CACHE_CHECK(if nanosleep really works,cf_cv_func_nanosleep,[
2729 $ac_includes_default
2734 #ifdef HAVE_SYS_TIME_H
2735 #include <sys/time.h>
2739 struct timespec ts1, ts2;
2742 ts1.tv_nsec = 750000000;
2746 code = nanosleep(&ts1, &ts2); /* on failure errno is ENOSYS. */
2747 ${cf_cv_main_return:-return}(code != 0);
2750 [cf_cv_func_nanosleep=yes],
2751 [cf_cv_func_nanosleep=no],
2752 [cf_cv_func_nanosleep=unknown])])
2754 test "$cf_cv_func_nanosleep" = "yes" && AC_DEFINE(HAVE_NANOSLEEP,1,[Define to 1 if we have nanosleep()])
2756 dnl ---------------------------------------------------------------------------
2757 dnl CF_FUNC_OPENPTY version: 6 updated: 2021/01/01 13:31:04
2759 dnl Check for openpty() function, along with <pty.h> header. It may need the
2760 dnl "util" library as well.
2761 AC_DEFUN([CF_FUNC_OPENPTY],
2763 AC_CHECK_LIB(util,openpty,cf_cv_lib_util=yes,cf_cv_lib_util=no)
2764 AC_CACHE_CHECK(for openpty header,cf_cv_func_openpty,[
2765 cf_save_LIBS="$LIBS"
2766 test "$cf_cv_lib_util" = yes && { CF_ADD_LIB(util) }
2767 for cf_header in pty.h libutil.h util.h
2770 #include <$cf_header>
2772 int x = openpty((int *)0, (int *)0, (char *)0,
2773 (struct termios *)0, (struct winsize *)0);
2775 cf_cv_func_openpty=$cf_header
2778 cf_cv_func_openpty=no
2781 LIBS="$cf_save_LIBS"
2784 dnl ---------------------------------------------------------------------------
2785 dnl CF_FUNC_POLL version: 11 updated: 2023/01/05 18:51:40
2787 dnl See if the poll function really works. Some platforms have poll(), but
2788 dnl it does not work for terminals or files.
2789 AC_DEFUN([CF_FUNC_POLL],[
2790 tty >/dev/null 2>&1 || { AC_CHECK_FUNCS(posix_openpt) }
2791 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[
2793 $ac_includes_default
2800 #include <sys/poll.h>
2804 struct pollfd myfds;
2807 /* check for Darwin bug with respect to "devices" */
2808 myfds.fd = open("/dev/null", 1); /* O_WRONLY */
2811 myfds.events = POLLIN;
2814 ret = poll(&myfds, 1, 100);
2816 if (ret < 0 || (myfds.revents & POLLNVAL)) {
2821 fd = open("/dev/tty", 2); /* O_RDWR */
2823 #ifdef HAVE_POSIX_OPENPT
2825 fd = posix_openpt(O_RDWR);
2830 /* also check with standard input */
2832 myfds.events = POLLIN;
2834 ret = poll(&myfds, 1, 100);
2839 ${cf_cv_main_return:-return}(ret < 0);
2841 [cf_cv_working_poll=yes],
2842 [cf_cv_working_poll=no],
2843 [cf_cv_working_poll=unknown])])
2844 test "$cf_cv_working_poll" = "yes" && AC_DEFINE(HAVE_WORKING_POLL,1,[Define to 1 if the poll function seems to work])
2846 dnl ---------------------------------------------------------------------------
2847 dnl CF_FUNC_TERMIOS version: 3 updated: 2012/10/06 17:56:13
2849 dnl Some old/broken variations define tcgetattr() only as a macro in
2851 AC_DEFUN([CF_FUNC_TERMIOS],[
2852 AC_REQUIRE([CF_STRUCT_TERMIOS])
2853 AC_CACHE_CHECK(for tcgetattr, cf_cv_have_tcgetattr,[
2855 #include <sys/types.h>
2856 #ifdef HAVE_UNISTD_H
2859 #ifdef HAVE_TERMIOS_H
2860 #include <termios.h>
2861 #define TTY struct termios
2863 #ifdef HAVE_TERMIO_H
2865 #define TTY struct termio
2870 tcgetattr(1, &foo);],
2871 [cf_cv_have_tcgetattr=yes],
2872 [cf_cv_have_tcgetattr=no])])
2873 test "$cf_cv_have_tcgetattr" = yes && AC_DEFINE(HAVE_TCGETATTR,1,[Define to 1 if we have tcgetattr])
2875 dnl ---------------------------------------------------------------------------
2876 dnl CF_FUNC_VSSCANF version: 7 updated: 2021/01/01 13:31:04
2878 dnl Check for vsscanf() function, which is in c9x but generally not in earlier
2879 dnl versions of C. It is in the GNU C library, and can often be simulated by
2880 dnl other functions.
2881 AC_DEFUN([CF_FUNC_VSSCANF],
2883 AC_CACHE_CHECK(for vsscanf function or workaround,cf_cv_func_vsscanf,[
2886 #include <stdio.h>],[
2888 vsscanf("from", "%d", ap)],[cf_cv_func_vsscanf=vsscanf],[
2891 #include <stdio.h>],[
2895 strbuf._flag = _IOREAD;
2896 strbuf._ptr = strbuf._base = (unsigned char *) str;
2897 strbuf._cnt = strlen(str);
2898 strbuf._file = _NFILE;
2899 return (vfscanf(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=vfscanf],[
2902 #include <stdio.h>],[
2906 strbuf._flag = _IOREAD;
2907 strbuf._ptr = strbuf._base = (unsigned char *) str;
2908 strbuf._cnt = strlen(str);
2909 strbuf._file = _NFILE;
2910 return (_doscan(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=_doscan],[
2911 cf_cv_func_vsscanf=no])])])])
2913 case "$cf_cv_func_vsscanf" in
2914 (vsscanf) AC_DEFINE(HAVE_VSSCANF,1,[Define to 1 if we have vsscanf]);;
2915 (vfscanf) AC_DEFINE(HAVE_VFSCANF,1,[Define to 1 if we have vfscanf]);;
2916 (_doscan) AC_DEFINE(HAVE__DOSCAN,1,[Define to 1 if we have _doscan]);;
2920 dnl ---------------------------------------------------------------------------
2921 dnl CF_GCC_ATTRIBUTES version: 24 updated: 2021/03/20 12:00:25
2922 dnl -----------------
2923 dnl Test for availability of useful gcc __attribute__ directives to quiet
2924 dnl compiler warnings. Though useful, not all are supported -- and contrary
2925 dnl to documentation, unrecognized directives cause older compilers to barf.
2926 AC_DEFUN([CF_GCC_ATTRIBUTES],
2927 [AC_REQUIRE([AC_PROG_FGREP])dnl
2928 AC_REQUIRE([CF_C11_NORETURN])dnl
2930 if test "$GCC" = yes || test "$GXX" = yes
2932 cat > conftest.i <<EOF
2934 #define GCC_PRINTF 0
2939 #ifndef GCC_NORETURN
2940 #define GCC_NORETURN /* nothing */
2943 #define GCC_UNUSED /* nothing */
2946 if test "$GCC" = yes
2948 AC_CHECKING([for $CC __attribute__ directives])
2949 cat > "conftest.$ac_ext" <<EOF
2950 #line __oline__ "${as_me:-configure}"
2952 #include "confdefs.h"
2953 #include "conftest.h"
2954 #include "conftest.i"
2956 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
2958 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
2961 #define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
2963 #define GCC_SCANFLIKE(fmt,var) /*nothing*/
2965 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
2966 extern GCC_NORETURN void oops(char *,...) GCC_PRINTFLIKE(1,2);
2967 extern GCC_NORETURN void foo(void);
2968 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { (void)argc; (void)argv; return 0; }
2970 cf_printf_attribute=no
2971 cf_scanf_attribute=no
2972 for cf_attribute in scanf printf unused noreturn
2974 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
2975 cf_directive="__attribute__(($cf_attribute))"
2976 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
2978 case "$cf_attribute" in
2980 cf_printf_attribute=yes
2981 cat >conftest.h <<EOF
2982 #define GCC_$cf_ATTRIBUTE 1
2986 cf_scanf_attribute=yes
2987 cat >conftest.h <<EOF
2988 #define GCC_$cf_ATTRIBUTE 1
2992 cat >conftest.h <<EOF
2993 #define GCC_$cf_ATTRIBUTE $cf_directive
2998 if AC_TRY_EVAL(ac_compile); then
2999 test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
3000 cat conftest.h >>confdefs.h
3001 case "$cf_attribute" in
3003 AC_DEFINE_UNQUOTED(GCC_NORETURN,$cf_directive,[Define to noreturn-attribute for gcc])
3006 cf_value='/* nothing */'
3007 if test "$cf_printf_attribute" != no ; then
3008 cf_value='__attribute__((format(printf,fmt,var)))'
3009 AC_DEFINE(GCC_PRINTF,1,[Define to 1 if the compiler supports gcc-like printf attribute.])
3011 AC_DEFINE_UNQUOTED(GCC_PRINTFLIKE(fmt,var),$cf_value,[Define to printf-attribute for gcc])
3014 cf_value='/* nothing */'
3015 if test "$cf_scanf_attribute" != no ; then
3016 cf_value='__attribute__((format(scanf,fmt,var)))'
3017 AC_DEFINE(GCC_SCANF,1,[Define to 1 if the compiler supports gcc-like scanf attribute.])
3019 AC_DEFINE_UNQUOTED(GCC_SCANFLIKE(fmt,var),$cf_value,[Define to sscanf-attribute for gcc])
3022 AC_DEFINE_UNQUOTED(GCC_UNUSED,$cf_directive,[Define to unused-attribute for gcc])
3028 ${FGREP-fgrep} define conftest.i >>confdefs.h
3033 dnl ---------------------------------------------------------------------------
3034 dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
3036 dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
3037 dnl compatible), attempt to determine if icc/clang is actually used.
3038 AC_DEFUN([CF_GCC_VERSION],[
3039 AC_REQUIRE([AC_PROG_CC])
3041 if test "$GCC" = yes ; then
3042 AC_MSG_CHECKING(version of $CC)
3043 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC[[^)]]*) //' -e 's/^.*(Debian[[^)]]*) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
3044 test -z "$GCC_VERSION" && GCC_VERSION=unknown
3045 AC_MSG_RESULT($GCC_VERSION)
3047 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
3048 CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
3050 dnl ---------------------------------------------------------------------------
3051 dnl CF_GCC_WARNINGS version: 41 updated: 2021/01/01 16:53:59
3053 dnl Check if the compiler supports useful warning options. There's a few that
3054 dnl we don't use, simply because they're too noisy:
3056 dnl -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
3057 dnl -Winline (usually not worthwhile)
3058 dnl -Wredundant-decls (system headers make this too noisy)
3059 dnl -Wtraditional (combines too many unrelated messages, only a few useful)
3060 dnl -Wwrite-strings (too noisy, but should review occasionally). This
3061 dnl is enabled for ncurses using "--enable-const".
3065 dnl $1 is an optional list of gcc warning flags that a particular
3066 dnl application might want to use, e.g., "no-unused" for
3069 dnl If $with_ext_const is "yes", add a check for -Wwrite-strings
3071 AC_DEFUN([CF_GCC_WARNINGS],
3073 AC_REQUIRE([CF_GCC_VERSION])
3074 if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
3075 cat > "conftest.$ac_ext" <<EOF
3076 #line __oline__ "${as_me:-configure}"
3077 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
3079 if test "$INTEL_COMPILER" = yes
3081 # The "-wdXXX" options suppress warnings:
3082 # remark #1419: external declaration in primary source file
3083 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3084 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
3085 # remark #193: zero used for undefined preprocessing identifier
3086 # remark #593: variable "curs_sb_left_arrow" was set but never used
3087 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
3088 # remark #869: parameter "tw" was never referenced
3089 # remark #981: operands are evaluated in unspecified order
3090 # warning #279: controlling expression is constant
3092 AC_CHECKING([for $CC warning options])
3093 cf_save_CFLAGS="$CFLAGS"
3094 EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
3106 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
3107 if AC_TRY_EVAL(ac_compile); then
3108 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3109 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
3112 CFLAGS="$cf_save_CFLAGS"
3113 elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown"
3115 AC_CHECKING([for $CC warning options])
3116 cf_save_CFLAGS="$CFLAGS"
3118 test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
3119 cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs"
3120 test "x$CLANG_COMPILER" = xyes && cf_gcc_warnings=
3121 for cf_opt in W Wall \
3122 Wbad-function-cast \
3125 Wdeclaration-after-statement \
3128 Wmissing-declarations \
3129 Wmissing-prototypes \
3133 Wstrict-prototypes \
3134 Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST $1
3136 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
3137 if AC_TRY_EVAL(ac_compile); then
3138 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3141 case "$GCC_VERSION" in
3143 CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
3148 case "$GCC_VERSION" in
3150 CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
3155 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
3158 CFLAGS="$cf_save_CFLAGS"
3162 AC_SUBST(EXTRA_CFLAGS)
3164 dnl ---------------------------------------------------------------------------
3165 dnl CF_GETOPT_HEADER version: 8 updated: 2021/06/19 19:16:16
3166 dnl ----------------
3167 dnl Check for getopt's variables which are commonly defined in stdlib.h,
3168 dnl unistd.h or (nonstandard) in getopt.h
3169 AC_DEFUN([CF_GETOPT_HEADER],
3171 AC_HAVE_HEADERS(unistd.h getopt.h)
3172 AC_CACHE_CHECK(for header declaring getopt variables,cf_cv_getopt_header,[
3173 cf_cv_getopt_header=none
3174 for cf_header in stdio.h stdlib.h unistd.h getopt.h
3177 #include <$cf_header>],
3178 [int x = optind; char *y = optarg; (void)x; (void)y],
3179 [cf_cv_getopt_header=$cf_header
3183 if test "$cf_cv_getopt_header" != none ; then
3184 AC_DEFINE(HAVE_GETOPT_HEADER,1,[Define to 1 if getopt variables are declared in header])
3186 if test "$cf_cv_getopt_header" = getopt.h ; then
3187 AC_DEFINE(NEED_GETOPT_H,1,[Define to 1 if we must include getopt.h])
3190 dnl ---------------------------------------------------------------------------
3191 dnl CF_GNATPREP_OPT_T version: 1 updated: 2014/08/02 18:37:25
3192 dnl -----------------
3193 AC_DEFUN([CF_GNATPREP_OPT_T],[
3194 AC_CACHE_CHECK(if GNATPREP supports -T option,cf_cv_gnatprep_opt_t,[
3195 cf_cv_gnatprep_opt_t=no
3196 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
3198 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
3199 AC_SUBST(GNATPREP_OPTS)
3201 dnl ---------------------------------------------------------------------------
3202 dnl CF_GNAT_GENERICS version: 7 updated: 2021/01/01 13:31:04
3203 dnl ----------------
3204 AC_DEFUN([CF_GNAT_GENERICS],
3206 AC_REQUIRE([CF_GNAT_VERSION])
3208 AC_MSG_CHECKING(if GNAT supports generics)
3209 case "$cf_cv_gnat_version" in
3210 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
3211 cf_gnat_generics=yes
3217 AC_MSG_RESULT($cf_gnat_generics)
3219 if test "$cf_gnat_generics" = yes
3221 cf_compile_generics=generics
3222 cf_generic_objects="\${GENOBJS}"
3224 cf_compile_generics=
3228 AC_SUBST(cf_compile_generics)
3229 AC_SUBST(cf_generic_objects)
3231 dnl ---------------------------------------------------------------------------
3232 dnl CF_GNAT_PROJECTS version: 13 updated: 2021/01/02 17:09:14
3233 dnl ----------------
3234 dnl GNAT projects are configured with ".gpr" project files.
3235 dnl GNAT libraries are a further development, using the project feature.
3236 AC_DEFUN([CF_GNAT_PROJECTS],
3238 AC_REQUIRE([CF_GNAT_VERSION])
3239 AC_REQUIRE([CF_DISABLE_GNAT_PROJECTS])
3241 cf_gnat_libraries=no
3244 if test "$enable_gnat_projects" != no ; then
3245 AC_MSG_CHECKING(if GNAT supports project files)
3246 case "$cf_cv_gnat_version" in
3250 case "$cf_cv_system_name" in
3254 rm -rf ./conftest* ./*~conftest*
3255 if mkdir conftest.src conftest.bin conftest.lib
3258 rm -rf ./conftest* ./*~conftest*
3259 cat >>library.gpr <<CF_EOF
3261 Kind := External ("LIB_KIND");
3262 for Library_Name use "ConfTest";
3263 for Object_Dir use ".";
3264 for Library_ALI_Dir use External("LIBRARY_DIR");
3265 for Library_Version use External ("SONAME");
3266 for Library_Kind use Kind;
3267 for Library_Dir use External("BUILD_DIR");
3268 Source_Dir := External ("SOURCE_DIR");
3269 for Source_Dirs use (Source_Dir);
3272 cat >>confpackage.ads <<CF_EOF
3273 package ConfPackage is
3277 cat >>confpackage.adb <<CF_EOF
3279 package body ConfPackage is
3280 procedure conftest is
3282 Text_IO.Put ("Hello World");
3287 if ( "$cf_ada_make" $ADAFLAGS \
3289 -XBUILD_DIR="`cd ../conftest.bin;pwd`" \
3290 -XLIBRARY_DIR="`cd ../conftest.lib;pwd`" \
3291 -XSOURCE_DIR="`pwd`" \
3292 -XSONAME=libConfTest.so.1 \
3293 -XLIB_KIND=static 1>&AC_FD_CC 2>&1 ) ; then
3294 cf_gnat_projects=yes
3298 if test -f conftest.lib/confpackage.ali
3300 cf_gnat_libraries=yes
3302 rm -rf ./conftest* ./*~conftest*
3307 AC_MSG_RESULT($cf_gnat_projects)
3308 fi # enable_gnat_projects
3310 if test "$cf_gnat_projects" = yes
3312 AC_MSG_CHECKING(if GNAT supports libraries)
3313 AC_MSG_RESULT($cf_gnat_libraries)
3316 USE_OLD_MAKERULES=""
3317 USE_GNAT_PROJECTS="#"
3318 USE_GNAT_MAKE_GPR="#"
3319 USE_GNAT_GPRBUILD="#"
3321 if test "$cf_gnat_projects" = yes
3323 USE_OLD_MAKERULES="#"
3324 USE_GNAT_PROJECTS=""
3325 if test "$cf_cv_VERSION_GPRBUILD" != no
3327 USE_GNAT_GPRBUILD=""
3328 elif test "$cf_cv_VERSION_GNATMAKE" != no
3330 USE_GNAT_MAKE_GPR=""
3332 AC_MSG_WARN(use old makefile rules since tools are missing)
3336 if test "$cf_gnat_libraries" = yes
3338 USE_GNAT_LIBRARIES=""
3340 USE_GNAT_LIBRARIES="#"
3343 AC_SUBST(USE_OLD_MAKERULES)
3344 AC_SUBST(USE_GNAT_PROJECTS)
3345 AC_SUBST(USE_GNAT_LIBRARIES)
3346 AC_SUBST(USE_GNAT_MAKE_GPR)
3347 AC_SUBST(USE_GNAT_GPRBUILD)
3349 dnl ---------------------------------------------------------------------------
3350 dnl CF_GNAT_SIGINT version: 2 updated: 2021/01/01 13:31:04
3352 dnl Check if gnat supports SIGINT, and presumably tasking. For the latter, it
3353 dnl is noted that gnat may compile a tasking unit even for configurations which
3354 dnl fail at runtime.
3355 AC_DEFUN([CF_GNAT_SIGINT],[
3356 AC_CACHE_CHECK(if GNAT supports SIGINT,cf_cv_gnat_sigint,[
3357 CF_GNAT_TRY_LINK([with Ada.Interrupts.Names;
3361 pragma Warnings (Off); -- the next pragma exists since 3.11p
3362 pragma Unreserve_All_Interrupts;
3363 pragma Warnings (On);
3365 protected Process is
3367 function Continue return Boolean;
3368 pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT);
3370 Done : Boolean := False;
3374 [package body ConfTest is
3375 protected body Process is
3380 function Continue return Boolean is
3386 [cf_cv_gnat_sigint=yes],
3387 [cf_cv_gnat_sigint=no])])
3389 if test "$cf_cv_gnat_sigint" = yes ; then
3394 AC_SUBST(USE_GNAT_SIGINT)
3396 dnl ---------------------------------------------------------------------------
3397 dnl CF_GNAT_TRY_LINK version: 4 updated: 2021/01/01 13:31:04
3398 dnl ----------------
3399 dnl Verify that a test program compiles/links with GNAT.
3400 dnl $cf_ada_make is set to the program that compiles/links
3401 dnl $ADAFLAGS may be set to the GNAT flags.
3403 dnl $1 is the text of the spec
3404 dnl $2 is the text of the body
3405 dnl $3 is the shell command to execute if successful
3406 dnl $4 is the shell command to execute if not successful
3407 AC_DEFUN([CF_GNAT_TRY_LINK],
3409 rm -rf ./conftest* ./*~conftest*
3410 cat >>conftest.ads <<CF_EOF
3413 cat >>conftest.adb <<CF_EOF
3416 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3417 ifelse($3,, :,[ $3])
3421 rm -rf ./conftest* ./*~conftest*
3423 dnl ---------------------------------------------------------------------------
3424 dnl CF_GNAT_TRY_RUN version: 6 updated: 2021/01/01 13:31:04
3426 dnl Verify that a test program compiles and runs with GNAT
3427 dnl $cf_ada_make is set to the program that compiles/links
3428 dnl $ADAFLAGS may be set to the GNAT flags.
3430 dnl $1 is the text of the spec
3431 dnl $2 is the text of the body
3432 dnl $3 is the shell command to execute if successful
3433 dnl $4 is the shell command to execute if not successful
3434 AC_DEFUN([CF_GNAT_TRY_RUN],
3436 rm -rf ./conftest* ./*~conftest*
3437 cat >>conftest.ads <<CF_EOF
3440 cat >>conftest.adb <<CF_EOF
3443 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3444 if ( ./conftest 1>&AC_FD_CC 2>&1 ) ; then
3445 ifelse($3,, :,[ $3])
3452 rm -rf ./conftest* ./*~conftest*
3454 dnl ---------------------------------------------------------------------------
3455 dnl CF_GNAT_VERSION version: 22 updated: 2019/12/31 08:53:54
3457 dnl $1 = cache variable to update
3458 dnl $2 = program name
3459 dnl Verify version of GNAT or related tool
3460 AC_DEFUN([CF_GNAT_VERSION],
3462 AC_CACHE_CHECK(for ifelse($2,,gnat,$2) version, cf_cv_gnat_version,[
3463 cf_cv_gnat_version=`ifelse($2,,${cf_ada_make:-gnatmake},$2) --version 2>&1 | \
3464 grep '[[0-9]].[[0-9]][[0-9]]*' |\
3465 sed -e '2,$d' -e 's/[[^0-9 \.]]//g' -e 's/^[[ ]]*//' -e 's/ .*//'`
3467 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no
3468 ifelse($1,,,[eval $1=$cf_cv_gnat_version; unset cf_cv_gnat_version])
3470 dnl ---------------------------------------------------------------------------
3471 dnl CF_GNU_SOURCE version: 10 updated: 2018/12/10 20:09:41
3473 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
3474 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend. This is a defect
3475 dnl (or misfeature) of glibc2, which breaks portability of many applications,
3476 dnl since it is interwoven with GNU extensions.
3478 dnl Well, yes we could work around it...
3481 dnl $1 is the nominal value for _XOPEN_SOURCE
3482 AC_DEFUN([CF_GNU_SOURCE],
3484 cf_gnu_xopen_source=ifelse($1,,500,$1)
3486 AC_CACHE_CHECK(if this is the GNU C library,cf_cv_gnu_library,[
3487 AC_TRY_COMPILE([#include <sys/types.h>],[
3488 #if __GLIBC__ > 0 && __GLIBC_MINOR__ >= 0
3490 #elif __NEWLIB__ > 0 && __NEWLIB_MINOR__ >= 0
3493 # error not GNU C library
3495 [cf_cv_gnu_library=yes],
3496 [cf_cv_gnu_library=no])
3499 if test x$cf_cv_gnu_library = xyes; then
3501 # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
3502 # was changed to help a little. newlib incorporated the change about 4
3504 AC_CACHE_CHECK(if _DEFAULT_SOURCE can be used as a basis,cf_cv_gnu_library_219,[
3506 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3507 AC_TRY_COMPILE([#include <sys/types.h>],[
3508 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 19) || (__GLIBC__ > 2)
3510 #elif (__NEWLIB__ == 2 && __NEWLIB_MINOR__ >= 4) || (__GLIBC__ > 3)
3513 # error GNU C library __GLIBC__.__GLIBC_MINOR__ is too old
3515 [cf_cv_gnu_library_219=yes],
3516 [cf_cv_gnu_library_219=no])
3520 if test "x$cf_cv_gnu_library_219" = xyes; then
3522 AC_CACHE_CHECK(if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE,cf_cv_gnu_dftsrc_219,[
3523 CF_ADD_CFLAGS(-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=$cf_gnu_xopen_source)
3526 #include <sys/types.h>
3528 #if (_XOPEN_SOURCE >= $cf_gnu_xopen_source) && (MB_LEN_MAX > 1)
3531 # error GNU C library is too old
3533 [cf_cv_gnu_dftsrc_219=yes],
3534 [cf_cv_gnu_dftsrc_219=no])
3536 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
3538 cf_cv_gnu_dftsrc_219=maybe
3541 if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
3543 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
3544 AC_TRY_COMPILE([#include <sys/types.h>],[
3545 #ifndef _XOPEN_SOURCE
3546 #error expected _XOPEN_SOURCE to be defined
3548 [cf_cv_gnu_source=no],
3549 [cf_save="$CPPFLAGS"
3550 CF_ADD_CFLAGS(-D_GNU_SOURCE)
3551 AC_TRY_COMPILE([#include <sys/types.h>],[
3552 #ifdef _XOPEN_SOURCE
3553 #error expected _XOPEN_SOURCE to be undefined
3555 [cf_cv_gnu_source=no],
3556 [cf_cv_gnu_source=yes])
3561 if test "$cf_cv_gnu_source" = yes
3563 AC_CACHE_CHECK(if we should also define _DEFAULT_SOURCE,cf_cv_default_source,[
3564 CF_APPEND_TEXT(CPPFLAGS,-D_GNU_SOURCE)
3565 AC_TRY_COMPILE([#include <sys/types.h>],[
3566 #ifdef _DEFAULT_SOURCE
3567 #error expected _DEFAULT_SOURCE to be undefined
3569 [cf_cv_default_source=no],
3570 [cf_cv_default_source=yes])
3572 if test "$cf_cv_default_source" = yes
3574 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3581 dnl ---------------------------------------------------------------------------
3582 dnl CF_GPP_LIBRARY version: 13 updated: 2021/01/01 13:31:04
3584 dnl If we're trying to use g++, test if libg++ is installed (a rather common
3585 dnl problem :-). If we have the compiler but no library, we'll be able to
3586 dnl configure, but won't be able to build the c++ demo program.
3587 AC_DEFUN([CF_GPP_LIBRARY],
3589 cf_cxx_library=unknown
3590 case "$cf_cv_system_name" in
3598 if test "$GXX" = yes; then
3599 AC_MSG_CHECKING([for lib$cf_gpp_libname])
3601 CF_ADD_LIB($cf_gpp_libname)
3603 #include <$cf_gpp_libname/builtin.h>
3605 [two_arg_error_handler_t foo2 = lib_error_handler],
3607 CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3608 if test "$cf_gpp_libname" = cpp ; then
3609 AC_DEFINE(HAVE_GPP_BUILTIN_H,1,[Define to 1 if we have gpp builtin.h])
3611 AC_DEFINE(HAVE_GXX_BUILTIN_H,1,[Define to 1 if we have g++ builtin.h])
3614 #include <builtin.h>
3616 [two_arg_error_handler_t foo2 = lib_error_handler],
3618 CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3619 AC_DEFINE(HAVE_BUILTIN_H,1,[Define to 1 if we have builtin.h])],
3620 [cf_cxx_library=no])])
3622 AC_MSG_RESULT($cf_cxx_library)
3625 dnl ---------------------------------------------------------------------------
3626 dnl CF_GXX_VERSION version: 8 updated: 2017/02/11 14:48:57
3628 dnl Check for version of g++
3629 AC_DEFUN([CF_GXX_VERSION],[
3630 AC_REQUIRE([AC_PROG_CPP])
3632 if test "$GXX" = yes; then
3633 AC_MSG_CHECKING(version of ${CXX:-g++})
3634 GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
3635 if test -z "$GXX_VERSION"
3640 AC_MSG_RESULT($GXX_VERSION)
3643 dnl ---------------------------------------------------------------------------
3644 dnl CF_GXX_WARNINGS version: 11 updated: 2021/01/08 16:50:55
3646 dnl Check if the compiler supports useful warning options.
3648 dnl Most of gcc's options apply to g++, except:
3649 dnl -Wbad-function-cast
3650 dnl -Wmissing-declarations
3651 dnl -Wnested-externs
3653 dnl Omit a few (for now):
3657 dnl $1 is an optional list of g++ warning flags that a particular
3658 dnl application might want to use, e.g., "no-unused" for
3661 dnl If $with_ext_const is "yes", add a check for -Wwrite-strings
3663 AC_DEFUN([CF_GXX_WARNINGS],
3666 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS)
3667 CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS)
3669 AC_REQUIRE([CF_GXX_VERSION])
3674 cat > conftest.$ac_ext <<EOF
3675 #line __oline__ "configure"
3676 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
3679 if test "$INTEL_CPLUSPLUS" = yes
3681 # The "-wdXXX" options suppress warnings:
3682 # remark #1419: external declaration in primary source file
3683 # remark #1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3684 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3685 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
3686 # remark #193: zero used for undefined preprocessing identifier
3687 # remark #593: variable "curs_sb_left_arrow" was set but never used
3688 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
3689 # remark #869: parameter "tw" was never referenced
3690 # remark #981: operands are evaluated in unspecified order
3691 # warning #269: invalid format string conversion
3693 AC_CHECKING([for $CC warning options])
3694 cf_save_CXXFLAGS="$CXXFLAGS"
3695 EXTRA_CXXFLAGS="-Wall"
3708 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
3709 if AC_TRY_EVAL(ac_compile); then
3710 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3711 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3714 CXXFLAGS="$cf_save_CXXFLAGS"
3716 elif test "$GXX" = yes
3718 AC_CHECKING([for $CXX warning options])
3719 cf_save_CXXFLAGS="$CXXFLAGS"
3720 EXTRA_CXXFLAGS="-W -Wall"
3721 cf_gxx_extra_warnings=""
3722 test "$with_ext_const" = yes && cf_gxx_extra_warnings="Wwrite-strings"
3723 case "$GXX_VERSION" in
3727 cf_gxx_extra_warnings="$cf_gxx_extra_warnings Weffc++"
3734 Wignored-qualifiers \
3736 Woverloaded-virtual \
3744 Wundef $cf_gxx_extra_warnings $1
3746 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
3747 if AC_TRY_EVAL(ac_compile); then
3748 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3749 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3751 test -n "$verbose" && AC_MSG_RESULT(... no -$cf_opt)
3754 CXXFLAGS="$cf_save_CXXFLAGS"
3759 AC_SUBST(EXTRA_CXXFLAGS)
3761 dnl ---------------------------------------------------------------------------
3762 dnl CF_HASHED_DB version: 7 updated: 2015/04/18 08:56:57
3764 dnl Look for an instance of the Berkeley hashed database.
3766 dnl $1 = optional parameter, to specify install-prefix for the database.
3767 AC_DEFUN([CF_HASHED_DB],
3774 if test -d "$1" ; then
3775 CF_ADD_INCDIR($1/include)
3776 CF_ADD_LIBDIR($1/lib)
3780 AC_MSG_WARN(no such directory $1)
3783 CF_FIND_SUB_INCDIR($1)
3784 CF_FIND_SUB_LIBDIR($1)
3790 AC_CHECK_HEADER(db.h,[
3791 CF_HASHED_DB_VERSION
3792 if test "$cf_cv_hashed_db_version" = unknown ; then
3793 AC_MSG_ERROR(Cannot determine version of db)
3796 if test "$cf_cv_hashed_db_libs" = unknown ; then
3797 AC_MSG_ERROR(Cannot determine library for db)
3798 elif test "$cf_cv_hashed_db_libs" != default ; then
3799 CF_ADD_LIB($cf_cv_hashed_db_libs)
3803 AC_MSG_ERROR(Cannot find db.h)
3806 dnl ---------------------------------------------------------------------------
3807 dnl CF_HASHED_DB_LIBS version: 10 updated: 2021/01/02 17:09:14
3808 dnl -----------------
3809 dnl Given that we have the header and version for hashed database, find the
3810 dnl library information.
3811 AC_DEFUN([CF_HASHED_DB_LIBS],
3813 AC_CACHE_CHECK(for db libraries, cf_cv_hashed_db_libs,[
3814 cf_cv_hashed_db_libs=unknown
3815 for cf_db_libs in "" db$cf_cv_hashed_db_version db-$cf_cv_hashed_db_version db ''
3817 cf_save_libs="$LIBS"
3818 if test -n "$cf_db_libs"; then
3819 CF_ADD_LIB($cf_db_libs)
3821 CF_MSG_LOG(checking for library $cf_db_libs)
3823 $ac_includes_default
3826 char *path = "/tmp/foo";
3827 #ifdef DB_VERSION_MAJOR
3828 #if DB_VERSION_MAJOR >= 4
3830 db_create(&result, NULL, 0);
3831 result->open(result,
3838 #elif DB_VERSION_MAJOR >= 3
3840 db_create(&result, NULL, 0);
3841 result->open(result,
3847 #elif DB_VERSION_MAJOR >= 2
3856 #endif /* DB_VERSION_MAJOR */
3858 DB *result = dbopen(path,
3864 ${cf_cv_main_return:-return}(result != 0)
3866 if test -n "$cf_db_libs" ; then
3867 cf_cv_hashed_db_libs=$cf_db_libs
3869 cf_cv_hashed_db_libs=default
3871 LIBS="$cf_save_libs"
3874 LIBS="$cf_save_libs"
3878 dnl ---------------------------------------------------------------------------
3879 dnl CF_HASHED_DB_VERSION version: 4 updated: 2014/04/12 16:47:01
3880 dnl --------------------
3881 dnl Given that we have the header file for hashed database, find the version
3883 AC_DEFUN([CF_HASHED_DB_VERSION],
3885 AC_CACHE_CHECK(for version of db, cf_cv_hashed_db_version,[
3886 cf_cv_hashed_db_version=unknown
3888 for cf_db_version in 1 2 3 4 5 6
3890 CF_MSG_LOG(checking for db version $cf_db_version)
3892 $ac_includes_default
3895 #ifdef DB_VERSION_MAJOR
3896 /* db2 (DB_VERSION_MAJOR=2) has also DB_VERSION_MINOR, tested with 7 */
3897 #if $cf_db_version == DB_VERSION_MAJOR
3903 #if $cf_db_version == 1
3904 /* ok: assuming this is DB 1.8.5 */
3910 cf_cv_hashed_db_version=$cf_db_version
3916 dnl ---------------------------------------------------------------------------
3917 dnl CF_HEADER_PATH version: 15 updated: 2021/01/01 13:31:04
3919 dnl Construct a search-list of directories for a nonstandard header-file
3922 dnl $1 = the variable to return as result
3923 dnl $2 = the package name
3924 AC_DEFUN([CF_HEADER_PATH],
3928 # collect the current set of include-directories from compiler flags
3929 cf_header_path_list=""
3930 if test -n "${CFLAGS}${CPPFLAGS}" ; then
3931 for cf_header_path in $CPPFLAGS $CFLAGS
3933 case "$cf_header_path" in
3935 cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
3936 CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
3937 cf_header_path_list="$cf_header_path_list [$]$1"
3943 # add the variations for the package we are looking for
3944 CF_SUBDIR_PATH($1,$2,include)
3946 test "$includedir" != NONE && \
3947 test "$includedir" != "/usr/include" && \
3948 test -d "$includedir" && {
3949 test -d "$includedir" && $1="[$]$1 $includedir"
3950 test -d "$includedir/$2" && $1="[$]$1 $includedir/$2"
3953 test "$oldincludedir" != NONE && \
3954 test "$oldincludedir" != "/usr/include" && \
3955 test -d "$oldincludedir" && {
3956 test -d "$oldincludedir" && $1="[$]$1 $oldincludedir"
3957 test -d "$oldincludedir/$2" && $1="[$]$1 $oldincludedir/$2"
3960 $1="[$]$1 $cf_header_path_list"
3962 dnl ---------------------------------------------------------------------------
3963 dnl CF_HELP_MESSAGE version: 4 updated: 2019/12/31 08:53:54
3965 dnl Insert text into the help-message, for readability, from AC_ARG_WITH.
3966 AC_DEFUN([CF_HELP_MESSAGE],
3967 [CF_ACVERSION_CHECK(2.53,[],[
3968 AC_DIVERT_HELP($1)])dnl
3970 dnl ---------------------------------------------------------------------------
3971 dnl CF_INCLUDE_DIRS version: 10 updated: 2014/09/19 20:58:42
3973 dnl Construct the list of include-options according to whether we're building
3974 dnl in the source directory or using '--srcdir=DIR' option.
3975 AC_DEFUN([CF_INCLUDE_DIRS],
3977 if test "$srcdir" != "."; then
3978 CPPFLAGS="-I\${srcdir}/../include $CPPFLAGS"
3980 CPPFLAGS="-I../include $CPPFLAGS"
3981 if test "$srcdir" != "."; then
3982 CPPFLAGS="-I\${srcdir} $CPPFLAGS"
3984 CPPFLAGS="-I. $CPPFLAGS"
3987 dnl ---------------------------------------------------------------------------
3988 dnl CF_INSTALL_OPTS version: 2 updated: 2018/08/18 12:19:21
3990 dnl prompt for/fill-in useful install-program options
3991 AC_DEFUN([CF_INSTALL_OPTS],
3997 dnl ---------------------------------------------------------------------------
3998 dnl CF_INSTALL_OPT_O version: 3 updated: 2020/12/31 20:19:42
3999 dnl ----------------
4000 dnl Almost all "install" programs default to the current user's ownership.
4001 dnl Almost - MINIX is an exception.
4002 AC_DEFUN([CF_INSTALL_OPT_O],
4004 AC_MSG_CHECKING(if install needs to be told about ownership)
4005 case `$ac_config_guess` in
4014 AC_MSG_RESULT($with_install_o)
4015 if test "x$with_install_o" = xyes
4017 INSTALL_OPT_O="`id root|sed -e 's/uid=[[0-9]]*(/ -o /' -e 's/gid=[[0-9]]*(/ -g /' -e 's/ [[^=[:space:]]][[^=[:space:]]]*=.*/ /' -e 's/)//g'`"
4022 AC_SUBST(INSTALL_OPT_O)
4024 dnl ---------------------------------------------------------------------------
4025 dnl CF_INSTALL_OPT_P version: 3 updated: 2021/01/01 13:31:04
4026 dnl ----------------
4027 dnl Some install-programs accept a "-p" option to preserve file modification
4028 dnl timestamps. That can be useful as an install option, as well as a way to
4029 dnl avoid the need for ranlib after copying a static archive.
4030 AC_DEFUN([CF_INSTALL_OPT_P],
4032 : "${INSTALL:=install}"
4033 AC_CACHE_CHECK(if install accepts -p option, cf_cv_install_p,[
4038 if $INSTALL -p conftest.in conftest.out 2>/dev/null
4040 if test -f conftest.out/conftest.in
4042 test conftest.in -nt conftest.out/conftest.in 2>conftest.err && \
4043 test conftest.out/conftest.in -nt conftest.in 2>conftest.err
4044 if test -s conftest.err
4059 dnl ---------------------------------------------------------------------------
4060 dnl CF_INSTALL_OPT_S version: 3 updated: 2021/01/05 19:23:48
4061 dnl ----------------
4062 dnl By default, we should strip executables which are installed, but leave the
4063 dnl ability to suppress that for unit-testing.
4064 AC_DEFUN([CF_INSTALL_OPT_S],
4066 AC_MSG_CHECKING(if you want to install stripped executables)
4067 CF_ARG_DISABLE(stripping,
4068 [ --disable-stripping do not strip (debug info) installed executables],
4069 [enable_stripping=no],
4070 [enable_stripping=yes])
4071 AC_MSG_RESULT($enable_stripping)
4073 if test "$enable_stripping" = yes
4079 AC_SUBST(INSTALL_OPT_S)
4081 dnl ---------------------------------------------------------------------------
4082 dnl CF_INTEL_COMPILER version: 8 updated: 2021/01/01 16:53:59
4083 dnl -----------------
4084 dnl Check if the given compiler is really the Intel compiler for Linux. It
4085 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
4086 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
4088 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
4089 dnl ensure that it is not mistaken for gcc/g++. It is normally invoked from
4090 dnl the wrappers for gcc and g++ warnings.
4092 dnl $1 = GCC (default) or GXX
4093 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
4094 dnl $3 = CFLAGS (default) or CXXFLAGS
4095 AC_DEFUN([CF_INTEL_COMPILER],[
4096 AC_REQUIRE([AC_CANONICAL_HOST])
4097 ifelse([$2],,INTEL_COMPILER,[$2])=no
4099 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
4102 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
4103 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
4104 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
4106 #ifdef __INTEL_COMPILER
4110 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
4111 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
4113 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
4114 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
4119 dnl ---------------------------------------------------------------------------
4120 dnl CF_ISASCII version: 4 updated: 2012/10/06 17:56:13
4122 dnl Check if we have either a function or macro for 'isascii()'.
4123 AC_DEFUN([CF_ISASCII],
4125 AC_MSG_CHECKING(for isascii)
4126 AC_CACHE_VAL(cf_cv_have_isascii,[
4127 AC_TRY_LINK([#include <ctype.h>],[int x = isascii(' ')],
4128 [cf_cv_have_isascii=yes],
4129 [cf_cv_have_isascii=no])
4131 AC_MSG_RESULT($cf_cv_have_isascii)
4132 test "$cf_cv_have_isascii" = yes && AC_DEFINE(HAVE_ISASCII,1,[Define to 1 if we have isascii()])
4134 dnl ---------------------------------------------------------------------------
4135 dnl CF_LARGEFILE version: 12 updated: 2020/03/19 20:23:48
4137 dnl Add checks for large file support.
4138 AC_DEFUN([CF_LARGEFILE],[
4139 ifdef([AC_FUNC_FSEEKO],[
4141 if test "$enable_largefile" != no ; then
4144 # Normally we would collect these definitions in the config.h,
4145 # but (like _XOPEN_SOURCE), some environments rely on having these
4146 # defined before any of the system headers are included. Another
4147 # case comes up with C++, e.g., on AIX the compiler compiles the
4148 # header files by themselves before looking at the body files it is
4149 # told to compile. For ncurses, those header files do not include
4151 if test "$ac_cv_sys_large_files" != no
4153 CF_APPEND_TEXT(CPPFLAGS,-D_LARGE_FILES)
4155 if test "$ac_cv_sys_largefile_source" != no
4157 CF_APPEND_TEXT(CPPFLAGS,-D_LARGEFILE_SOURCE)
4159 if test "$ac_cv_sys_file_offset_bits" != no
4161 CF_APPEND_TEXT(CPPFLAGS,-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits)
4164 AC_CACHE_CHECK(whether to use struct dirent64, cf_cv_struct_dirent64,[
4166 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
4167 #include <sys/types.h>
4170 /* if transitional largefile support is setup, this is true */
4171 extern struct dirent64 * readdir(DIR *);
4172 struct dirent64 *x = readdir((DIR *)0);
4173 struct dirent *y = readdir((DIR *)0);
4177 [cf_cv_struct_dirent64=yes],
4178 [cf_cv_struct_dirent64=no])
4180 test "$cf_cv_struct_dirent64" = yes && AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Define to 1 if we have struct dirent64])
4184 dnl ---------------------------------------------------------------------------
4185 dnl CF_LDFLAGS_STATIC version: 14 updated: 2021/01/02 17:09:14
4186 dnl -----------------
4187 dnl Check for compiler/linker flags used to temporarily force usage of static
4188 dnl libraries. This depends on the compiler and platform. Use this to help
4189 dnl ensure that the linker picks up a given library based on its position in
4190 dnl the list of linker options and libraries.
4191 AC_DEFUN([CF_LDFLAGS_STATIC],[
4193 if test "$GCC" = yes ; then
4194 case "$cf_cv_system_name" in
4195 (OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]]|darwin*)
4199 (*) # normally, except when broken
4200 LDFLAGS_STATIC=-static
4201 LDFLAGS_SHARED=-dynamic
4205 case "$cf_cv_system_name" in
4206 (aix[[4-7]]*) # from ld manpage
4207 LDFLAGS_STATIC=-bstatic
4208 LDFLAGS_SHARED=-bdynamic
4210 (hpux*) # from ld manpage for hpux10.20, hpux11.11
4211 # We could also use just "archive" and "shared".
4212 LDFLAGS_STATIC=-Wl,-a,archive_shared
4213 LDFLAGS_SHARED=-Wl,-a,shared_archive
4215 (irix*) # from ld manpage IRIX64
4216 LDFLAGS_STATIC=-Bstatic
4217 LDFLAGS_SHARED=-Bdynamic
4219 (osf[[45]]*) # from ld manpage osf4.0d, osf5.1
4220 # alternative "-oldstyle_liblookup" (not in cc manpage)
4221 LDFLAGS_STATIC=-noso
4222 LDFLAGS_SHARED=-so_archive
4225 LDFLAGS_STATIC=-Bstatic
4226 LDFLAGS_SHARED=-Bdynamic
4231 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
4233 AC_MSG_CHECKING(if linker supports switching between static/dynamic)
4236 cat >conftest.$ac_ext <<EOF
4237 #line __oline__ "configure"
4239 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
4241 if AC_TRY_EVAL(ac_compile) ; then
4242 ( $AR $ARFLAGS libconftest.a conftest.o ) 2>&AC_FD_CC 1>/dev/null
4243 ( eval $RANLIB libconftest.a ) 2>&AC_FD_CC >/dev/null
4247 cf_save_LIBS="$LIBS"
4249 LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS"
4251 #line __oline__ "configure"
4253 int cf_ldflags_static(FILE *fp);
4255 return cf_ldflags_static(stdin);
4257 # some linkers simply ignore the -dynamic
4258 case x`file "conftest$ac_exeext" 2>/dev/null` in
4260 cf_ldflags_static=no
4263 cf_ldflags_static=yes
4266 ],[cf_ldflags_static=no])
4269 LIBS="$cf_save_LIBS"
4271 AC_MSG_RESULT($cf_ldflags_static)
4273 if test "$cf_ldflags_static" != yes
4283 AC_SUBST(LDFLAGS_STATIC)
4284 AC_SUBST(LDFLAGS_SHARED)
4286 dnl ---------------------------------------------------------------------------
4287 dnl CF_LD_RPATH_OPT version: 9 updated: 2021/01/01 13:31:04
4289 dnl For the given system and compiler, find the compiler flags to pass to the
4290 dnl loader to use the "rpath" feature.
4291 AC_DEFUN([CF_LD_RPATH_OPT],
4293 AC_REQUIRE([CF_CHECK_CACHE])
4296 if test "x$cf_cv_enable_rpath" != xno
4298 AC_MSG_CHECKING(for an rpath option)
4299 case "$cf_cv_system_name" in
4301 if test "$GCC" = yes; then
4302 LD_RPATH_OPT="-Wl,-rpath,"
4304 LD_RPATH_OPT="-rpath "
4307 (linux*|gnu*|k*bsd*-gnu|freebsd*)
4308 LD_RPATH_OPT="-Wl,-rpath,"
4310 (openbsd[[2-9]].*|mirbsd*)
4311 LD_RPATH_OPT="-Wl,-rpath,"
4314 LD_RPATH_OPT="-rpath "
4317 LD_RPATH_OPT="-Wl,-rpath,"
4320 LD_RPATH_OPT="-rpath "
4328 AC_MSG_RESULT($LD_RPATH_OPT)
4330 case "x$LD_RPATH_OPT" in
4332 AC_MSG_CHECKING(if we need a space after rpath option)
4333 cf_save_LIBS="$LIBS"
4334 CF_ADD_LIBS(${LD_RPATH_OPT}$libdir)
4335 AC_TRY_LINK(, , cf_rpath_space=no, cf_rpath_space=yes)
4336 LIBS="$cf_save_LIBS"
4337 AC_MSG_RESULT($cf_rpath_space)
4338 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
4343 dnl ---------------------------------------------------------------------------
4344 dnl CF_LD_SEARCHPATH version: 4 updated: 2022/08/27 15:43:08
4345 dnl ----------------
4346 dnl Try to obtain the linker's search-path, for use in scripts.
4348 dnl Ignore LD_LIBRARY_PATH, etc.
4349 AC_DEFUN([CF_LD_SEARCHPATH],[
4350 AC_CACHE_CHECK(for linker search path,cf_cv_ld_searchpath,[
4352 if test "$cross_compiling" != yes ; then
4354 # GNU binutils' ld does not involve permissions which may stop ldconfig.
4355 cf_pathlist=`${LD:-ld} --verbose 2>/dev/null | grep SEARCH_DIR | sed -e 's,SEARCH_DIR[[("=]][[("=]]*,,g' -e 's/"[[)]];//gp' | sort -u`
4357 # The -NX options tell newer versions of Linux ldconfig to not attempt to
4358 # update the cache, which makes it run faster.
4359 test -z "$cf_pathlist" && \
4360 cf_pathlist=`(ldconfig -NX -v) 2>/dev/null | sed -e '/^[[ ]]/d' -e 's/:$//' | sort -u`
4362 test -z "$cf_pathlist" &&
4363 cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e '/^[[ ]]/d' -e 's/:$//p' | sort -u`
4365 # This works with OpenBSD 6.5, which lists only filenames
4366 test -z "$cf_pathlist" &&
4367 cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e 's,^Adding \(.*\)/.*[$],\1,p' | sort -u`
4369 if test -z "$cf_pathlist"
4371 # dyld default path with MacOS
4372 if test -f /usr/bin/otool && test "x`uname -s`" = xDarwin
4374 # do this to bypass check
4375 cf_cv_ld_searchpath='$HOME/lib'
4376 cf_pathlist="/usr/local/lib /lib /usr/lib"
4380 if test -z "$cf_pathlist"
4382 # Solaris is "SunOS"
4383 if test -f /usr/bin/isainfo && test "x`uname -s`" = xSunOS
4385 case x`(isainfo -b)` in
4387 cf_pathlist="$cf_pathlist /lib/64 /usr/lib/64"
4390 test -d /usr/ccs/lib && cf_pathlist="$cf_pathlist /usr/ccs/lib"
4391 cf_pathlist="$cf_pathlist /lib /usr/lib"
4394 AC_MSG_WARN(problem with Solaris architecture)
4400 if test -z "$cf_pathlist"
4403 if test x"`uname -s`" = xHP-UX
4405 case x`getconf LONG_BIT` in
4407 cf_pathlist="/usr/lib/hpux64"
4410 cf_pathlist="/usr/lib/hpux32"
4418 # If nothing else, assume it is conventional
4419 test -z "$cf_pathlist" && cf_pathlist="/usr/lib /lib"
4421 # Finally, check that this is only directories
4422 for cf_path in [$]0 $cf_pathlist
4424 if test -d "$cf_path"; then
4425 test -n "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath="${cf_cv_ld_searchpath} "
4426 cf_cv_ld_searchpath="${cf_cv_ld_searchpath}${cf_path}"
4430 # Ensure that it is nonempty
4431 test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib
4434 LD_SEARCHPATH=`echo "$cf_cv_ld_searchpath"|sed -e 's/ /|/g'`
4435 AC_SUBST(LD_SEARCHPATH)
4437 dnl ---------------------------------------------------------------------------
4438 dnl CF_LIBRARY_PATH version: 11 updated: 2021/01/01 13:31:04
4440 dnl Construct a search-list of directories for a nonstandard library-file
4443 dnl $1 = the variable to return as result
4444 dnl $2 = the package name
4445 AC_DEFUN([CF_LIBRARY_PATH],
4448 cf_library_path_list=""
4449 if test -n "${LDFLAGS}${LIBS}" ; then
4450 for cf_library_path in $LDFLAGS $LIBS
4452 case "$cf_library_path" in
4454 cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
4455 CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
4456 cf_library_path_list="$cf_library_path_list [$]$1"
4462 CF_SUBDIR_PATH($1,$2,lib)
4464 $1="$cf_library_path_list [$]$1"
4466 dnl ---------------------------------------------------------------------------
4467 dnl CF_LIBTOOL_VERSION version: 1 updated: 2013/04/06 18:03:09
4468 dnl ------------------
4469 AC_DEFUN([CF_LIBTOOL_VERSION],[
4470 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
4472 cf_cv_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '/^$/d' |sed -e '2,$d' -e 's/([[^)]]*)//g' -e 's/^[[^1-9]]*//' -e 's/[[^0-9.]].*//'`
4474 cf_cv_libtool_version=
4476 test -z "$cf_cv_libtool_version" && unset cf_cv_libtool_version
4478 dnl ---------------------------------------------------------------------------
4479 dnl CF_LIB_PREFIX version: 14 updated: 2021/01/01 13:31:04
4481 dnl Compute the library-prefix for the given host system
4482 dnl $1 = variable to set
4483 define([CF_LIB_PREFIX],
4485 case "$cf_cv_system_name" in
4487 if test "$DFT_LWR_MODEL" = libtool; then
4496 (*) LIB_PREFIX='lib'
4499 ifelse($1,,,[$1=$LIB_PREFIX])
4500 AC_SUBST(LIB_PREFIX)
4502 dnl ---------------------------------------------------------------------------
4503 dnl CF_LIB_RULES version: 98 updated: 2023/01/07 16:32:06
4505 dnl Append definitions and rules for the given models to the subdirectory
4506 dnl Makefiles, and the recursion rule for the top-level Makefile. If the
4507 dnl subdirectory is a library-source directory, modify the Libs_To_Make list in
4508 dnl the corresponding makefile to list the models that we'll generate.
4510 dnl For shared libraries, make a list of symbolic links to construct when
4511 dnl generating each library. The convention used for Linux is the simplest
4514 dnl lib<name>.so.<major> ->
4515 dnl lib<name>.so.<maj>.<minor>
4517 dnl Note: Libs_To_Make is mixed case, since it is not a pure autoconf variable.
4518 AC_DEFUN([CF_LIB_RULES],
4519 [AC_REQUIRE([AC_PROG_FGREP])dnl
4520 AC_REQUIRE([CF_MAKE_PHONY])dnl
4522 cf_prefix=$LIB_PREFIX
4523 AC_REQUIRE([CF_SUBST_NCURSES_VERSION])
4525 case "$cf_cv_shlib_version" in
4526 (cygdll|msysdll|mingw|msvcdll)
4527 TINFO_NAME=$TINFO_ARG_SUFFIX
4532 if test -n "$TINFO_SUFFIX" ; then
4533 case "$TINFO_SUFFIX" in
4535 TINFO_NAME="${TINFO_NAME}tw${EXTRA_SUFFIX}"
4536 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4539 TINFO_NAME="${TINFO_NAME}t${EXTRA_SUFFIX}"
4540 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^t'$EXTRA_SUFFIX'//'`
4543 TINFO_NAME="${TINFO_NAME}w${EXTRA_SUFFIX}"
4544 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^w'$EXTRA_SUFFIX'//'`
4549 for cf_dir in $SRC_SUBDIRS
4551 if test ! -d "$srcdir/$cf_dir" ; then
4553 elif test -f "$srcdir/$cf_dir/modules" ; then
4558 if test -n "${cf_cv_abi_default}" && test "x${cf_cv_abi_default}" != "x5"
4560 cf_awk_program="$cf_awk_program\
4561 /deprecated in ABI${cf_cv_abi_default}/ { next; }\
4562 { sub(\"NCURSES([[WT]]+)?\", \"&${cf_cv_abi_default}\"); }\
4566 if test "x$WILDCARD_SYMS" = xno
4568 cf_awk_program="$cf_awk_program\
4569 /[[ ]]_\\*;/ { skip=1; next; }\
4573 if test "x$cf_awk_program" != "x"
4575 cat >>$cf_dir/Makefile <<CF_EOF
4577 # Generated by CF_LIB_RULES
4578 resulting.map: $UNALTERED_SYMS
4579 $AWK 'BEGIN { skip = 1; last=""; } \
4581 { if ( last != "" && ( skip == 0 || \[$]\[$]0 !~ /}/ ) ) { print last; }\
4582 skip = 0; last = \[$]\[$]0; } \
4583 END { print last; }' < "$UNALTERED_SYMS" >\[$]@
4590 for cf_item in $cf_LIST_MODELS
4592 CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4593 if test "$cf_dir" = "c++"
4595 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4597 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4599 test -z "$cf_libname" && cf_libname="$cf_dir"
4600 if test "$cf_item" = shared ; then
4601 if test -n "${LIB_SUFFIX}"
4603 cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4605 cf_shared_suffix="$cf_suffix"
4607 if test "$cf_cv_do_symlinks" = yes ; then
4610 case "$cf_cv_shlib_version" in
4612 cf_version_name=REL_VERSION
4615 cf_version_name=ABI_VERSION
4619 if test -n "$cf_version_name"
4621 case "$cf_cv_system_name" in
4624 cf_suffix="${USE_LIB_SUFFIX}"'.${'$cf_version_name'}'"$cf_shared_suffix"
4627 cf_suffix="$cf_suffix"'.${'$cf_version_name'}'
4631 if test -n "${USE_LIB_SUFFIX}"
4633 cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4635 cf_shared_suffix="$cf_suffix"
4638 # cygwin needs import library, and has unique naming convention
4639 # use autodetected ${cf_prefix} for import lib and static lib, but
4640 # use 'cyg' prefix for shared lib.
4641 case "$cf_cv_shlib_version" in
4643 cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4644 cf_add_lib="../lib/cyg${cf_libname}${cf_cygsuf}"
4647 cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4648 cf_add_lib="../lib/msys-${cf_libname}${cf_cygsuf}"
4651 cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4652 cf_add_lib="../lib/lib${cf_libname}${cf_cygsuf}"
4655 cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4656 cf_add_lib="../lib/${cf_libname}${cf_cygsuf}"
4662 if test -n "$cf_add_lib"
4664 Libs_To_Make="$Libs_To_Make $cf_add_lib"
4668 cf_add_lib="../lib/${cf_prefix}${cf_libname}${cf_suffix}"
4669 Libs_To_Make="$Libs_To_Make $cf_add_lib"
4672 if test "$cf_dir" = ncurses ; then
4673 cf_subsets="$LIB_SUBSETS"
4674 cf_r_parts="$cf_subsets"
4675 cf_liblist="$Libs_To_Make"
4677 while test -n "$cf_r_parts"
4679 cf_l_parts=`echo "$cf_r_parts" |sed -e 's/ .*$//'`
4680 cf_r_parts=`echo "$cf_r_parts" |sed -e 's/^[[^ ]]* //'`
4681 if test "$cf_l_parts" != "$cf_r_parts" ; then
4683 case "$cf_l_parts" in
4685 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TINFO_LIB_SUFFIX}%g`
4688 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TICS_LIB_SUFFIX}%g`
4694 if test -n "$cf_add_lib"; then
4695 Libs_To_Make="$cf_add_lib $Libs_To_Make"
4702 cf_subsets=`echo "$LIB_SUBSETS" | sed -e 's/^termlib.* //'`
4705 if test "$cf_dir" = c++; then
4706 if test "x$with_shared_cxx" != xyes && test -n "$cf_shared_suffix"; then
4708 for cf_item in $Libs_To_Make
4714 cf_item=`echo "$cf_item" | sed -e "s,"$cf_shared_suffix",.a,"`
4717 for cf_test in $cf_list
4719 if test "$cf_test" = "$cf_item"
4721 cf_LIST_MODELS=`echo "$cf_LIST_MODELS" | sed -e 's/normal//'`
4726 test -n "$cf_item" && cf_list="$cf_list $cf_item"
4728 Libs_To_Make="$cf_list"
4732 sed -e "s%@Libs_To_Make@%$Libs_To_Make%" \
4733 -e "s%@SHARED_LIB@%$SHARED_LIB%" \
4734 "$cf_dir/Makefile" >$cf_dir/Makefile.out
4735 mv "$cf_dir/Makefile.out" "$cf_dir/Makefile"
4737 $AWK -f "$srcdir/mk-0th.awk" \
4738 libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \
4739 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4741 for cf_subset in $cf_subsets
4744 for cf_item in $cf_LIST_MODELS
4747 echo "Appending rules for ${cf_item} model (${cf_dir}: ${cf_subset})"
4748 CF_UPPER(cf_ITEM,$cf_item)
4751 if test "$CXX_MODEL" = SHARED; then
4752 case "$cf_cv_shlib_version" in
4753 (cygdll|msysdll|mingw|msvcdll)
4754 test "x$with_shared_cxx" = xno && CF_VERBOSE(overriding CXX_MODEL to SHARED)
4758 test "x$with_shared_cxx" = xno && CXX_MODEL=NORMAL
4763 CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4764 CF_OBJ_SUBDIR($cf_item,cf_subdir)
4766 # Test for case where we build libtinfo with a different name.
4768 if test "$cf_dir" = ncurses ; then
4769 case "$cf_subset" in
4771 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4774 cf_libname=$TINFO_LIB_SUFFIX
4777 cf_libname=$TICS_LIB_SUFFIX
4780 elif test "$cf_dir" = c++ ; then
4781 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4782 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4784 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4785 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4787 if test -n "${USE_ARG_SUFFIX}" ; then
4788 # undo $USE_LIB_SUFFIX add-on in CF_LIB_SUFFIX
4789 cf_suffix=`echo "$cf_suffix" |sed -e "s%^${USE_LIB_SUFFIX}%%"`
4792 # These dependencies really are for development, not
4793 # builds, but they are useful in porting, too.
4794 cf_depend="../include/ncurses_cfg.h"
4795 if test "$srcdir" = "."; then
4798 cf_reldir="\${srcdir}"
4801 if test -f "$srcdir/$cf_dir/$cf_dir.priv.h" ; then
4802 cf_depend="$cf_depend $cf_reldir/$cf_dir.priv.h"
4803 elif test -f "$srcdir/$cf_dir/curses.priv.h" ; then
4804 cf_depend="$cf_depend $cf_reldir/curses.priv.h"
4808 old_cf_suffix="$cf_suffix"
4809 if test "$cf_cv_shlib_version_infix" = yes ; then
4810 if test -n "$USE_LIB_SUFFIX" ; then
4811 case "$USE_LIB_SUFFIX" in
4813 cf_libname=`echo "$cf_libname" | sed 's/tw'$EXTRA_SUFFIX'$//'`
4814 cf_suffix=`echo "$cf_suffix" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4815 cf_dir_suffix=tw$EXTRA_SUFFIX
4818 cf_libname=`echo "$cf_libname" | sed 's/t'$EXTRA_SUFFIX'$//'`
4819 cf_suffix=`echo "$cf_suffix" | sed 's/^t'$EXTRA_SUFFIX'//'`
4820 cf_dir_suffix=t$EXTRA_SUFFIX
4823 cf_libname=`echo "$cf_libname" | sed 's/w'$EXTRA_SUFFIX'$//'`
4824 cf_suffix=`echo "$cf_suffix" | sed 's/^w'$EXTRA_SUFFIX'//'`
4825 cf_dir_suffix=w$EXTRA_SUFFIX
4828 cf_libname=`echo "$cf_libname" | sed 's/'$EXTRA_SUFFIX'$//'`
4829 cf_suffix=`echo "$cf_suffix" | sed 's/^'$EXTRA_SUFFIX'//'`
4830 cf_dir_suffix=$EXTRA_SUFFIX
4836 $AWK -f "$srcdir/mk-1st.awk" \
4837 name=${cf_libname}${cf_dir_suffix} \
4838 traces=$LIB_TRACING \
4840 CXX_MODEL=$CXX_MODEL \
4841 LIB_SUFFIX=$LIB_SUFFIX \
4842 USE_LIB_SUFFIX=$USE_LIB_SUFFIX \
4843 make_phony="${cf_cv_make_PHONY:-no}" \
4848 driver=$cf_cv_term_driver \
4850 TermlibRoot=$TINFO_NAME \
4851 TermlibSuffix=$TINFO_SUFFIX \
4852 ShlibVer=$cf_cv_shlib_version \
4853 ShlibVerInfix=$cf_cv_shlib_version_infix \
4854 ReLink=${cf_cv_do_relink:-no} \
4855 ReRanlib=${cf_cv_do_reranlib:-yes} \
4856 DoLinks=$cf_cv_do_symlinks \
4857 rmSoLocs=$cf_cv_rm_so_locs \
4858 ldconfig="$LDCONFIG" \
4859 overwrite=$WITH_OVERWRITE \
4860 depend="$cf_depend" \
4862 libtool_version="$LIBTOOL_VERSION" \
4863 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4865 cf_suffix="$old_cf_suffix"
4867 for cf_subdir2 in $cf_subdirs lib
4869 test "$cf_subdir" = "$cf_subdir2" && break
4871 test "${cf_subset}.${cf_subdir2}" != "${cf_subset}.${cf_subdir}" && \
4872 $AWK -f "$srcdir/mk-2nd.awk" \
4874 traces=$LIB_TRACING \
4880 crenames=$cf_cv_prog_CC_c_o \
4881 cxxrenames=$cf_cv_prog_CXX_c_o \
4882 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4883 cf_subdirs="$cf_subdirs $cf_subdir"
4888 echo ' ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >>Makefile
4892 echo '# generated by CF_LIB_RULES' >> Makefile
4894 if test "x$cf_cv_make_PHONY" = xyes ; then
4895 cat >> Makefile <<-CF_EOF
4899 .PHONY : install.includes
4900 .PHONY : uninstall.includes
4901 .PHONY : install.libs
4902 .PHONY : uninstall.libs
4906 for cf_dir in $SRC_SUBDIRS
4908 if test ! -d "$srcdir/$cf_dir" ; then
4912 if test -f "$cf_dir/Makefile" ; then
4915 echo 'libs \' >> Makefile
4916 echo 'install.libs \' >> Makefile
4917 echo 'uninstall.libs ::' >> Makefile
4918 echo ' ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >> Makefile
4923 if test -f "$srcdir/$cf_dir/modules" ; then
4925 if test "x$cf_cv_make_PHONY" = xyes ; then
4926 cat >> Makefile <<-CF_EOF
4928 .PHONY : install.$cf_dir
4929 .PHONY : uninstall.$cf_dir
4934 if test -f "$srcdir/$cf_dir/headers" ; then
4935 cat >> Makefile <<CF_EOF
4937 uninstall.includes \\
4941 cat >> Makefile <<CF_EOF
4948 uninstall.$cf_dir ::
4949 ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4951 elif test -f "$srcdir/$cf_dir/headers" ; then
4952 cat >> Makefile <<CF_EOF
4958 uninstall.includes ::
4959 ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4964 if test "x$cf_cv_make_PHONY" = xyes ; then
4965 cat >> Makefile <<-CF_EOF
4967 .PHONY : install.data
4968 .PHONY : uninstall.data
4972 if test "x$cf_with_db_install" = xyes; then
4973 cat >> Makefile <<CF_EOF
4975 install.libs uninstall.libs \\
4976 install.data uninstall.data ::
4977 $MAKE_TERMINFO ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4980 cat >> Makefile <<CF_EOF
4982 install.libs uninstall.libs ::
4983 ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4987 if test "x$cf_with_manpages" = xyes; then
4989 if test "x$cf_cv_make_PHONY" = xyes ; then
4990 cat >> Makefile <<-CF_EOF
4992 .PHONY : install.man
4993 .PHONY : uninstall.man
4997 cat >> Makefile <<CF_EOF
5001 ( cd man && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5005 cat >> Makefile <<CF_EOF
5008 rm -f config.cache config.log config.status Makefile include/ncurses_cfg.h
5009 rm -f headers.sh headers.sed mk_shared_lib.sh
5010 rm -f edit_man.* man_alias.*
5011 rm -rf \${DIRS_TO_MAKE}
5014 # Special case: tack's manpage lives in its own directory.
5015 if test "x$cf_with_manpages" = xyes; then
5016 if test "x$cf_with_tack" = "xyes"; then
5017 cat >> Makefile <<CF_EOF
5021 ( cd tack && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5026 dnl If we're installing into a subdirectory of /usr/include, etc., we should
5027 dnl prepend the subdirectory's name to the "#include" paths. It won't hurt
5028 dnl anything, and will make it more standardized. It's awkward to decide this
5029 dnl at configuration because of quoting, so we'll simply make all headers
5030 dnl installed via a script that can do the right thing.
5032 rm -f headers.sed headers.sh
5034 dnl ( generating this script makes the makefiles a little tidier :-)
5035 echo creating headers.sh
5036 cat >headers.sh <<CF_EOF
5038 # This shell script is generated by the 'configure' script. It is invoked in a
5039 # subdirectory of the build tree. It generates a sed-script in the parent
5040 # directory that is used to adjust includes for header files that reside in a
5041 # subdirectory of /usr/include, etc.
5043 while test \[$]# != 3
5045 PRG="\$PRG \[$]1"; shift
5050 TMPSRC=\${TMPDIR:-/tmp}/\`basename \$SRC\`\$\$
5051 TMPSED=\${TMPDIR:-/tmp}/headers.sed\$\$
5052 echo installing \$SRC in \$DST
5055 if test "$WITH_CURSES_H" = yes; then
5056 cat >>headers.sh <<CF_EOF
5059 END=\`basename \$DST\`
5060 for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`
5062 NAME=\`basename \$i\`
5063 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
5073 cat >>headers.sh <<CF_EOF
5076 END=\`basename \$DST\`
5077 for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`