]> ncurses.scripts.mit.edu Git - ncurses.git/blob - aclocal.m4
8335b4fd949a3760d8356215532ca517f71848af
[ncurses.git] / aclocal.m4
1 dnl***************************************************************************
2 dnl Copyright 2018-2023,2024 Thomas E. Dickey                                *
3 dnl Copyright 1998-2017,2018 Free Software Foundation, Inc.                  *
4 dnl                                                                          *
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:                 *
12 dnl                                                                          *
13 dnl The above copyright notice and this permission notice shall be included  *
14 dnl in all copies or substantial portions of the Software.                   *
15 dnl                                                                          *
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.                               *
23 dnl                                                                          *
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       *
27 dnl authorization.                                                           *
28 dnl***************************************************************************
29 dnl
30 dnl Author: Thomas E. Dickey 1995-on
31 dnl
32 dnl $Id: aclocal.m4,v 1.1065 2024/03/12 23:45:44 tom Exp $
33 dnl Macros used in NCURSES auto-configuration script.
34 dnl
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.
38 dnl
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
42 dnl
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
49 dnl codeset.m4
50 dnl ====================
51 dnl serial AM1
52 dnl
53 dnl From Bruno Haible.
54 AC_DEFUN([AM_LANGINFO_CODESET],
55 [
56 AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
57         [AC_TRY_LINK([
58 $ac_includes_default
59 #include <langinfo.h>],
60         [char* cs = nl_langinfo(CODESET); (void)cs],
61         am_cv_langinfo_codeset=yes,
62         am_cv_langinfo_codeset=no)
63         ])
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).])
67         fi
68 ])dnl
69 dnl ---------------------------------------------------------------------------
70 dnl CF_ABI_DEFAULTS version: 5 updated: 2023/10/21 08:54:23
71 dnl ---------------
72 dnl Provide configure-script defaults for different ncurses ABIs.
73 AC_DEFUN([CF_ABI_DEFAULTS],[
74 AC_REQUIRE([CF_NCURSES_WITH_ABI_VERSION])
75
76 # ABI 5 defaults:
77 cf_dft_ccharw_max=5
78 cf_dft_chtype=auto
79 cf_dft_ext_colors=no
80 cf_dft_ext_const=no
81 cf_dft_ext_mouse=no
82 cf_dft_ext_putwin=no
83 cf_dft_ext_spfuncs=no
84 cf_dft_filter_syms=no
85 cf_dft_interop=no
86 cf_dft_mmask_t=auto
87 cf_dft_opaque_curses=no
88 cf_dft_ordinate_type=short
89 cf_dft_signed_char=no
90 cf_dft_tparm_arg=long
91 cf_dft_widec=no
92 cf_dft_with_lp64=no
93
94 # ABI 6 default differences from ABI 5:
95 case x$cf_cv_abi_default in
96 (x[[6789]])
97         cf_dft_chtype=uint32_t
98         cf_dft_ext_colors=yes
99         cf_dft_ext_const=yes
100         cf_dft_ext_mouse=yes
101         cf_dft_ext_putwin=yes
102         cf_dft_ext_spfuncs=yes
103         cf_dft_filter_syms=yes
104         cf_dft_interop=yes
105         cf_dft_mmask_t=uint32_t
106         cf_dft_opaque_curses=yes
107         cf_dft_tparm_arg=intptr_t
108         cf_dft_widec=yes
109         cf_dft_with_lp64=yes
110         ;;
111 esac
112
113 # ABI 7 default differences from ABI 6:
114 case x$cf_cv_abi_default in
115 (x[[789]])
116         cf_dft_ccharw_max=6
117         cf_dft_mmask_t=uint64_t
118         cf_dft_ordinate_type=int
119         cf_dft_signed_char=yes
120         # also: remove the wgetch-events feature in ABI 7
121         ;;
122 esac
123 ])dnl
124 dnl ---------------------------------------------------------------------------
125 dnl CF_ACVERSION_CHECK version: 5 updated: 2014/06/04 19:11:49
126 dnl ------------------
127 dnl Conditionally generate script according to whether we're using a given autoconf.
128 dnl
129 dnl $1 = version to compare against
130 dnl $2 = code to use if AC_ACVERSION is at least as high as $1.
131 dnl $3 = code to use if AC_ACVERSION is older than $1.
132 define([CF_ACVERSION_CHECK],
133 [
134 ifdef([AC_ACVERSION], ,[ifdef([AC_AUTOCONF_VERSION],[m4_copy([AC_AUTOCONF_VERSION],[AC_ACVERSION])],[m4_copy([m4_PACKAGE_VERSION],[AC_ACVERSION])])])dnl
135 ifdef([m4_version_compare],
136 [m4_if(m4_version_compare(m4_defn([AC_ACVERSION]), [$1]), -1, [$3], [$2])],
137 [CF_ACVERSION_COMPARE(
138 AC_PREREQ_CANON(AC_PREREQ_SPLIT([$1])),
139 AC_PREREQ_CANON(AC_PREREQ_SPLIT(AC_ACVERSION)), AC_ACVERSION, [$2], [$3])])])dnl
140 dnl ---------------------------------------------------------------------------
141 dnl CF_ACVERSION_COMPARE version: 3 updated: 2012/10/03 18:39:53
142 dnl --------------------
143 dnl CF_ACVERSION_COMPARE(MAJOR1, MINOR1, TERNARY1,
144 dnl                      MAJOR2, MINOR2, TERNARY2,
145 dnl                      PRINTABLE2, not FOUND, FOUND)
146 define([CF_ACVERSION_COMPARE],
147 [ifelse(builtin([eval], [$2 < $5]), 1,
148 [ifelse([$8], , ,[$8])],
149 [ifelse([$9], , ,[$9])])])dnl
150 dnl ---------------------------------------------------------------------------
151 dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
152 dnl -------------------
153 dnl Construct the list of include-options for the C programs in the Ada95
154 dnl binding.
155 AC_DEFUN([CF_ADA_INCLUDE_DIRS],
156 [
157 ACPPFLAGS="-I. -I../include -I../../include $ACPPFLAGS"
158 if test "$srcdir" != "."; then
159         ACPPFLAGS="-I\${srcdir}/../../include $ACPPFLAGS"
160 fi
161 if test "$GCC" != yes; then
162         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
163 elif test "$includedir" != "/usr/include"; then
164         if test "$includedir" = '${prefix}/include' ; then
165                 if test x$prefix != x/usr ; then
166                         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
167                 fi
168         else
169                 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
170         fi
171 fi
172 AC_SUBST(ACPPFLAGS)
173 ])dnl
174 dnl ---------------------------------------------------------------------------
175 dnl CF_ADD_ADAFLAGS version: 1 updated: 2010/06/19 15:22:18
176 dnl ---------------
177 dnl Add to $ADAFLAGS, which is substituted into makefile and scripts.
178 AC_DEFUN([CF_ADD_ADAFLAGS],[
179         ADAFLAGS="$ADAFLAGS $1"
180         AC_SUBST(ADAFLAGS)
181 ])dnl
182 dnl ---------------------------------------------------------------------------
183 dnl CF_ADD_CFLAGS version: 15 updated: 2020/12/31 10:54:15
184 dnl -------------
185 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
186 dnl $1 = flags to add
187 dnl $2 = if given makes this macro verbose.
188 dnl
189 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
190 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
191 dnl confused by the quotes (which require backslashes to keep them usable).
192 AC_DEFUN([CF_ADD_CFLAGS],
193 [
194 cf_fix_cppflags=no
195 cf_new_cflags=
196 cf_new_cppflags=
197 cf_new_extra_cppflags=
198
199 for cf_add_cflags in $1
200 do
201 case "$cf_fix_cppflags" in
202 (no)
203         case "$cf_add_cflags" in
204         (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
205                 case "$cf_add_cflags" in
206                 (-D*)
207                         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
208
209                         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
210                                 && test -z "${cf_tst_cflags}" \
211                                 && cf_fix_cppflags=yes
212
213                         if test "$cf_fix_cppflags" = yes ; then
214                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
215                                 continue
216                         elif test "${cf_tst_cflags}" = "\"'" ; then
217                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
218                                 continue
219                         fi
220                         ;;
221                 esac
222                 case "$CPPFLAGS" in
223                 (*$cf_add_cflags)
224                         ;;
225                 (*)
226                         case "$cf_add_cflags" in
227                         (-D*)
228                                 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
229                                 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
230                                 ;;
231                         esac
232                         CF_APPEND_TEXT(cf_new_cppflags,$cf_add_cflags)
233                         ;;
234                 esac
235                 ;;
236         (*)
237                 CF_APPEND_TEXT(cf_new_cflags,$cf_add_cflags)
238                 ;;
239         esac
240         ;;
241 (yes)
242         CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
243
244         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[[^"]]*"'\''//'`
245
246         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
247                 && test -z "${cf_tst_cflags}" \
248                 && cf_fix_cppflags=no
249         ;;
250 esac
251 done
252
253 if test -n "$cf_new_cflags" ; then
254         ifelse([$2],,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])
255         CF_APPEND_TEXT(CFLAGS,$cf_new_cflags)
256 fi
257
258 if test -n "$cf_new_cppflags" ; then
259         ifelse([$2],,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])
260         CF_APPEND_TEXT(CPPFLAGS,$cf_new_cppflags)
261 fi
262
263 if test -n "$cf_new_extra_cppflags" ; then
264         ifelse([$2],,,[CF_VERBOSE(add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags)])
265         CF_APPEND_TEXT(EXTRA_CPPFLAGS,$cf_new_extra_cppflags)
266 fi
267
268 AC_SUBST(EXTRA_CPPFLAGS)
269
270 ])dnl
271 dnl ---------------------------------------------------------------------------
272 dnl CF_ADD_CXXFLAGS version: 1 updated: 2020/04/04 16:16:13
273 dnl ---------------
274 dnl Copy non-preprocessor flags to $CXXFLAGS, preprocessor flags to $CPPFLAGS
275 dnl The second parameter if given makes this macro verbose.
276 dnl
277 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
278 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
279 dnl confused by the quotes (which require backslashes to keep them usable).
280 AC_DEFUN([CF_ADD_CXXFLAGS],
281 [
282 cf_save_CXXFLAGS="$CFLAGS"
283 CFLAGS="$CXXFLAGS"
284 CF_ADD_CFLAGS($1 ifelse($2,,,[,$2]))
285 CXXFLAGS="$CFLAGS"
286 CFLAGS="$cf_save_CXXFLAGS"
287 ])dnl
288 dnl ---------------------------------------------------------------------------
289 dnl CF_ADD_INCDIR version: 17 updated: 2021/09/04 06:35:04
290 dnl -------------
291 dnl Add an include-directory to $CPPFLAGS.  Don't add /usr/include, since it is
292 dnl redundant.  We don't normally need to add -I/usr/local/include for gcc,
293 dnl but old versions (and some misinstalled ones) need that.  To make things
294 dnl worse, gcc 3.x may give error messages if -I/usr/local/include is added to
295 dnl the include-path).
296 AC_DEFUN([CF_ADD_INCDIR],
297 [
298 if test -n "$1" ; then
299   for cf_add_incdir in $1
300   do
301         while test "$cf_add_incdir" != /usr/include
302         do
303           if test -d "$cf_add_incdir"
304           then
305                 cf_have_incdir=no
306                 if test -n "$CFLAGS$CPPFLAGS" ; then
307                   # a loop is needed to ensure we can add subdirs of existing dirs
308                   for cf_test_incdir in $CFLAGS $CPPFLAGS ; do
309                         if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then
310                           cf_have_incdir=yes; break
311                         fi
312                   done
313                 fi
314
315                 if test "$cf_have_incdir" = no ; then
316                   if test "$cf_add_incdir" = /usr/local/include ; then
317                         if test "$GCC" = yes
318                         then
319                           cf_save_CPPFLAGS=$CPPFLAGS
320                           CF_APPEND_TEXT(CPPFLAGS,-I$cf_add_incdir)
321                           AC_TRY_COMPILE([#include <stdio.h>],
322                                   [printf("Hello")],
323                                   [],
324                                   [cf_have_incdir=yes])
325                           CPPFLAGS=$cf_save_CPPFLAGS
326                         fi
327                   fi
328                 fi
329
330                 if test "$cf_have_incdir" = no ; then
331                   CF_VERBOSE(adding $cf_add_incdir to include-path)
332                   ifelse([$2],,CPPFLAGS,[$2])="$ifelse([$2],,CPPFLAGS,[$2]) -I$cf_add_incdir"
333
334                   cf_top_incdir=`echo "$cf_add_incdir" | sed -e 's%/include/.*$%/include%'`
335                   test "$cf_top_incdir" = "$cf_add_incdir" && break
336                   cf_add_incdir="$cf_top_incdir"
337                 else
338                   break
339                 fi
340           else
341                 break
342           fi
343         done
344   done
345 fi
346 ])dnl
347 dnl ---------------------------------------------------------------------------
348 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
349 dnl ----------
350 dnl Add a library, used to enforce consistency.
351 dnl
352 dnl $1 = library to add, without the "-l"
353 dnl $2 = variable to update (default $LIBS)
354 AC_DEFUN([CF_ADD_LIB],[CF_ADD_LIBS(-l$1,ifelse($2,,LIBS,[$2]))])dnl
355 dnl ---------------------------------------------------------------------------
356 dnl CF_ADD_LIBDIR version: 11 updated: 2020/12/31 20:19:42
357 dnl -------------
358 dnl     Adds to the library-path
359 dnl
360 dnl     Some machines have trouble with multiple -L options.
361 dnl
362 dnl $1 is the (list of) directory(s) to add
363 dnl $2 is the optional name of the variable to update (default LDFLAGS)
364 dnl
365 AC_DEFUN([CF_ADD_LIBDIR],
366 [
367 if test -n "$1" ; then
368         for cf_add_libdir in $1
369         do
370                 if test "$cf_add_libdir" = /usr/lib ; then
371                         :
372                 elif test -d "$cf_add_libdir"
373                 then
374                         cf_have_libdir=no
375                         if test -n "$LDFLAGS$LIBS" ; then
376                                 # a loop is needed to ensure we can add subdirs of existing dirs
377                                 for cf_test_libdir in $LDFLAGS $LIBS ; do
378                                         if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then
379                                                 cf_have_libdir=yes; break
380                                         fi
381                                 done
382                         fi
383                         if test "$cf_have_libdir" = no ; then
384                                 CF_VERBOSE(adding $cf_add_libdir to library-path)
385                                 ifelse([$2],,LDFLAGS,[$2])="-L$cf_add_libdir $ifelse([$2],,LDFLAGS,[$2])"
386                         fi
387                 fi
388         done
389 fi
390 ])dnl
391 dnl ---------------------------------------------------------------------------
392 dnl CF_ADD_LIBS version: 3 updated: 2019/11/02 16:47:33
393 dnl -----------
394 dnl Add one or more libraries, used to enforce consistency.  Libraries are
395 dnl prepended to an existing list, since their dependencies are assumed to
396 dnl already exist in the list.
397 dnl
398 dnl $1 = libraries to add, with the "-l", etc.
399 dnl $2 = variable to update (default $LIBS)
400 AC_DEFUN([CF_ADD_LIBS],[
401 cf_add_libs="[$]ifelse($2,,LIBS,[$2])"
402 # reverse order
403 cf_add_0lib=
404 for cf_add_1lib in $1; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done
405 # filter duplicates
406 for cf_add_1lib in $cf_add_0lib; do
407         for cf_add_2lib in $cf_add_libs; do
408                 if test "x$cf_add_1lib" = "x$cf_add_2lib"; then
409                         cf_add_1lib=
410                         break
411                 fi
412         done
413         test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs"
414 done
415 ifelse($2,,LIBS,[$2])="$cf_add_libs"
416 ])dnl
417 dnl ---------------------------------------------------------------------------
418 dnl CF_ADD_SUBDIR_PATH version: 5 updated: 2020/12/31 20:19:42
419 dnl ------------------
420 dnl Append to a search-list for a nonstandard header/lib-file
421 dnl     $1 = the variable to return as result
422 dnl     $2 = the package name
423 dnl     $3 = the subdirectory, e.g., bin, include or lib
424 dnl $4 = the directory under which we will test for subdirectories
425 dnl $5 = a directory that we do not want $4 to match
426 AC_DEFUN([CF_ADD_SUBDIR_PATH],
427 [
428 test "x$4" != "x$5" && \
429 test -d "$4" && \
430 ifelse([$5],NONE,,[{ test -z "$5" || test "x$5" = xNONE || test "x$4" != "x$5"; } &&]) {
431         test -n "$verbose" && echo "    ... testing for $3-directories under $4"
432         test -d "$4/$3" &&          $1="[$]$1 $4/$3"
433         test -d "$4/$3/$2" &&       $1="[$]$1 $4/$3/$2"
434         test -d "$4/$3/$2/$3" &&    $1="[$]$1 $4/$3/$2/$3"
435         test -d "$4/$2/$3" &&       $1="[$]$1 $4/$2/$3"
436         test -d "$4/$2/$3/$2" &&    $1="[$]$1 $4/$2/$3/$2"
437 }
438 ])dnl
439 dnl ---------------------------------------------------------------------------
440 dnl CF_APPEND_CFLAGS version: 3 updated: 2021/09/05 17:25:40
441 dnl ----------------
442 dnl Use CF_ADD_CFLAGS after first checking for potential redefinitions.
443 dnl $1 = flags to add
444 dnl $2 = if given makes this macro verbose.
445 define([CF_APPEND_CFLAGS],
446 [
447 for cf_add_cflags in $1
448 do
449         case "x$cf_add_cflags" in
450         (x-[[DU]]*)
451                 CF_REMOVE_CFLAGS($cf_add_cflags,CFLAGS,[$2])
452                 CF_REMOVE_CFLAGS($cf_add_cflags,CPPFLAGS,[$2])
453                 ;;
454         esac
455         CF_ADD_CFLAGS([$cf_add_cflags],[$2])
456 done
457 ])dnl
458 dnl ---------------------------------------------------------------------------
459 dnl CF_APPEND_TEXT version: 1 updated: 2017/02/25 18:58:55
460 dnl --------------
461 dnl use this macro for appending text without introducing an extra blank at
462 dnl the beginning
463 define([CF_APPEND_TEXT],
464 [
465         test -n "[$]$1" && $1="[$]$1 "
466         $1="[$]{$1}$2"
467 ])dnl
468 dnl ---------------------------------------------------------------------------
469 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
470 dnl --------------
471 dnl Allow user to disable a normally-on option.
472 AC_DEFUN([CF_ARG_DISABLE],
473 [CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
474 dnl ---------------------------------------------------------------------------
475 dnl CF_ARG_ENABLE version: 3 updated: 1999/03/30 17:24:31
476 dnl -------------
477 dnl Allow user to enable a normally-off option.
478 AC_DEFUN([CF_ARG_ENABLE],
479 [CF_ARG_OPTION($1,[$2],[$3],[$4],no)])dnl
480 dnl ---------------------------------------------------------------------------
481 dnl CF_ARG_OPTION version: 5 updated: 2015/05/10 19:52:14
482 dnl -------------
483 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
484 dnl values.
485 dnl
486 dnl Parameters:
487 dnl $1 = option name
488 dnl $2 = help-string
489 dnl $3 = action to perform if option is not default
490 dnl $4 = action if perform if option is default
491 dnl $5 = default option value (either 'yes' or 'no')
492 AC_DEFUN([CF_ARG_OPTION],
493 [AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
494         if test "$enableval" != "$5" ; then
495 ifelse([$3],,[    :]dnl
496 ,[    $3]) ifelse([$4],,,[
497         else
498                 $4])
499         fi],[enableval=$5 ifelse([$4],,,[
500         $4
501 ])dnl
502 ])])dnl
503 dnl ---------------------------------------------------------------------------
504 dnl CF_AR_FLAGS version: 9 updated: 2021/01/01 13:31:04
505 dnl -----------
506 dnl Check for suitable "ar" (archiver) options for updating an archive.
507 dnl
508 dnl In particular, handle some obsolete cases where the "-" might be omitted,
509 dnl as well as a workaround for breakage of make's archive rules by the GNU
510 dnl binutils "ar" program.
511 AC_DEFUN([CF_AR_FLAGS],[
512 AC_REQUIRE([CF_PROG_AR])
513
514 AC_CACHE_CHECK(for options to update archives, cf_cv_ar_flags,[
515         case "$cf_cv_system_name" in
516         (*-msvc*)
517                 cf_cv_ar_flags=''
518                 cat >mk_static_lib.sh <<-EOF
519                 #!$SHELL
520                 MSVC_BIN="[$]AR"
521                 out="\[$]1"
522                 shift
523                 exec \[$]MSVC_BIN -out:"\[$]out" \[$]@
524                 EOF
525                 chmod +x mk_static_lib.sh
526                 AR=`pwd`/mk_static_lib.sh
527                 ;;
528         (*)
529                 cf_cv_ar_flags=unknown
530                 for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
531                 do
532
533                         # check if $ARFLAGS already contains this choice
534                         if test "x$ARFLAGS" != "x" ; then
535                                 cf_check_ar_flags=`echo "x$ARFLAGS" | sed -e "s/$cf_ar_flags\$//" -e "s/$cf_ar_flags / /"`
536                                 if test "x$ARFLAGS" != "$cf_check_ar_flags" ; then
537                                         cf_cv_ar_flags=
538                                         break
539                                 fi
540                         fi
541
542                         rm -f "conftest.$ac_cv_objext"
543                         rm -f conftest.a
544
545                         cat >"conftest.$ac_ext" <<EOF
546 #line __oline__ "configure"
547 int     testdata[[3]] = { 123, 456, 789 };
548 EOF
549                         if AC_TRY_EVAL(ac_compile) ; then
550                                 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&AC_FD_CC
551                                 $AR $ARFLAGS "$cf_ar_flags" conftest.a "conftest.$ac_cv_objext" 2>&AC_FD_CC 1>/dev/null
552                                 if test -f conftest.a ; then
553                                         cf_cv_ar_flags="$cf_ar_flags"
554                                         break
555                                 fi
556                         else
557                                 CF_VERBOSE(cannot compile test-program)
558                                 break
559                         fi
560                 done
561                 rm -f conftest.a "conftest.$ac_ext" "conftest.$ac_cv_objext"
562                 ;;
563         esac
564 ])
565
566 if test -n "$ARFLAGS" ; then
567         if test -n "$cf_cv_ar_flags" ; then
568                 ARFLAGS="$ARFLAGS $cf_cv_ar_flags"
569         fi
570 else
571         ARFLAGS=$cf_cv_ar_flags
572 fi
573
574 AC_SUBST(ARFLAGS)
575 ])
576 dnl ---------------------------------------------------------------------------
577 dnl CF_AWK_BIG_PRINTF version: 5 updated: 2015/04/17 21:13:04
578 dnl -----------------
579 dnl Check if awk can handle big strings using printf.  Some older versions of
580 dnl awk choke on large strings passed via "%s".
581 dnl
582 dnl $1 = desired string size
583 dnl $2 = variable to set with result
584 AC_DEFUN([CF_AWK_BIG_PRINTF],
585 [
586         case x$AWK in
587         (x)
588                 eval $2=no
589                 ;;
590         (*)
591                 if ( ${AWK} 'BEGIN { xx = "x"; while (length(xx) < $1) { xx = xx "x"; }; printf("%s\n", xx); }' 2>/dev/null \
592                         | $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
593                         eval $2=yes
594                 else
595                         eval $2=no
596                 fi
597                 ;;
598         esac
599 ])dnl
600 dnl ---------------------------------------------------------------------------
601 dnl CF_BOOL_DECL version: 9 updated: 2023/12/03 09:21:34
602 dnl ------------
603 dnl Test if 'bool' is a builtin type in the configured C++ compiler.  Some
604 dnl older compilers (e.g., gcc 2.5.8) don't support 'bool' directly; gcc
605 dnl 2.6.3 does, in anticipation of the ANSI C++ standard.
606 dnl
607 dnl Treat the configuration-variable specially here, since we're directly
608 dnl substituting its value (i.e., 1/0).
609 dnl
610 dnl $1 is the shell variable to store the result in, if not $cv_cv_builtin_bool
611 AC_DEFUN([CF_BOOL_DECL],
612 [
613 AC_MSG_CHECKING(if we should include stdbool.h)
614
615 AC_CACHE_VAL(cf_cv_header_stdbool_h,[
616         AC_TRY_COMPILE([],[bool foo = false; (void)foo],
617                 [cf_cv_header_stdbool_h=0],
618                 [AC_TRY_COMPILE([
619 #ifndef __BEOS__
620 #include <stdbool.h>
621 #endif
622 ],[bool foo = false; (void)foo],
623                         [cf_cv_header_stdbool_h=1],
624                         [cf_cv_header_stdbool_h=0])])])
625
626 if test "$cf_cv_header_stdbool_h" = 1
627 then    AC_MSG_RESULT(yes)
628 else    AC_MSG_RESULT(no)
629 fi
630
631 AC_MSG_CHECKING([for builtin bool type])
632
633 AC_CACHE_VAL(ifelse($1,,cf_cv_builtin_bool,[$1]),[
634         AC_TRY_COMPILE([
635 #include <stdio.h>
636 #include <sys/types.h>
637 ],[bool x = false; (void)x],
638                 [ifelse($1,,cf_cv_builtin_bool,[$1])=1],
639                 [ifelse($1,,cf_cv_builtin_bool,[$1])=0])
640         ])
641
642 if test "$ifelse($1,,cf_cv_builtin_bool,[$1])" = 1
643 then    AC_MSG_RESULT(yes)
644 else    AC_MSG_RESULT(no)
645 fi
646 ])dnl
647 dnl ---------------------------------------------------------------------------
648 dnl CF_BOOL_SIZE version: 20 updated: 2023/02/18 17:41:25
649 dnl ------------
650 dnl Test for the size of 'bool' in the configured C++ compiler (e.g., a type).
651 dnl Don't bother looking for bool.h, since it has been deprecated.
652 dnl
653 dnl If the current compiler is C rather than C++, we get the bool definition
654 dnl from <stdbool.h>.
655 AC_DEFUN([CF_BOOL_SIZE],
656 [
657 AC_CHECK_SIZEOF(bool,,[
658 $ac_includes_default
659
660 #if defined(__cplusplus)
661
662 #ifdef HAVE_GXX_BUILTIN_H
663 #include <g++/builtin.h>
664 #elif HAVE_GPP_BUILTIN_H
665 #include <gpp/builtin.h>
666 #elif HAVE_BUILTIN_H
667 #include <builtin.h>
668 #endif
669
670 #else
671
672 #if $cf_cv_header_stdbool_h
673 #include <stdbool.h>
674 #endif
675
676 #endif
677 ])
678
679 AC_CACHE_CHECK(for type of bool, cf_cv_type_of_bool,[
680         rm -f cf_test.out
681         AC_TRY_RUN([
682 $ac_includes_default
683
684 #if defined(__cplusplus)
685
686 #ifdef HAVE_GXX_BUILTIN_H
687 #include <g++/builtin.h>
688 #elif HAVE_GPP_BUILTIN_H
689 #include <gpp/builtin.h>
690 #elif HAVE_BUILTIN_H
691 #include <builtin.h>
692 #endif
693
694 #else
695
696 #if $cf_cv_header_stdbool_h
697 #include <stdbool.h>
698 #endif
699
700 #endif
701
702 int main(void)
703 {
704         FILE *fp = fopen("cf_test.out", "w");
705         if (fp != 0) {
706                 bool x = true;
707                 if ((bool)(-x) >= 0)
708                         fputs("unsigned ", fp);
709                 if (sizeof(x) == sizeof(int))       fputs("int",  fp);
710                 else if (sizeof(x) == sizeof(char)) fputs("char", fp);
711                 else if (sizeof(x) == sizeof(short))fputs("short",fp);
712                 else if (sizeof(x) == sizeof(long)) fputs("long", fp);
713                 fclose(fp);
714         }
715         ${cf_cv_main_return:-return}(0);
716 }
717                 ],
718                 [cf_cv_type_of_bool=`cat cf_test.out`
719                  if test -z "$cf_cv_type_of_bool"; then
720                    cf_cv_type_of_bool=unknown
721                  fi],
722                 [cf_cv_type_of_bool=unknown],
723                 [
724                 case x$ac_cv_sizeof_bool in
725                 (x1) cf_cv_type_of_bool="unsigned char";;
726                 (x2) cf_cv_type_of_bool="unsigned short";;
727                 (x4) cf_cv_type_of_bool="unsigned int";;
728                 (x8) cf_cv_type_of_bool="unsigned long";;
729                 (*)  cf_cv_type_of_bool=unknown;;
730                 esac
731                 ])
732         rm -f cf_test.out
733 ])
734
735 if test "$cf_cv_type_of_bool" = unknown ; then
736         case .$NCURSES_BOOL in
737         (.auto|.) NCURSES_BOOL=unsigned;;
738         esac
739         AC_MSG_WARN(Assuming $NCURSES_BOOL for type of bool)
740         cf_cv_type_of_bool=$NCURSES_BOOL
741 fi
742 ])dnl
743 dnl ---------------------------------------------------------------------------
744 dnl CF_BUILD_CC version: 11 updated: 2022/12/04 15:40:08
745 dnl -----------
746 dnl If we're cross-compiling, allow the user to override the tools and their
747 dnl options.  The configure script is oriented toward identifying the host
748 dnl compiler, etc., but we need a build compiler to generate parts of the
749 dnl source.
750 dnl
751 dnl $1 = default for $CPPFLAGS
752 dnl $2 = default for $LIBS
753 AC_DEFUN([CF_BUILD_CC],[
754 CF_ACVERSION_CHECK(2.52,,
755         [AC_REQUIRE([CF_PROG_EXT])])
756 if test "$cross_compiling" = yes ; then
757
758         # defaults that we might want to override
759         : ${BUILD_CFLAGS:=''}
760         : ${BUILD_CPPFLAGS:='ifelse([$1],,,[$1])'}
761         : ${BUILD_LDFLAGS:=''}
762         : ${BUILD_LIBS:='ifelse([$2],,,[$2])'}
763         : ${BUILD_EXEEXT:='$x'}
764         : ${BUILD_OBJEXT:='o'}
765
766         AC_ARG_WITH(build-cc,
767                 [  --with-build-cc=XXX     the build C compiler ($BUILD_CC)],
768                 [BUILD_CC="$withval"],
769                 [AC_CHECK_PROGS(BUILD_CC, [gcc clang c99 c89 cc cl],none)])
770         AC_MSG_CHECKING(for native build C compiler)
771         AC_MSG_RESULT($BUILD_CC)
772
773         AC_MSG_CHECKING(for native build C preprocessor)
774         AC_ARG_WITH(build-cpp,
775                 [  --with-build-cpp=XXX    the build C preprocessor ($BUILD_CPP)],
776                 [BUILD_CPP="$withval"],
777                 [BUILD_CPP='${BUILD_CC} -E'])
778         AC_MSG_RESULT($BUILD_CPP)
779
780         AC_MSG_CHECKING(for native build C flags)
781         AC_ARG_WITH(build-cflags,
782                 [  --with-build-cflags=XXX the build C compiler-flags ($BUILD_CFLAGS)],
783                 [BUILD_CFLAGS="$withval"])
784         AC_MSG_RESULT($BUILD_CFLAGS)
785
786         AC_MSG_CHECKING(for native build C preprocessor-flags)
787         AC_ARG_WITH(build-cppflags,
788                 [  --with-build-cppflags=XXX the build C preprocessor-flags ($BUILD_CPPFLAGS)],
789                 [BUILD_CPPFLAGS="$withval"])
790         AC_MSG_RESULT($BUILD_CPPFLAGS)
791
792         AC_MSG_CHECKING(for native build linker-flags)
793         AC_ARG_WITH(build-ldflags,
794                 [  --with-build-ldflags=XXX the build linker-flags ($BUILD_LDFLAGS)],
795                 [BUILD_LDFLAGS="$withval"])
796         AC_MSG_RESULT($BUILD_LDFLAGS)
797
798         AC_MSG_CHECKING(for native build linker-libraries)
799         AC_ARG_WITH(build-libs,
800                 [  --with-build-libs=XXX   the build libraries (${BUILD_LIBS})],
801                 [BUILD_LIBS="$withval"])
802         AC_MSG_RESULT($BUILD_LIBS)
803
804         # this assumes we're on Unix.
805         BUILD_EXEEXT=
806         BUILD_OBJEXT=o
807
808         : ${BUILD_CC:='${CC}'}
809
810         AC_MSG_CHECKING(if the build-compiler "$BUILD_CC" works)
811
812         cf_save_crossed=$cross_compiling
813         cf_save_ac_link=$ac_link
814         cross_compiling=no
815         cf_build_cppflags=$BUILD_CPPFLAGS
816         test "$cf_build_cppflags" = "#" && cf_build_cppflags=
817         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
819         AC_TRY_RUN([#include <stdio.h>
820                 int main(int argc, char *argv[])
821                 {
822                         ${cf_cv_main_return:-return}(argc < 0 || argv == 0 || argv[0] == 0);
823                 }
824         ],
825                 cf_ok_build_cc=yes,
826                 cf_ok_build_cc=no,
827                 cf_ok_build_cc=unknown)
828
829         cross_compiling=$cf_save_crossed
830         ac_link=$cf_save_ac_link
831
832         AC_MSG_RESULT($cf_ok_build_cc)
833
834         if test "$cf_ok_build_cc" != yes
835         then
836                 AC_MSG_ERROR([Cross-build requires two compilers.
837 Use --with-build-cc to specify the native compiler.])
838         fi
839
840 else
841         : ${BUILD_CC:='${CC}'}
842         : ${BUILD_CPP:='${CPP}'}
843         : ${BUILD_CFLAGS:='${CFLAGS}'}
844         : ${BUILD_CPPFLAGS:='${CPPFLAGS}'}
845         : ${BUILD_LDFLAGS:='${LDFLAGS}'}
846         : ${BUILD_LIBS:='${LIBS}'}
847         : ${BUILD_EXEEXT:='$x'}
848         : ${BUILD_OBJEXT:='o'}
849 fi
850
851 AC_SUBST(BUILD_CC)
852 AC_SUBST(BUILD_CPP)
853 AC_SUBST(BUILD_CFLAGS)
854 AC_SUBST(BUILD_CPPFLAGS)
855 AC_SUBST(BUILD_LDFLAGS)
856 AC_SUBST(BUILD_LIBS)
857 AC_SUBST(BUILD_EXEEXT)
858 AC_SUBST(BUILD_OBJEXT)
859 ])dnl
860 dnl ---------------------------------------------------------------------------
861 dnl CF_C11_NORETURN version: 4 updated: 2023/02/18 17:41:25
862 dnl ---------------
863 AC_DEFUN([CF_C11_NORETURN],
864 [
865 AC_MSG_CHECKING(if you want to use C11 _Noreturn feature)
866 CF_ARG_ENABLE(stdnoreturn,
867         [  --enable-stdnoreturn    enable C11 _Noreturn feature for diagnostics],
868         [enable_stdnoreturn=yes],
869         [enable_stdnoreturn=no])
870 AC_MSG_RESULT($enable_stdnoreturn)
871
872 if test $enable_stdnoreturn = yes; then
873 AC_CACHE_CHECK([for C11 _Noreturn feature], cf_cv_c11_noreturn,
874         [AC_TRY_COMPILE([
875 $ac_includes_default
876 #include <stdnoreturn.h>
877 static _Noreturn void giveup(void) { exit(0); }
878         ],
879         [if (feof(stdin)) giveup()],
880         cf_cv_c11_noreturn=yes,
881         cf_cv_c11_noreturn=no)
882         ])
883 else
884         cf_cv_c11_noreturn=no,
885 fi
886
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])
890         HAVE_STDNORETURN_H=1
891 else
892         HAVE_STDNORETURN_H=0
893 fi
894
895 AC_SUBST(HAVE_STDNORETURN_H)
896 AC_SUBST(STDC_NORETURN)
897 ])dnl
898 dnl ---------------------------------------------------------------------------
899 dnl CF_CC_ENV_FLAGS version: 11 updated: 2023/02/20 11:15:46
900 dnl ---------------
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.
904 dnl
905 dnl In particular, it addresses the problem of being able to run the C
906 dnl preprocessor in a consistent manner.
907 dnl
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],
912 [
913 # This should have been defined by AC_PROG_CC
914 : "${CC:=cc}"
915
916 AC_MSG_CHECKING(\$CFLAGS variable)
917 case "x$CFLAGS" in
918 (*-[[IUD]]*)
919         AC_MSG_RESULT(broken)
920         AC_MSG_WARN(your environment uses the CFLAGS variable to hold CPPFLAGS options)
921         cf_flags="$CFLAGS"
922         CFLAGS=
923         for cf_arg in $cf_flags
924         do
925                 CF_ADD_CFLAGS($cf_arg)
926         done
927         ;;
928 (*)
929         AC_MSG_RESULT(ok)
930         ;;
931 esac
932
933 AC_MSG_CHECKING(\$CC variable)
934 case "$CC" in
935 (*[[\ \ ]]-*)
936         AC_MSG_RESULT(broken)
937         AC_MSG_WARN(your environment uses the CC variable to hold CFLAGS/CPPFLAGS options)
938         # humor him...
939         cf_prog=`echo "$CC" | sed -e 's/        / /g' -e 's/[[ ]]* / /g' -e 's/[[ ]]*[[ ]]-[[^ ]].*//'`
940         cf_flags=`echo "$CC" | sed -e "s%^$cf_prog%%"`
941         CC="$cf_prog"
942         for cf_arg in $cf_flags
943         do
944                 case "x$cf_arg" in
945                 (x-[[IUDfgOW]]*)
946                         CF_ADD_CFLAGS($cf_arg)
947                         ;;
948                 (*)
949                         CC="$CC $cf_arg"
950                         ;;
951                 esac
952         done
953         CF_VERBOSE(resulting CC: '$CC')
954         CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
955         CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
956         ;;
957 (*)
958         AC_MSG_RESULT(ok)
959         ;;
960 esac
961 ])dnl
962 dnl ---------------------------------------------------------------------------
963 dnl CF_CFG_DEFAULTS version: 16 updated: 2021/01/04 19:33:05
964 dnl ---------------
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
967 dnl look for:
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.
971 dnl
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
977
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*)
983                 prefix=/usr
984                 ;;
985         (*)     prefix=$ac_default_prefix
986                 ;;
987         esac
988 fi
989 AC_MSG_RESULT($prefix)
990
991 if test "x$prefix" = "xNONE" ; then
992 AC_MSG_CHECKING(for default include-directory)
993 test -n "$verbose" && echo 1>&AC_FD_MSG
994 for cf_symbol in \
995         "$includedir" \
996         "$includedir/ncurses" \
997         "$prefix/include" \
998         "$prefix/include/ncurses" \
999         /usr/local/include \
1000         /usr/local/include/ncurses \
1001         /usr/include \
1002         /usr/include/ncurses
1003 do
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
1009                 break
1010         fi
1011         fi
1012         test -n "$verbose"  && echo "   tested $cf_dir" 1>&AC_FD_MSG
1013 done
1014 AC_MSG_RESULT($includedir)
1015 fi
1016 ])dnl
1017 dnl ---------------------------------------------------------------------------
1018 dnl CF_CGETENT version: 7 updated: 2023/02/18 17:41:25
1019 dnl ----------
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,[
1024 AC_TRY_LINK([
1025 $ac_includes_default],[
1026         char temp[128];
1027         char *buf = temp;
1028         char *db_array = temp;
1029         cgetent(&buf, &db_array, "vt100");
1030         cgetcap(buf, "tc", '=');
1031         cgetmatch(buf, "tc");
1032         ],
1033         [cf_cv_cgetent=yes],
1034         [cf_cv_cgetent=no])
1035 ])
1036
1037 if test "$cf_cv_cgetent" = yes
1038 then
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,[
1041 AC_TRY_LINK([
1042 #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers"
1043 $ac_includes_default],[
1044         char temp[128];
1045         char *buf = temp;
1046 #ifndef _NETBSD_SOURCE                  /* given, since April 2004 in stdlib.h */
1047         const char *db_array = temp;
1048         cgetent(&buf, &db_array, "vt100");
1049 #endif
1050         cgetcap(buf, "tc", '=');
1051         cgetmatch(buf, "tc");
1052         ],
1053         [cf_cv_cgetent_const=yes],
1054         [cf_cv_cgetent_const=no])
1055 ])
1056         if test "$cf_cv_cgetent_const" = yes
1057         then
1058                 AC_DEFINE_UNQUOTED(CGETENT_CONST,const,[Define to const if needed for some BSD cgetent variations])
1059         fi
1060 fi
1061 ])dnl
1062 dnl ---------------------------------------------------------------------------
1063 dnl CF_CHECK_CACHE version: 13 updated: 2020/12/31 10:54:15
1064 dnl --------------
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.
1067 dnl
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.
1072 dnl
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],
1076 [
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"
1080 else
1081         system_name="`(uname -s -r) 2>/dev/null`"
1082         if test -z "$system_name" ; then
1083                 system_name="`(hostname) 2>/dev/null`"
1084         fi
1085 fi
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"])
1088
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)
1091
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.")
1095 fi
1096 ])dnl
1097 dnl ---------------------------------------------------------------------------
1098 dnl CF_CHECK_ENVIRON version: 5 updated: 2023/02/18 17:41:25
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.
1102 dnl
1103 dnl $1 = the name to check
1104 dnl $2 = the assumed type
1105 AC_DEFUN([CF_CHECK_ENVIRON],
1106 [
1107 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1108     AC_TRY_COMPILE([
1109 $ac_includes_default],
1110     ifelse([$2],,void*,[$2]) x = (ifelse([$2],,void*,[$2])) $1; (void)x,
1111     [cf_cv_dcl_$1=yes],
1112     [cf_cv_dcl_$1=no])
1113 ])
1114
1115 if test "$cf_cv_dcl_$1" = no ; then
1116     CF_UPPER(cf_result,decl_$1)
1117     AC_DEFINE_UNQUOTED($cf_result)
1118 fi
1119
1120 # It's possible (for near-UNIX clones) that the data doesn't exist
1121 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1122 ])dnl
1123 dnl ---------------------------------------------------------------------------
1124 dnl CF_CHECK_ERRNO version: 14 updated: 2023/02/18 17:41:25
1125 dnl --------------
1126 dnl Check for data that is usually declared in <stdio.h> or <errno.h>, e.g.,
1127 dnl the 'errno' variable.  Define a DECL_xxx symbol if we must declare it
1128 dnl ourselves.
1129 dnl
1130 dnl $1 = the name to check
1131 dnl $2 = the assumed type
1132 AC_DEFUN([CF_CHECK_ERRNO],
1133 [
1134 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1135         AC_TRY_COMPILE([
1136 $ac_includes_default
1137 #include <errno.h> ],
1138         ifelse([$2],,int,[$2]) x = (ifelse([$2],,int,[$2])) $1; (void)x,
1139         [cf_cv_dcl_$1=yes],
1140         [cf_cv_dcl_$1=no])
1141 ])
1142
1143 if test "$cf_cv_dcl_$1" = no ; then
1144         CF_UPPER(cf_result,decl_$1)
1145         AC_DEFINE_UNQUOTED($cf_result)
1146 fi
1147
1148 # It's possible (for near-UNIX clones) that the data doesn't exist
1149 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1150 ])dnl
1151 dnl ---------------------------------------------------------------------------
1152 dnl CF_CHECK_EXTERN_DATA version: 5 updated: 2021/09/04 06:35:04
1153 dnl --------------------
1154 dnl Check for existence of external data in the current set of libraries.  If
1155 dnl we can modify it, it is real enough.
1156 dnl $1 = the name to check
1157 dnl $2 = its type
1158 AC_DEFUN([CF_CHECK_EXTERN_DATA],
1159 [
1160 AC_CACHE_CHECK(if external $1 exists, cf_cv_have_$1,[
1161         AC_TRY_LINK([
1162 #undef $1
1163 extern $2 $1;
1164 ],
1165         [$1 = 2],
1166         [cf_cv_have_$1=yes],
1167         [cf_cv_have_$1=no])
1168 ])
1169
1170 if test "$cf_cv_have_$1" = yes ; then
1171         CF_UPPER(cf_result,have_$1)
1172         AC_DEFINE_UNQUOTED($cf_result)
1173 fi
1174
1175 ])dnl
1176 dnl ---------------------------------------------------------------------------
1177 dnl CF_CHECK_FVISIBILITY version: 2 updated: 2020/04/04 16:16:13
1178 dnl --------------------
1179 dnl Check whether the compiler understands -fvisibility=hidden
1180 dnl
1181 dnl $1 = compiler
1182 dnl $2 = compiler-flags variable name
1183 dnl $3 = cache variable to set
1184 AC_DEFUN([CF_CHECK_FVISIBILITY],[
1185 AC_CACHE_CHECK(if $1 -fvisibility=hidden option works,$3,[
1186     cf_save_cflags="[$]$2"
1187     $2="[$]$2 -fvisibility=hidden"
1188     AC_TRY_LINK([
1189 __attribute__ ((visibility("default"))) int somefunc() {return 42;}
1190         ],[
1191         if (somefunc()) return 1;
1192 ],
1193     [$3=yes],
1194     [$3=no])
1195     $2=$cf_save_cflags
1196 ])
1197 ])dnl
1198 dnl ---------------------------------------------------------------------------
1199 dnl CF_CHECK_GETENV version: 4 updated: 2023/12/03 10:18:09
1200 dnl ---------------
1201 dnl Check if repeated getenv calls return the same pointer, e.g., it does not
1202 dnl discard the previous pointer when returning a new one.
1203 AC_DEFUN([CF_CHECK_GETENV],
1204 [
1205 AC_REQUIRE([CF_CHECK_ENVIRON])
1206 AC_CHECK_FUNC( getenv, ,, AC_MSG_ERROR(getenv not found) )
1207 AC_CHECK_FUNCS( putenv setenv strdup )
1208 AC_CACHE_CHECK(if getenv returns consistent values,cf_cv_consistent_getenv,[
1209 AC_TRY_RUN([
1210 $ac_includes_default
1211
1212 #if defined(HAVE_ENVIRON) && defined(DECL_ENVIRON) && !defined(environ)
1213 extern char **environ;  /* POSIX, but some systems are not... */
1214 #endif
1215
1216 #if defined(HAVE_STRDUP)
1217 #define str_alloc(s) strdup(s)
1218 #else
1219 #define str_alloc(s) strcpy(malloc(strlen(s) + 1, s))
1220 #endif
1221
1222 static void set_value(const char *name, const char *value)
1223 {
1224 #if defined(HAVE_SETENV)
1225         setenv(name, value, 1);
1226 #elif defined(HAVE_PUTENV)
1227         char buffer[1024];
1228         sprintf(buffer, "%s=%s", name, value);
1229         putenv(str_alloc(buffer));
1230 #else
1231 #error neither putenv/setenv found
1232 #endif
1233 }
1234 int main(void)
1235 {
1236         int pass;
1237         size_t numenv, limit, j;
1238         char **mynames;
1239         char **myvalues;
1240         char **mypointer;
1241         char *equals;
1242         for (numenv = 0; environ[numenv]; ++numenv) ;
1243         limit = numenv + 10;
1244         mynames = (char **) calloc(limit + 1, sizeof(char *));
1245         myvalues = (char **) calloc(limit + 1, sizeof(char *));
1246         mypointer = (char **) calloc(limit + 1, sizeof(char *));
1247 #if defined(HAVE_ENVIRON)
1248         for (j = 0; environ[j]; ++j) {
1249                 mynames[j] = str_alloc(environ[j]);
1250                 equals = strchr(mynames[j], '=');
1251                 if (equals != 0) {
1252                         *equals++ = '\\0';
1253                         myvalues[j] = str_alloc(equals);
1254                 } else {
1255                         myvalues[j] = str_alloc("");
1256                 }
1257         }
1258 #endif
1259         for (j = numenv; j < limit; ++j) {
1260                 char name[80];
1261                 char value[80];
1262                 size_t found;
1263                 size_t k = 0;
1264                 do {
1265                         size_t jk;
1266                         found = 0;
1267                         sprintf(name, "TERM%lu", (unsigned long) k);
1268                         for (jk = 0; jk < j; ++jk) {
1269                                 if (!strcmp(name, mynames[jk])) {
1270                                         found = 1;
1271                                         ++k;
1272                                         break;
1273                                 }
1274                         }
1275                 } while (found);
1276                 sprintf(value, "%lu:%p", (unsigned long) k, (void*)&mynames[j]);
1277                 set_value(name, value);
1278                 mynames[j] = str_alloc(name);
1279                 myvalues[j] = str_alloc(value);
1280         }
1281         for (pass = 0; pass < 3; ++pass) {
1282                 for (j = 0; j < limit; ++j) {
1283                         char *value = getenv(mynames[j]);
1284                         if (pass) {
1285                                 if (value == 0) {
1286                                         fprintf(stderr, "getenv returned null for %s\\n", mynames[j]);
1287                                         ${cf_cv_main_return:-return}(1);
1288                                 } else if (value != mypointer[j]) {
1289                                         fprintf(stderr, "getenv returned different pointer for %s\\n", mynames[j]);
1290                                         ${cf_cv_main_return:-return}(1);
1291                                 } else if (strcmp(value, myvalues[j])) {
1292                                         fprintf(stderr, "getenv returned different value for %s\\n", mynames[j]);
1293                                         ${cf_cv_main_return:-return}(1);
1294                                 }
1295                         } else {
1296                                 size_t k;
1297                                 mypointer[j] = value;
1298                                 for (k = 0; k < j; ++k) {
1299                                         if (mypointer[j] == mypointer[k]) {
1300                                                 fprintf(stderr, "getenv returned same pointer for %s and %s\\n", mynames[j], mynames[k]);
1301                                                 ${cf_cv_main_return:-return}(1);
1302                                         }
1303                                 }
1304                         }
1305                 }
1306         }
1307         ${cf_cv_main_return:-return}(0);
1308 }
1309 ],
1310 [cf_cv_consistent_getenv=yes],
1311 [cf_cv_consistent_getenv=no],
1312 [cf_cv_consistent_getenv=unknown])
1313 ])
1314
1315 if test "x$cf_cv_consistent_getenv" = xno
1316 then
1317         AC_DEFINE(HAVE_CONSISTENT_GETENV,1,[Define to 1 if getenv repeatably returns the same value for a given name])
1318 fi
1319 ])dnl
1320 dnl ---------------------------------------------------------------------------
1321 dnl CF_CHECK_GNAT_VERSION version: 4 updated: 2021/01/01 13:31:04
1322 dnl ---------------------
1323 AC_DEFUN([CF_CHECK_GNAT_VERSION],
1324 [
1325 AC_REQUIRE([CF_GNAT_VERSION])
1326 case "$cf_cv_gnat_version" in
1327 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
1328         cf_cv_prog_gnat_correct=yes
1329         ;;
1330 (*)
1331         AC_MSG_WARN(Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding.)
1332         cf_cv_prog_gnat_correct=no
1333         ;;
1334 esac
1335 ])
1336 dnl ---------------------------------------------------------------------------
1337 dnl CF_CHECK_GPM_WGETCH version: 6 updated: 2021/01/04 18:48:01
1338 dnl -------------------
1339 dnl Check if GPM is already linked with curses.  If so - and if the linkage
1340 dnl is not "weak" - warn about this because it can create problems linking
1341 dnl applications with ncurses.
1342 AC_DEFUN([CF_CHECK_GPM_WGETCH],[
1343 AC_REQUIRE([AC_PROG_EGREP])dnl
1344
1345 AC_CHECK_LIB(gpm,Gpm_Wgetch,[
1346
1347 AC_CACHE_CHECK(if GPM is weakly bound to curses library, cf_cv_check_gpm_wgetch,[
1348 cf_cv_check_gpm_wgetch=unknown
1349 if test "$cross_compiling" != yes ; then
1350
1351 cat >conftest.$ac_ext <<CF_EOF
1352 #include <gpm.h>
1353 int main(void)
1354 {
1355         Gpm_Wgetch();
1356         ${cf_cv_main_return:-return}(0);
1357 }
1358 CF_EOF
1359
1360         cf_save_LIBS="$LIBS"
1361         # This only works if we can look at the symbol table.  If a shared
1362         # library is stripped for install, we cannot use that.  So we're forced
1363         # to rely on the static library, noting that some packagers may not
1364         # include it.
1365         LIBS="-static -lgpm -dynamic $LIBS"
1366         if AC_TRY_EVAL(ac_compile) ; then
1367                 if AC_TRY_EVAL(ac_link) ; then
1368                         cf_cv_check_gpm_wgetch="`nm \"conftest$ac_exeext\" | ${EGREP-egrep} '\<wgetch\>' | ${EGREP-egrep} '\<[[vVwW]]\>'`"
1369                         test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
1370                         test -z "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=no
1371                 fi
1372         fi
1373         rm -rf ./conftest*
1374         LIBS="$cf_save_LIBS"
1375 fi
1376 ])
1377
1378 if test "$cf_cv_check_gpm_wgetch" != yes ; then
1379         AC_MSG_WARN(GPM library is already linked with curses - read the FAQ)
1380 fi
1381 ])])dnl
1382 dnl ---------------------------------------------------------------------------
1383 dnl CF_CHECK_LIBSSP version: 1 updated: 2021/10/30 10:40:19
1384 dnl ---------------
1385 dnl Check if libssp is needed, e.g., to work around misconfigured libraries
1386 dnl used in cross-compiling to MinGW.
1387 AC_DEFUN([CF_CHECK_LIBSSP],[
1388 AC_CACHE_CHECK(if ssp library is needed,cf_cv_need_libssp,[
1389 AC_TRY_LINK([
1390 #include <sys/types.h>
1391 #include <dirent.h>
1392 ],[
1393        DIR *dp = opendir(".");
1394 ],cf_cv_need_libssp=no,[
1395         cf_save_LIBS="$LIBS"
1396         LIBS="$LIBS -lssp"
1397         AC_TRY_LINK([
1398 #include <sys/types.h>
1399 #include <dirent.h>
1400         ],[
1401                    DIR *dp = opendir(".");
1402         ],cf_cv_need_libssp=yes,
1403           cf_cv_need_libssp=maybe)
1404         LIBS="$cf_save_LIBS"
1405 ])dnl
1406 ])
1407
1408 if test "x$cf_cv_need_libssp" = xyes
1409 then
1410         CF_ADD_LIB(ssp)
1411 fi
1412 ])dnl
1413 dnl ---------------------------------------------------------------------------
1414 dnl CF_CHECK_LIBTOOL_VERSION version: 2 updated: 2021/05/01 16:24:34
1415 dnl ------------------------
1416 dnl Show the version of libtool
1417 dnl
1418 dnl Save the version in a cache variable - this is not entirely a good thing,
1419 dnl but the version string from libtool is very ugly, and for bug reports it
1420 dnl might be useful to have the original string.
1421 dnl
1422 dnl There is an imitation in OpenBSD, which has no apparent use other than to
1423 dnl deny that it is GNU libtool.  Just ignore it.
1424 AC_DEFUN([CF_CHECK_LIBTOOL_VERSION],[
1425 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
1426 then
1427         AC_MSG_CHECKING(version of $LIBTOOL)
1428         CF_LIBTOOL_VERSION
1429         AC_MSG_RESULT($cf_cv_libtool_version)
1430         if test -n "$cf_cv_libtool_version"
1431         then
1432                 cf_check_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '/^$/d' -e 's,[[()]],...,g' -e 's,[[ ]],-,g' -e '2,$d'`
1433                 case "x$cf_check_libtool_version" in
1434                 (*...GNU-libtool...*)
1435                         ;;
1436                 (*)
1437                         AC_MSG_ERROR(This is not GNU libtool)
1438                         ;;
1439                 esac
1440         else
1441                 AC_MSG_ERROR(No version found for $LIBTOOL)
1442         fi
1443 else
1444         AC_MSG_ERROR(GNU libtool has not been found)
1445 fi
1446 ])dnl
1447 dnl ---------------------------------------------------------------------------
1448 dnl CF_CHECK_WCHAR_H version: 5 updated: 2023/12/03 09:21:34
1449 dnl ----------------
1450 dnl Check if wchar.h can be used, i.e., without defining _XOPEN_SOURCE_EXTENDED
1451 AC_DEFUN([CF_CHECK_WCHAR_H],[
1452 AC_CHECK_HEADERS( \
1453 wchar.h \
1454 wctype.h \
1455 )
1456 AC_CACHE_CHECK(if wchar.h can be used as is,cf_cv_wchar_h_okay,[
1457 AC_TRY_COMPILE(
1458 [
1459 $ac_includes_default
1460 #ifdef HAVE_WCHAR_H
1461 #include <wchar.h>
1462 #endif
1463 #ifdef HAVE_WCTYPE_H
1464 #include <wctype.h>
1465 #endif
1466 ],[
1467         wint_t foo = 0;
1468         int bar = iswpunct(foo); (void) bar],
1469         [cf_cv_wchar_h_okay=yes],
1470         [cf_cv_wchar_h_okay=no])])
1471
1472 if test "$cf_cv_wchar_h_okay" = no
1473 then
1474         CF_PREDEFINE(_XOPEN_SOURCE_EXTENDED)
1475 fi
1476 ])dnl
1477 dnl ---------------------------------------------------------------------------
1478 dnl CF_CHECK_WCWIDTH_GRAPHICS version: 4 updated: 2023/12/03 10:17:07
1479 dnl -------------------------
1480 dnl Most "modern" terminal emulators are based to some degree on VT100, and
1481 dnl should support line-drawing.  Even with Unicode.  There is a problem.
1482 dnl
1483 dnl While most of the VT100 graphics characters were incorporated into Unicode,
1484 dnl all of those were combined into a page of useful graphics characters.
1485 dnl
1486 dnl So far, so good.
1487 dnl
1488 dnl However, while they are useful, there are other considerations.  CJK
1489 dnl is (because of poor device resolution) often rendered as double-width
1490 dnl characters.  So... for these generally-useful characters, what should
1491 dnl be the width (to make them consistent with adjacent characters)?
1492 dnl
1493 dnl The obvious choice would have been to make this locale-dependent, and use
1494 dnl wcwidth() to tell applications what the actual width is.  That was too
1495 dnl obvious.  Instead, we have a slew of "ambiguous-width" characters.
1496 dnl See for example
1497 dnl             http://www.unicode.org/reports/tr11/tr11-29.html
1498 dnl             http://www.cl.cam.ac.uk/~mgk25/ucs/scw-proposal.html
1499 dnl
1500 dnl The EastAsianWidth-6.2.0.txt file from the Unicode organization lists
1501 dnl more than 22,000 characters, with 1281 of those as ambiguous-width.  For
1502 dnl instance, it lists half (44/96) of the Latin-1 characters as
1503 dnl ambiguous-width.  Also, all of the box-characters at 0x2500 are ambiguous.
1504 dnl
1505 dnl What this means for the implementor is that on some systems wcwidth() can
1506 dnl give bad advice.  On Solaris, some of the ambiguous widths are returned as
1507 dnl 1 (the Latin-1 characters), while others are returned as 2 (line-drawing
1508 dnl characters).  These do not necessarily match the behavior of the terminal
1509 dnl emulator.  xterm, for instance, does an optional startup check to find if
1510 dnl this problem (or similar) exists with the system's locale tables, rejecting
1511 dnl them if they are too unreliable.
1512 AC_DEFUN([CF_CHECK_WCWIDTH_GRAPHICS],[
1513 AC_CACHE_CHECK(if wcwidth agrees graphics are single-width, cf_cv_wcwidth_graphics,[
1514 cat >conftest.in <<CF_EOF
1515 -       VT100 symbols
1516 0x250c  upper left corner
1517 0x2514  lower left corner
1518 0x2510  upper right corner
1519 0x2518  lower right corner
1520 0x251c  tee pointing left
1521 0x2524  tee pointing right
1522 0x2534  tee pointing up
1523 0x252c  tee pointing down
1524 0x2500  horizontal line
1525 0x2502  vertical line
1526 0x253c  large plus or crossover
1527 0x23ba  scan line 1
1528 0x23bd  scan line 9
1529 0x25c6  diamond
1530 0x2592  checker board (stipple)
1531 0x00b0  degree symbol
1532 0x00b1  plus/minus
1533 0x00b7  bullet
1534 -       Teletype 5410v1 symbols
1535 0x2190  arrow pointing left
1536 0x2192  arrow pointing right
1537 0x2193  arrow pointing down
1538 0x2191  arrow pointing up
1539 0x2592  board of squares
1540 0x2603  lantern symbol
1541 0x25ae  solid square block
1542 -       these defaults were invented for ncurses
1543 0x23bb  scan line 3
1544 0x23bc  scan line 7
1545 0x2264  less-than-or-equal-to
1546 0x2265  greater-than-or-equal-to
1547 0x03c0  greek pi
1548 0x2260  not-equal
1549 0x00a3  pound-sterling symbol
1550 -       thick-line-drawing
1551 0x250f  upper left corner
1552 0x2517  lower left corner
1553 0x2513  upper right corner
1554 0x251b  lower right corner
1555 0x2523  tee pointing left
1556 0x252b  tee pointing right
1557 0x253b  tee pointing up
1558 0x2533  tee pointing down
1559 0x2501  horizontal line
1560 0x2503  vertical line
1561 0x254b  large plus or crossover
1562 -       double-line-drawing
1563 0x2554  upper left corner
1564 0x255a  lower left corner
1565 0x2557  upper right corner
1566 0x255d  lower right corner
1567 0x2563  tee pointing left
1568 0x2560  tee pointing right
1569 0x2569  tee pointing up
1570 0x2566  tee pointing down
1571 0x2550  horizontal line
1572 0x2551  vertical line
1573 0x256c  large plus or crossover
1574 CF_EOF
1575 AC_TRY_RUN([
1576 $ac_includes_default
1577
1578 #include <locale.h>
1579 #include <wchar.h>
1580
1581 #define MY_LEN 80
1582
1583 int
1584 main(void)
1585 {
1586         FILE *fp;
1587         unsigned value;
1588         char buffer[MY_LEN + 1];
1589         char notes[MY_LEN + 1];
1590         int totals = 0;
1591         int passed = 0;
1592
1593         if (setlocale(LC_ALL, "en_US.UTF8") ||
1594                 setlocale(LC_ALL, "en_US.UTF-8") ||
1595                 setlocale(LC_ALL, "en_US.utf8") ||
1596                 setlocale(LC_ALL, "en_US.utf-8")) {
1597                 if ((fp = fopen("conftest.in", "r")) != 0) {
1598                         while (fgets(buffer, MY_LEN, fp) != 0) {
1599                                 if (*buffer == '-') {
1600                                         fprintf(stderr, "\\t%s", buffer);
1601                                 } else if (sscanf(buffer, "%x %s", &value, notes) == 2) {
1602                                         ++totals;
1603                                         if (wcwidth((int)value) == 1)
1604                                                 ++passed;
1605                                         fprintf(stderr, "%d\\t%s", wcwidth((int)value), buffer);
1606                                 } else {
1607                                         fprintf(stderr, "?\\t%s", buffer);
1608                                 }
1609                         }
1610                 }
1611         }
1612         fprintf(stderr, "%d/%d passed wcwidth/graphics check\\n", passed, totals);
1613         return (totals == passed) ? 0 : 1;
1614 }
1615 ],
1616 [cf_cv_wcwidth_graphics=yes],
1617 [cf_cv_wcwidth_graphics=no],
1618 [cf_cv_wcwidth_graphics=unknown])
1619 ])
1620 ])dnl
1621 dnl ---------------------------------------------------------------------------
1622 dnl CF_CLANG_COMPILER version: 9 updated: 2023/02/18 17:41:25
1623 dnl -----------------
1624 dnl Check if the given compiler is really clang.  clang's C driver defines
1625 dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
1626 dnl not ignore some gcc options.
1627 dnl
1628 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
1629 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
1630 dnl the wrappers for gcc and g++ warnings.
1631 dnl
1632 dnl $1 = GCC (default) or GXX
1633 dnl $2 = CLANG_COMPILER (default)
1634 dnl $3 = CFLAGS (default) or CXXFLAGS
1635 AC_DEFUN([CF_CLANG_COMPILER],[
1636 ifelse([$2],,CLANG_COMPILER,[$2])=no
1637
1638 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
1639         AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
1640         cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
1641         AC_TRY_COMPILE([],[
1642 #ifdef __clang__
1643 #else
1644 #error __clang__ is not defined
1645 #endif
1646 ],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
1647 ],[])
1648         ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
1649         AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
1650 fi
1651
1652 CLANG_VERSION=none
1653
1654 if test "x$ifelse([$2],,CLANG_COMPILER,[$2])" = "xyes" ; then
1655         case "$CC" in
1656         (c[[1-9]][[0-9]]|*/c[[1-9]][[0-9]])
1657                 AC_MSG_WARN(replacing broken compiler alias $CC)
1658                 CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`"
1659                 CC=clang
1660                 ;;
1661         esac
1662
1663         AC_MSG_CHECKING(version of $CC)
1664         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.]].*//'`"
1665         test -z "$CLANG_VERSION" && CLANG_VERSION=unknown
1666         AC_MSG_RESULT($CLANG_VERSION)
1667
1668         for cf_clang_opt in \
1669                 -Qunused-arguments \
1670                 -Wno-error=implicit-function-declaration
1671         do
1672                 AC_MSG_CHECKING(if option $cf_clang_opt works)
1673                 cf_save_CFLAGS="$CFLAGS"
1674                 CFLAGS="$CFLAGS $cf_clang_opt"
1675                 AC_TRY_LINK([
1676                         #include <stdio.h>],[
1677                         printf("hello!\\n");],[
1678                         cf_clang_optok=yes],[
1679                         cf_clang_optok=no])
1680                 AC_MSG_RESULT($cf_clang_optok)
1681                 CFLAGS="$cf_save_CFLAGS"
1682                 if test "$cf_clang_optok" = yes; then
1683                         CF_VERBOSE(adding option $cf_clang_opt)
1684                         CF_APPEND_TEXT(CFLAGS,$cf_clang_opt)
1685                 fi
1686         done
1687 fi
1688 ])
1689 dnl ---------------------------------------------------------------------------
1690 dnl CF_CONST_X_STRING version: 8 updated: 2023/12/01 17:22:50
1691 dnl -----------------
1692 dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
1693 dnl character-strings.
1694 dnl
1695 dnl It is ambiguous because the specification accommodated the pre-ANSI
1696 dnl compilers bundled by more than one vendor in lieu of providing a standard C
1697 dnl compiler other than by costly add-ons.  Because of this, the specification
1698 dnl did not take into account the use of const for telling the compiler that
1699 dnl string literals would be in readonly memory.
1700 dnl
1701 dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
1702 dnl let the compiler decide how to represent Xt's strings which were #define'd.
1703 dnl That does not solve the problem of using the block of Xt's strings which
1704 dnl are compiled into the library (and is less efficient than one might want).
1705 dnl
1706 dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
1707 dnl when compiling the library and compiling using the library, to tell the
1708 dnl compiler that String is const.
1709 AC_DEFUN([CF_CONST_X_STRING],
1710 [
1711 AC_REQUIRE([AC_PATH_XTRA])
1712
1713 CF_SAVE_XTRA_FLAGS([CF_CONST_X_STRING])
1714
1715 AC_TRY_COMPILE(
1716 [
1717 #include <stdlib.h>
1718 #include <X11/Intrinsic.h>
1719 ],
1720 [String foo = malloc(1); free((void*)foo)],[
1721
1722 AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
1723         AC_TRY_COMPILE(
1724                 [
1725 #undef  _CONST_X_STRING
1726 #define _CONST_X_STRING /* X11R7.8 (perhaps) */
1727 #undef  XTSTRINGDEFINES /* X11R5 and later */
1728 #include <stdlib.h>
1729 #include <X11/Intrinsic.h>
1730                 ],[String foo = malloc(1); *foo = 0],[
1731                         cf_cv_const_x_string=no
1732                 ],[
1733                         cf_cv_const_x_string=yes
1734                 ])
1735 ])
1736
1737 CF_RESTORE_XTRA_FLAGS([CF_CONST_X_STRING])
1738
1739 case "$cf_cv_const_x_string" in
1740 (no)
1741         CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
1742         ;;
1743 (*)
1744         CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
1745         ;;
1746 esac
1747
1748 ])
1749 ])dnl
1750 dnl ---------------------------------------------------------------------------
1751 dnl CF_CPP_OVERRIDE version: 1 updated: 2022/08/20 16:07:10
1752 dnl ---------------
1753 dnl Check if the C++ compiler accepts the override keyword.  This is a C++-11
1754 dnl feature.
1755 AC_DEFUN([CF_CPP_OVERRIDE],
1756 [
1757 if test -n "$CXX"; then
1758 AC_CACHE_CHECK(if $CXX accepts override keyword,cf_cv_cpp_override,[
1759         AC_LANG_SAVE
1760         AC_LANG_CPLUSPLUS
1761         AC_TRY_RUN([
1762
1763 class base
1764 {
1765 public:
1766         virtual int foo(float x) = 0; 
1767 };
1768
1769
1770 class derived: public base
1771 {
1772 public:
1773         int foo(float x) override { return x != 0.0 ? 1 : 0; }
1774 };
1775
1776 int main(void) { }
1777 ],
1778         [cf_cv_cpp_override=yes],
1779         [cf_cv_cpp_override=no],
1780         [cf_cv_cpp_override=unknown])
1781         AC_LANG_RESTORE
1782 ])
1783 fi
1784 test "$cf_cv_cpp_override" = yes && AC_DEFINE(CPP_HAS_OVERRIDE,1,[Define to 1 if C++ has override keyword])
1785 ])dnl
1786 dnl ---------------------------------------------------------------------------
1787 dnl CF_CPP_PARAM_INIT version: 7 updated: 2017/01/21 11:06:25
1788 dnl -----------------
1789 dnl Check if the C++ compiler accepts duplicate parameter initialization.  This
1790 dnl is a late feature for the standard and is not in some recent compilers
1791 dnl (1999/9/11).
1792 AC_DEFUN([CF_CPP_PARAM_INIT],
1793 [
1794 if test -n "$CXX"; then
1795 AC_CACHE_CHECK(if $CXX accepts parameter initialization,cf_cv_cpp_param_init,[
1796         AC_LANG_SAVE
1797         AC_LANG_CPLUSPLUS
1798         AC_TRY_RUN([
1799 class TEST {
1800 private:
1801         int value;
1802 public:
1803         TEST(int x = 1);
1804         ~TEST();
1805 };
1806
1807 TEST::TEST(int x = 1)   // some compilers do not like second initializer
1808 {
1809         value = x;
1810 }
1811 int main(void) { }
1812 ],
1813         [cf_cv_cpp_param_init=yes],
1814         [cf_cv_cpp_param_init=no],
1815         [cf_cv_cpp_param_init=unknown])
1816         AC_LANG_RESTORE
1817 ])
1818 fi
1819 test "$cf_cv_cpp_param_init" = yes && AC_DEFINE(CPP_HAS_PARAM_INIT,1,[Define to 1 if C++ has parameter initialization])
1820 ])dnl
1821 dnl ---------------------------------------------------------------------------
1822 dnl CF_CPP_STATIC_CAST version: 3 updated: 2013/04/13 18:03:21
1823 dnl ------------------
1824 dnl Check if the C++ compiler accepts static_cast in generics.  This appears to
1825 dnl not be supported in g++ before 3.0
1826 AC_DEFUN([CF_CPP_STATIC_CAST],
1827 [
1828 if test -n "$CXX"; then
1829
1830 AC_CACHE_CHECK(if $CXX accepts static_cast,cf_cv_cpp_static_cast,[
1831         AC_LANG_SAVE
1832         AC_LANG_CPLUSPLUS
1833
1834         AC_TRY_COMPILE([
1835 class NCursesPanel
1836 {
1837 public:
1838   NCursesPanel(int nlines,
1839                int ncols,
1840                int begin_y = 0,
1841                int begin_x = 0)
1842   {
1843   }
1844   NCursesPanel();
1845   ~NCursesPanel();
1846 };
1847
1848 template<class T> class NCursesUserPanel : public NCursesPanel
1849 {
1850 public:
1851   NCursesUserPanel (int nlines,
1852                     int ncols,
1853                     int begin_y = 0,
1854                     int begin_x = 0,
1855                     const T* p_UserData = static_cast<T*>(0))
1856     : NCursesPanel (nlines, ncols, begin_y, begin_x)
1857   {
1858   };
1859   NCursesUserPanel(const T* p_UserData = static_cast<T*>(0)) : NCursesPanel()
1860   {
1861   };
1862
1863   virtual ~NCursesUserPanel() {};
1864 };
1865 ],[
1866         const char* p_UserData = static_cast<char*>(0)],
1867         [cf_cv_cpp_static_cast=yes],
1868         [cf_cv_cpp_static_cast=no])
1869
1870         AC_LANG_RESTORE
1871 ])
1872
1873 fi
1874
1875 test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST,1,[Define to 1 if C++ has static_cast])
1876 ])dnl
1877 dnl ---------------------------------------------------------------------------
1878 dnl CF_CXX_AR_FLAGS version: 3 updated: 2021/01/01 13:31:04
1879 dnl ---------------
1880 dnl Setup special archiver flags for given compilers.
1881 AC_DEFUN([CF_CXX_AR_FLAGS],[
1882         CXX_AR='$(AR)'
1883         CXX_ARFLAGS='$(ARFLAGS)'
1884         case "$cf_cv_system_name" in
1885         (irix*)
1886             if test "$GXX" != yes ; then
1887                 CXX_AR='$(CXX)'
1888                 CXX_ARFLAGS='-ar -o'
1889             fi
1890             ;;
1891         (sco3.2v5*)
1892             CXXLDFLAGS="-u main"
1893             ;;
1894         (solaris2*)
1895             if test "$GXX" != yes ; then
1896                 CXX_AR='$(CXX)'
1897                 CXX_ARFLAGS='-xar -o'
1898             fi
1899             ;;
1900         esac
1901         AC_SUBST(CXXLDFLAGS)
1902         AC_SUBST(CXX_AR)
1903         AC_SUBST(CXX_ARFLAGS)
1904 ])dnl
1905 dnl ---------------------------------------------------------------------------
1906 dnl CF_CXX_IOSTREAM_NAMESPACE version: 2 updated: 2012/10/06 17:56:13
1907 dnl -------------------------
1908 dnl For c++, check if iostream uses "std::" namespace.
1909 AC_DEFUN([CF_CXX_IOSTREAM_NAMESPACE],[
1910 AC_CHECK_HEADERS(iostream)
1911 if test x"$ac_cv_header_iostream" = xyes ; then
1912         AC_MSG_CHECKING(if iostream uses std-namespace)
1913         AC_TRY_COMPILE([
1914 #include <iostream>
1915 using std::endl;
1916 using std::cerr;],[
1917 cerr << "testing" << endl;
1918 ],[cf_iostream_namespace=yes],[cf_iostream_namespace=no])
1919         AC_MSG_RESULT($cf_iostream_namespace)
1920         if test "$cf_iostream_namespace" = yes ; then
1921                 AC_DEFINE(IOSTREAM_NAMESPACE,1,[Define to 1 if C++ has namespace iostream])
1922         fi
1923 fi
1924 ])dnl
1925 dnl ---------------------------------------------------------------------------
1926 dnl CF_C_INLINE version: 6 updated: 2019/09/07 13:38:36
1927 dnl -----------
1928 dnl Check if the C compiler supports "inline".
1929 dnl $1 is the name of a shell variable to set if inline is supported
1930 dnl $2 is the threshold for gcc 4.x's option controlling maximum inline size
1931 AC_DEFUN([CF_C_INLINE],[
1932 AC_REQUIRE([CF_GCC_VERSION])
1933 AC_C_INLINE
1934 $1=
1935 if test "$ac_cv_c_inline" != no ; then
1936         $1=inline
1937         if test "$INTEL_COMPILER" = yes
1938         then
1939                 :
1940         elif test "$CLANG_COMPILER" = yes
1941         then
1942                 :
1943         elif test "$GCC" = yes
1944         then
1945                 AC_CACHE_CHECK(if $CC supports options to tune inlining,cf_cv_gcc_inline,[
1946                 cf_save_CFLAGS=$CFLAGS
1947                 CFLAGS="$CFLAGS --param max-inline-insns-single=$2"
1948                 AC_TRY_COMPILE([inline int foo(void) { return 1; }],
1949                 [${cf_cv_main_return:-return} foo()],
1950                 [cf_cv_gcc_inline=yes],
1951                 [cf_cv_gcc_inline=no])
1952                 CFLAGS=$cf_save_CFLAGS
1953                 ])
1954                 if test "$cf_cv_gcc_inline" = yes ; then
1955                         CF_ADD_CFLAGS([--param max-inline-insns-single=$2])
1956                 fi
1957         fi
1958 fi
1959 AC_SUBST($1)
1960 ])dnl
1961 dnl ---------------------------------------------------------------------------
1962 dnl CF_DIRNAME version: 5 updated: 2020/12/31 20:19:42
1963 dnl ----------
1964 dnl "dirname" is not portable, so we fake it with a shell script.
1965 AC_DEFUN([CF_DIRNAME],[$1=`echo "$2" | sed -e 's%/[[^/]]*$%%'`])dnl
1966 dnl ---------------------------------------------------------------------------
1967 dnl CF_DIRS_TO_MAKE version: 4 updated: 2021/01/01 13:31:04
1968 dnl ---------------
1969 AC_DEFUN([CF_DIRS_TO_MAKE],
1970 [
1971 DIRS_TO_MAKE="lib"
1972 for cf_item in $cf_list_models
1973 do
1974         CF_OBJ_SUBDIR($cf_item,cf_subdir)
1975         for cf_item2 in $DIRS_TO_MAKE
1976         do
1977                 test "$cf_item2" = "$cf_subdir" && break
1978         done
1979         test ".$cf_item2" != ".$cf_subdir" && DIRS_TO_MAKE="$DIRS_TO_MAKE $cf_subdir"
1980 done
1981 for cf_dir in $DIRS_TO_MAKE
1982 do
1983         test ! -d "$cf_dir" && mkdir "$cf_dir"
1984 done
1985 AC_SUBST(DIRS_TO_MAKE)
1986 ])dnl
1987 dnl ---------------------------------------------------------------------------
1988 dnl CF_DISABLE_ECHO version: 14 updated: 2021/09/04 06:35:04
1989 dnl ---------------
1990 dnl You can always use "make -n" to see the actual options, but it is hard to
1991 dnl pick out/analyze warning messages when the compile-line is long.
1992 dnl
1993 dnl Sets:
1994 dnl     ECHO_LT - symbol to control if libtool is verbose
1995 dnl     ECHO_LD - symbol to prefix "cc -o" lines
1996 dnl     RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
1997 dnl     SHOW_CC - symbol to put before explicit "cc -c" lines
1998 dnl     ECHO_CC - symbol to put before any "cc" line
1999 dnl
2000 AC_DEFUN([CF_DISABLE_ECHO],[
2001 AC_MSG_CHECKING(if you want to see long compiling messages)
2002 CF_ARG_DISABLE(echo,
2003         [  --disable-echo          do not display "compiling" commands],
2004         [
2005         ECHO_LT='--silent'
2006         ECHO_LD='@echo linking [$]@;'
2007         RULE_CC='@echo compiling [$]<'
2008         SHOW_CC='@echo compiling [$]@'
2009         ECHO_CC='@'
2010 ],[
2011         ECHO_LT=''
2012         ECHO_LD=''
2013         RULE_CC=''
2014         SHOW_CC=''
2015         ECHO_CC=''
2016 ])
2017 AC_MSG_RESULT($enableval)
2018 AC_SUBST(ECHO_LT)
2019 AC_SUBST(ECHO_LD)
2020 AC_SUBST(RULE_CC)
2021 AC_SUBST(SHOW_CC)
2022 AC_SUBST(ECHO_CC)
2023 ])dnl
2024 dnl ---------------------------------------------------------------------------
2025 dnl CF_DISABLE_GNAT_PROJECTS version: 1 updated: 2014/06/01 11:34:00
2026 dnl ------------------------
2027 AC_DEFUN([CF_DISABLE_GNAT_PROJECTS],[
2028 AC_MSG_CHECKING(if we want to use GNAT projects)
2029 CF_ARG_DISABLE(gnat-projects,
2030         [  --disable-gnat-projects test: disable GNAT projects even if usable],
2031         [enable_gnat_projects=no],
2032         [enable_gnat_projects=yes])
2033 AC_MSG_RESULT($enable_gnat_projects)
2034 ])dnl
2035 dnl ---------------------------------------------------------------------------
2036 dnl CF_DISABLE_LEAKS version: 9 updated: 2021/04/03 16:41:50
2037 dnl ----------------
2038 dnl Combine no-leak checks with the libraries or tools that are used for the
2039 dnl checks.
2040 AC_DEFUN([CF_DISABLE_LEAKS],[
2041
2042 AC_REQUIRE([CF_WITH_DMALLOC])
2043 AC_REQUIRE([CF_WITH_DBMALLOC])
2044 AC_REQUIRE([CF_WITH_VALGRIND])
2045
2046 AC_MSG_CHECKING(if you want to perform memory-leak testing)
2047 AC_ARG_ENABLE(leaks,
2048         [  --disable-leaks         test: free permanent memory, analyze leaks],
2049         [enable_leaks=$enableval],
2050         [enable_leaks=yes])
2051 dnl with_no_leaks is more readable...
2052 if test "x$enable_leaks" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi
2053 AC_MSG_RESULT($with_no_leaks)
2054
2055 if test "$enable_leaks" = no ; then
2056         AC_DEFINE(NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
2057         AC_DEFINE(YY_NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
2058 fi
2059 ])dnl
2060 dnl ---------------------------------------------------------------------------
2061 dnl CF_DISABLE_LIBTOOL_VERSION version: 3 updated: 2015/04/17 21:13:04
2062 dnl --------------------------
2063 dnl Check if we should use the libtool 1.5 feature "-version-number" instead of
2064 dnl the older "-version-info" feature.  The newer feature allows us to use
2065 dnl version numbering on shared libraries which make them compatible with
2066 dnl various systems.
2067 AC_DEFUN([CF_DISABLE_LIBTOOL_VERSION],
2068 [
2069 AC_MSG_CHECKING(if libtool -version-number should be used)
2070 CF_ARG_DISABLE(libtool-version,
2071         [  --disable-libtool-version  enable to use libtool's incompatible naming scheme],
2072         [cf_libtool_version=no],
2073         [cf_libtool_version=yes])
2074 AC_MSG_RESULT($cf_libtool_version)
2075
2076 if test "$cf_libtool_version" = yes ; then
2077         LIBTOOL_VERSION="-version-number"
2078 else
2079         LIBTOOL_VERSION="-version-info"
2080         case "x$VERSION" in
2081         (x)
2082                 AC_MSG_WARN(VERSION was not set)
2083                 ;;
2084         (x*.*.*)
2085                 ABI_VERSION="$VERSION"
2086                 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
2087                 ;;
2088         (x*:*:*)
2089                 ABI_VERSION=`echo "$VERSION" | sed -e 's/:/./g'`
2090                 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
2091                 ;;
2092         (*)
2093                 AC_MSG_WARN(unexpected VERSION value: $VERSION)
2094                 ;;
2095         esac
2096 fi
2097
2098 AC_SUBST(ABI_VERSION)
2099 AC_SUBST(LIBTOOL_VERSION)
2100 ])dnl
2101 dnl ---------------------------------------------------------------------------
2102 dnl CF_DISABLE_RPATH_HACK version: 3 updated: 2021/01/05 20:14:44
2103 dnl ---------------------
2104 dnl The rpath-hack makes it simpler to build programs, particularly with the
2105 dnl *BSD ports which may have essential libraries in unusual places.  But it
2106 dnl can interfere with building an executable for the base system.  Use this
2107 dnl option in that case.
2108 AC_DEFUN([CF_DISABLE_RPATH_HACK],
2109 [
2110 AC_MSG_CHECKING(if rpath-hack should be disabled)
2111 CF_ARG_DISABLE(rpath-hack,
2112         [  --disable-rpath-hack    don't add rpath options for additional libraries],
2113         [enable_rpath_hack=no],
2114         [enable_rpath_hack=yes])
2115 dnl TODO - drop cf_disable_rpath_hack
2116 if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi
2117 AC_MSG_RESULT($cf_disable_rpath_hack)
2118
2119 if test "$enable_rpath_hack" = yes ; then
2120         CF_RPATH_HACK
2121 fi
2122 ])
2123 dnl ---------------------------------------------------------------------------
2124 dnl CF_ENABLE_BROKEN_LINKER version: 2 updated: 2021/01/02 17:09:14
2125 dnl -----------------------
2126 dnl Some linkers cannot reference a data-only object.  Cygwin used to be one.
2127 dnl This usually follows CF_LINK_DATAONLY, but is not required in case we need
2128 dnl an unconditional feature.
2129 AC_DEFUN([CF_ENABLE_BROKEN_LINKER],[
2130
2131 AC_MSG_CHECKING(if you want broken-linker support code)
2132 AC_ARG_ENABLE(broken_linker,
2133         [  --enable-broken_linker  compile with broken-linker support code],
2134         [with_broken_linker=$enableval],
2135         [with_broken_linker=no])
2136 AC_MSG_RESULT($with_broken_linker)
2137
2138 : "${BROKEN_LINKER:=0}"
2139 if test "x$with_broken_linker" = xyes ; then
2140         AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
2141         BROKEN_LINKER=1
2142 fi
2143 AC_SUBST(BROKEN_LINKER)
2144 ])dnl
2145 dnl ---------------------------------------------------------------------------
2146 dnl CF_ENABLE_PC_FILES version: 16 updated: 2021/11/20 12:48:37
2147 dnl ------------------
2148 dnl This is the "--enable-pc-files" option, which is available if there is a
2149 dnl pkg-config configuration on the local machine.
2150 AC_DEFUN([CF_ENABLE_PC_FILES],[
2151 AC_REQUIRE([CF_PKG_CONFIG])
2152 AC_REQUIRE([CF_WITH_PKG_CONFIG_LIBDIR])
2153
2154 if test "x$PKG_CONFIG" != xnone
2155 then
2156         AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
2157 else
2158         AC_MSG_CHECKING(if we should install .pc files)
2159 fi
2160
2161 AC_ARG_ENABLE(pc-files,
2162         [  --enable-pc-files       generate and install .pc files for pkg-config],
2163         [enable_pc_files=$enableval],
2164         [enable_pc_files=no])
2165 AC_MSG_RESULT($enable_pc_files)
2166
2167 if test "x$enable_pc_files" != xno
2168 then
2169         MAKE_PC_FILES=
2170         case "x$PKG_CONFIG_LIBDIR" in
2171         (xno|xnone|xyes|x)
2172                 AC_MSG_WARN(no PKG_CONFIG_LIBDIR was found)
2173                 ;;
2174         (*)
2175                 cf_pkg_config_libdir="$PKG_CONFIG_LIBDIR"
2176                 CF_PATH_SYNTAX(cf_pkg_config_libdir)
2177                 ;;
2178         esac
2179 else
2180         MAKE_PC_FILES="#"
2181 fi
2182 AC_SUBST(MAKE_PC_FILES)
2183 ])dnl
2184 dnl ---------------------------------------------------------------------------
2185 dnl CF_ENABLE_RPATH version: 2 updated: 2010/03/27 18:39:42
2186 dnl ---------------
2187 dnl Check if the rpath option should be used, setting cache variable
2188 dnl cf_cv_enable_rpath if so.
2189 AC_DEFUN([CF_ENABLE_RPATH],
2190 [
2191 AC_MSG_CHECKING(if rpath option should be used)
2192 AC_ARG_ENABLE(rpath,
2193 [  --enable-rpath          use rpath option when generating shared libraries],
2194 [cf_cv_enable_rpath=$enableval],
2195 [cf_cv_enable_rpath=no])
2196 AC_MSG_RESULT($cf_cv_enable_rpath)
2197 ])dnl
2198 dnl ---------------------------------------------------------------------------
2199 dnl CF_ENABLE_STRING_HACKS version: 6 updated: 2021/01/05 19:23:48
2200 dnl ----------------------
2201 dnl On a few platforms, the compiler and/or loader nags with untruthful
2202 dnl comments stating that "most" uses of strcat/strcpy/sprintf are incorrect,
2203 dnl and implying that most uses of the recommended alternatives are correct.
2204 dnl
2205 dnl Factually speaking, no one has actually counted the number of uses of these
2206 dnl functions versus the total of incorrect uses.  Samples of a few thousand
2207 dnl instances are meaningless compared to the hundreds of millions of lines of
2208 dnl existing C code.
2209 dnl
2210 dnl strlcat/strlcpy are (as of 2012) non-standard, and are available on some
2211 dnl platforms, in implementations of varying quality.  Likewise, snprintf is
2212 dnl standard - but evolved through phases, and older implementations are likely
2213 dnl to yield surprising results, as documented in manpages on various systems.
2214 AC_DEFUN([CF_ENABLE_STRING_HACKS],
2215 [
2216 AC_MSG_CHECKING(if you want to work around bogus compiler/loader warnings)
2217 AC_ARG_ENABLE(string-hacks,
2218         [  --enable-string-hacks   work around bogus compiler/loader warnings],
2219         [enable_string_hacks=$enableval],
2220         [enable_string_hacks=no])
2221 AC_MSG_RESULT($enable_string_hacks)
2222
2223 if test "x$enable_string_hacks" = "xyes"; then
2224         AC_DEFINE(USE_STRING_HACKS,1,[Define to 1 to work around bogus compiler/loader warnings])
2225         AC_MSG_WARN(enabling string-hacks to work around bogus compiler/loader warnings)
2226         AC_CHECK_FUNC(strlcat,[
2227                 AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2228                 ],[
2229                 AC_CHECK_LIB(bsd,strlcat,[
2230                         CF_ADD_LIB(bsd)
2231                         AC_CHECK_HEADERS(bsd/string.h)
2232                         AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2233                         ])
2234                 ])
2235         AC_CHECK_FUNCS( strlcpy snprintf )
2236 fi
2237 ])dnl
2238 dnl ---------------------------------------------------------------------------
2239 dnl CF_ENABLE_WARNINGS version: 9 updated: 2021/01/05 19:40:50
2240 dnl ------------------
2241 dnl Configure-option to enable gcc warnings
2242 dnl
2243 dnl $1 = extra options to add, if supported
2244 dnl $2 = option for checking attributes.  By default, this is done when
2245 dnl      warnings are enabled.  For other values:
2246 dnl      yes: always do this, e.g., to use in generated library-headers
2247 dnl      no: never do this
2248 AC_DEFUN([CF_ENABLE_WARNINGS],[
2249 if test "$GCC" = yes || test "$GXX" = yes
2250 then
2251 CF_FIX_WARNINGS(CFLAGS)
2252 CF_FIX_WARNINGS(CPPFLAGS)
2253 CF_FIX_WARNINGS(LDFLAGS)
2254 AC_MSG_CHECKING(if you want to turn on gcc warnings)
2255 CF_ARG_ENABLE(warnings,
2256         [  --enable-warnings       test: turn on gcc compiler warnings],
2257         [enable_warnings=yes],
2258         [enable_warnings=no])
2259 AC_MSG_RESULT($enable_warnings)
2260 if test "$enable_warnings" = "yes"
2261 then
2262         ifelse($2,,[CF_GCC_ATTRIBUTES])
2263         CF_GCC_WARNINGS($1)
2264 fi
2265 ifelse($2,yes,[CF_GCC_ATTRIBUTES])
2266 fi
2267 ])dnl
2268 dnl ---------------------------------------------------------------------------
2269 dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39
2270 dnl --------
2271 dnl Check if 'errno' is declared in <errno.h>
2272 AC_DEFUN([CF_ERRNO],
2273 [
2274 CF_CHECK_ERRNO(errno)
2275 ])dnl
2276 dnl ---------------------------------------------------------------------------
2277 dnl CF_ETIP_DEFINES version: 7 updated: 2023/10/28 11:59:01
2278 dnl ---------------
2279 dnl Test for conflicting definitions of exception in gcc 2.8.0, etc., between
2280 dnl math.h and builtin.h, only for ncurses
2281 AC_DEFUN([CF_ETIP_DEFINES],
2282 [
2283 AC_MSG_CHECKING(for special defines needed for etip.h)
2284 cf_save_CXXFLAGS="$CXXFLAGS"
2285 cf_result="none"
2286
2287 # etip.h includes ncurses.h which includes ncurses_dll.h
2288 # But ncurses_dll.h is generated - fix here.
2289 test -d include || mkdir include
2290 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
2291
2292 for cf_math in "" MATH_H
2293 do
2294 for cf_excp in "" MATH_EXCEPTION
2295 do
2296         CXXFLAGS="$cf_save_CXXFLAGS -I${srcdir}/c++ -I${srcdir}/menu -Iinclude -I${srcdir}/include"
2297         test -n "$cf_math" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_math}"
2298         test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}"
2299 AC_TRY_COMPILE([
2300 #include <etip.h.in>
2301 ],[],[
2302         test -n "$cf_math" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_math})
2303         test -n "$cf_excp" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_excp})
2304         cf_result="$cf_math $cf_excp"
2305         break 2
2306 ],[])
2307 done
2308 done
2309 AC_MSG_RESULT([${cf_result:-(none)}])
2310 CXXFLAGS="$cf_save_CXXFLAGS"
2311 ])
2312 dnl ---------------------------------------------------------------------------
2313 dnl CF_FIND_LINKAGE version: 22 updated: 2020/12/31 20:19:42
2314 dnl ---------------
2315 dnl Find a library (specifically the linkage used in the code fragment),
2316 dnl searching for it if it is not already in the library path.
2317 dnl See also CF_ADD_SEARCHPATH.
2318 dnl
2319 dnl Parameters (4-on are optional):
2320 dnl     $1 = headers for library entrypoint
2321 dnl     $2 = code fragment for library entrypoint
2322 dnl     $3 = the library name without the "-l" option or ".so" suffix.
2323 dnl     $4 = action to perform if successful (default: update CPPFLAGS, etc)
2324 dnl     $5 = action to perform if not successful
2325 dnl     $6 = module name, if not the same as the library name
2326 dnl     $7 = extra libraries
2327 dnl
2328 dnl Sets these variables:
2329 dnl     $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
2330 dnl     $cf_cv_header_path_$3 - include-directory if needed
2331 dnl     $cf_cv_library_path_$3 - library-directory if needed
2332 dnl     $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
2333 AC_DEFUN([CF_FIND_LINKAGE],[
2334
2335 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
2336 # will be set on completion of the AC_TRY_LINK below.
2337 cf_cv_header_path_$3=
2338 cf_cv_library_path_$3=
2339
2340 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
2341
2342 cf_save_LIBS="$LIBS"
2343
2344 AC_TRY_LINK([$1],[$2],[
2345         cf_cv_find_linkage_$3=yes
2346         cf_cv_header_path_$3=/usr/include
2347         cf_cv_library_path_$3=/usr/lib
2348 ],[
2349
2350 LIBS="-l$3 $7 $cf_save_LIBS"
2351
2352 AC_TRY_LINK([$1],[$2],[
2353         cf_cv_find_linkage_$3=yes
2354         cf_cv_header_path_$3=/usr/include
2355         cf_cv_library_path_$3=/usr/lib
2356         cf_cv_library_file_$3="-l$3"
2357 ],[
2358         cf_cv_find_linkage_$3=no
2359         LIBS="$cf_save_LIBS"
2360
2361         CF_VERBOSE(find linkage for $3 library)
2362         CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
2363
2364         cf_save_CPPFLAGS="$CPPFLAGS"
2365         cf_test_CPPFLAGS="$CPPFLAGS"
2366
2367         CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
2368         for cf_cv_header_path_$3 in $cf_search
2369         do
2370                 if test -d "$cf_cv_header_path_$3" ; then
2371                         CF_VERBOSE(... testing $cf_cv_header_path_$3)
2372                         CPPFLAGS="$cf_save_CPPFLAGS"
2373                         CF_APPEND_TEXT(CPPFLAGS,-I$cf_cv_header_path_$3)
2374                         AC_TRY_COMPILE([$1],[$2],[
2375                                 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
2376                                 cf_cv_find_linkage_$3=maybe
2377                                 cf_test_CPPFLAGS="$CPPFLAGS"
2378                                 break],[
2379                                 CPPFLAGS="$cf_save_CPPFLAGS"
2380                                 ])
2381                 fi
2382         done
2383
2384         if test "$cf_cv_find_linkage_$3" = maybe ; then
2385
2386                 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
2387
2388                 cf_save_LIBS="$LIBS"
2389                 cf_save_LDFLAGS="$LDFLAGS"
2390
2391                 ifelse([$6],,,[
2392                 CPPFLAGS="$cf_test_CPPFLAGS"
2393                 LIBS="-l$3 $7 $cf_save_LIBS"
2394                 AC_TRY_LINK([$1],[$2],[
2395                         CF_VERBOSE(... found $3 library in system)
2396                         cf_cv_find_linkage_$3=yes])
2397                         CPPFLAGS="$cf_save_CPPFLAGS"
2398                         LIBS="$cf_save_LIBS"
2399                         ])
2400
2401                 if test "$cf_cv_find_linkage_$3" != yes ; then
2402                         CF_LIBRARY_PATH(cf_search,$3)
2403                         for cf_cv_library_path_$3 in $cf_search
2404                         do
2405                                 if test -d "$cf_cv_library_path_$3" ; then
2406                                         CF_VERBOSE(... testing $cf_cv_library_path_$3)
2407                                         CPPFLAGS="$cf_test_CPPFLAGS"
2408                                         LIBS="-l$3 $7 $cf_save_LIBS"
2409                                         LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
2410                                         AC_TRY_LINK([$1],[$2],[
2411                                         CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
2412                                         cf_cv_find_linkage_$3=yes
2413                                         cf_cv_library_file_$3="-l$3"
2414                                         break],[
2415                                         CPPFLAGS="$cf_save_CPPFLAGS"
2416                                         LIBS="$cf_save_LIBS"
2417                                         LDFLAGS="$cf_save_LDFLAGS"
2418                                         ])
2419                                 fi
2420                         done
2421                         CPPFLAGS="$cf_save_CPPFLAGS"
2422                         LDFLAGS="$cf_save_LDFLAGS"
2423                 fi
2424
2425         else
2426                 cf_cv_find_linkage_$3=no
2427         fi
2428         ],$7)
2429 ])
2430
2431 LIBS="$cf_save_LIBS"
2432
2433 if test "$cf_cv_find_linkage_$3" = yes ; then
2434 ifelse([$4],,[
2435         CF_ADD_INCDIR($cf_cv_header_path_$3)
2436         CF_ADD_LIBDIR($cf_cv_library_path_$3)
2437         CF_ADD_LIB($3)
2438 ],[$4])
2439 else
2440 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
2441 fi
2442 ])dnl
2443 dnl ---------------------------------------------------------------------------
2444 dnl CF_FIND_SUB_INCDIR version: 3 updated: 2021/01/01 13:31:04
2445 dnl ------------------
2446 dnl Find an include-directory with the given leaf-name.  This is useful for
2447 dnl example with FreeBSD ports, which use this convention to distinguish
2448 dnl different versions of the same port.
2449 AC_DEFUN([CF_FIND_SUB_INCDIR],[
2450         CF_SUBDIR_PATH(cf_search,$1,include)
2451         for cf_item in $cf_search
2452         do
2453                 case "$cf_item" in
2454                 (*/$1)
2455                         CF_ADD_INCDIR($cf_item)
2456                         ;;
2457                 esac
2458         done
2459 ])dnl
2460 dnl ---------------------------------------------------------------------------
2461 dnl CF_FIND_SUB_LIBDIR version: 3 updated: 2021/01/01 13:31:04
2462 dnl ------------------
2463 dnl Find a library-directory with the given leaf-name.  This is useful for
2464 dnl example with FreeBSD ports, which use this convention to distinguish
2465 dnl different versions of the same port.
2466 AC_DEFUN([CF_FIND_SUB_LIBDIR],[
2467         CF_SUBDIR_PATH(cf_search,$1,lib)
2468         for cf_item in $cf_search
2469         do
2470                 case "$cf_item" in
2471                 (*/$1)
2472                         CF_ADD_LIBDIR($cf_item)
2473                         ;;
2474                 esac
2475         done
2476 ])dnl
2477 dnl ---------------------------------------------------------------------------
2478 dnl CF_FIXUP_ADAFLAGS version: 2 updated: 2015/04/17 21:13:04
2479 dnl -----------------
2480 dnl make ADAFLAGS consistent with CFLAGS
2481 AC_DEFUN([CF_FIXUP_ADAFLAGS],[
2482         AC_MSG_CHECKING(optimization options for ADAFLAGS)
2483         case "$CFLAGS" in
2484         (*-g*)
2485                 CF_ADD_ADAFLAGS(-g)
2486                 ;;
2487         esac
2488         case "$CFLAGS" in
2489         (*-O*)
2490                 cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
2491                 CF_ADD_ADAFLAGS($cf_O_flag)
2492                 ;;
2493         esac
2494         AC_MSG_RESULT($ADAFLAGS)
2495 ])dnl
2496 dnl ---------------------------------------------------------------------------
2497 dnl CF_FIX_WARNINGS version: 4 updated: 2021/12/16 18:22:31
2498 dnl ---------------
2499 dnl Warning flags do not belong in CFLAGS, CPPFLAGS, etc.  Any of gcc's
2500 dnl "-Werror" flags can interfere with configure-checks.  Those go into
2501 dnl EXTRA_CFLAGS.
2502 dnl
2503 dnl $1 = variable name to repair
2504 define([CF_FIX_WARNINGS],[
2505 if test "$GCC" = yes || test "$GXX" = yes
2506 then
2507         case [$]$1 in
2508         (*-Werror=*)
2509                 cf_temp_flags=
2510                 for cf_temp_scan in [$]$1
2511                 do
2512                         case "x$cf_temp_scan" in
2513                         (x-Werror=format*)
2514                                 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
2515                                 ;;
2516                         (x-Werror=*)
2517                                 CF_APPEND_TEXT(EXTRA_CFLAGS,$cf_temp_scan)
2518                                 ;;
2519                         (*)
2520                                 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
2521                                 ;;
2522                         esac
2523                 done
2524                 if test "x[$]$1" != "x$cf_temp_flags"
2525                 then
2526                         CF_VERBOSE(repairing $1: [$]$1)
2527                         $1="$cf_temp_flags"
2528                         CF_VERBOSE(... fixed [$]$1)
2529                         CF_VERBOSE(... extra $EXTRA_CFLAGS)
2530                 fi
2531                 ;;
2532         esac
2533 fi
2534 AC_SUBST(EXTRA_CFLAGS)
2535 ])dnl
2536 dnl ---------------------------------------------------------------------------
2537 dnl CF_FOPEN_BIN_R version: 3 updated: 2023/01/05 18:05:46
2538 dnl --------------
2539 dnl Check if fopen works when the "b" (binary) flag is added to the mode
2540 dnl parameter.  POSIX ignores the "b", which c89 specified.  Some very old
2541 dnl systems do not accept it.
2542 AC_DEFUN([CF_FOPEN_BIN_R],[
2543 AC_CACHE_CHECK(if fopen accepts explicit binary mode,cf_cv_fopen_bin_r,[
2544         AC_TRY_RUN([
2545 $ac_includes_default
2546
2547 int main(void)
2548 {
2549         FILE *fp = fopen("conftest.tmp", "wb");
2550         int rc = 0;
2551         if (fp != 0) {
2552                 int p, q;
2553                 for (p = 0; p < 256; ++p) {
2554                         fputc(p, fp);
2555                 }
2556                 fclose(fp);
2557                 fp = fopen("conftest.tmp", "rb");
2558                 if (fp != 0) {
2559                         for (p = 0; p < 256; ++p) {
2560                                 q = fgetc(fp);
2561                                 if (q != p) {
2562                                         rc = 1;
2563                                         break;
2564                                 }
2565                         }
2566                 } else {
2567                         rc = 1;
2568                 }
2569         } else {
2570                 rc = 1;
2571         }
2572         ${cf_cv_main_return:-return} (rc);
2573 }
2574 ],
2575                 [cf_cv_fopen_bin_r=yes],
2576                 [cf_cv_fopen_bin_r=no],
2577                 [cf_cv_fopen_bin_r=unknown])
2578 ])
2579 test "x$cf_cv_fopen_bin_r" != xno && AC_DEFINE(USE_FOPEN_BIN_R,1,[Define to 1 if fopen accepts explicit binary mode])
2580 ])dnl
2581 dnl ---------------------------------------------------------------------------
2582 dnl CF_FORGET_TOOL version: 1 updated: 2013/04/06 18:03:09
2583 dnl --------------
2584 dnl Forget that we saw the given tool.
2585 AC_DEFUN([CF_FORGET_TOOL],[
2586 unset ac_cv_prog_ac_ct_$1
2587 unset ac_ct_$1
2588 unset $1
2589 ])dnl
2590 dnl ---------------------------------------------------------------------------
2591 dnl CF_FUNC_DLSYM version: 4 updated: 2015/09/12 14:46:44
2592 dnl -------------
2593 dnl Test for dlsym() and related functions, as well as libdl.
2594 dnl
2595 dnl Sets
2596 dnl     $cf_have_dlsym
2597 dnl     $cf_have_libdl
2598 AC_DEFUN([CF_FUNC_DLSYM],[
2599 cf_have_dlsym=no
2600 AC_CHECK_FUNC(dlsym,cf_have_dlsym=yes,[
2601
2602 cf_have_libdl=no
2603 AC_CHECK_LIB(dl,dlsym,[
2604         cf_have_dlsym=yes
2605         cf_have_libdl=yes])])
2606
2607 if test "$cf_have_dlsym" = yes ; then
2608         test "$cf_have_libdl" = yes && { CF_ADD_LIB(dl) }
2609
2610         AC_MSG_CHECKING(whether able to link to dl*() functions)
2611         AC_TRY_LINK([#include <dlfcn.h>],[
2612                 void *obj;
2613                 if ((obj = dlopen("filename", 0)) != 0) {
2614                         if (dlsym(obj, "symbolname") == 0) {
2615                         dlclose(obj);
2616                         }
2617                 }],[
2618                 AC_DEFINE(HAVE_LIBDL,1,[Define to 1 if we have dl library])],[
2619                 AC_MSG_ERROR(Cannot link test program for libdl)])
2620         AC_MSG_RESULT(ok)
2621 else
2622         AC_MSG_ERROR(Cannot find dlsym function)
2623 fi
2624 ])
2625 dnl ---------------------------------------------------------------------------
2626 dnl CF_FUNC_GETTIME version: 2 updated: 2023/02/25 08:45:56
2627 dnl ---------------
2628 dnl Check for gettimeofday or clock_gettime.  In 2023, the former is still more
2629 dnl widely supported, but "deprecated" (2008), so we will use the latter if it
2630 dnl is available, to reduce compiler warnings.
2631 AC_DEFUN([CF_FUNC_GETTIME],[
2632 AC_CACHE_CHECK(for clock_gettime,cf_cv_func_clock_gettime,[
2633                 AC_TRY_LINK([#include <time.h>],
2634                 [struct timespec ts;
2635                 int rc = clock_gettime(CLOCK_REALTIME, &ts); (void) rc; (void)ts],
2636                 [cf_cv_func_clock_gettime=yes],
2637                 [cf_cv_func_clock_gettime=no])
2638 ])
2639
2640 if test "$cf_cv_func_clock_gettime" = yes
2641 then
2642         AC_DEFINE(HAVE_CLOCK_GETTIME,1,[Define to 1 if we have clock_gettime function])
2643 else
2644 AC_CHECK_FUNC(gettimeofday,
2645         AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define to 1 if we have gettimeofday function]),[
2646
2647 AC_CHECK_LIB(bsd, gettimeofday,
2648         AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define to 1 if we have gettimeofday function])
2649         CF_ADD_LIB(bsd))])dnl CLIX: bzero, select, gettimeofday
2650 fi
2651 ])dnl
2652 dnl ---------------------------------------------------------------------------
2653 dnl CF_FUNC_GETTTYNAM version: 2 updated: 2023/01/05 18:06:28
2654 dnl -----------------
2655 dnl Check if the 4.3BSD function getttyname exists, as well as if <ttyent.h>
2656 dnl defines the _PATH_TTYS symbol.  If the corresponding file exists, but the
2657 dnl other checks fail, just define HAVE_PATH_TTYS.
2658 AC_DEFUN([CF_FUNC_GETTTYNAM],[
2659 AC_CACHE_CHECK(if _PATH_TTYS is defined in ttyent.h,cf_cv_PATH_TTYS,[
2660 AC_TRY_COMPILE([
2661 #include <stdio.h>
2662 #include <ttyent.h>],[
2663 FILE *fp = fopen(_PATH_TTYS, "r"); (void)fp],
2664         [cf_cv_PATH_TTYS=yes],
2665         [cf_cv_PATH_TTYS=no])])
2666
2667 if test $cf_cv_PATH_TTYS = no
2668 then
2669         for cf_ttys in /etc/ttytype /etc/ttys
2670         do
2671                 if test -f $cf_ttys
2672                 then
2673                         cf_cv_PATH_TTYS=maybe
2674                         AC_DEFINE(_PATH_TTYS,$cf_ttys,[define to pathname of file containing mapping from tty name to terminal type])
2675                         break
2676                 fi
2677         done
2678 fi
2679
2680 if test $cf_cv_PATH_TTYS != no
2681 then
2682         AC_CACHE_CHECK(if _PATH_TTYS file exists,cf_cv_have_PATH_TTYS,[
2683                 AC_TRY_RUN([
2684 $ac_includes_default
2685
2686 #include <ttyent.h>
2687
2688 int main(void) {
2689         FILE *fp = fopen(_PATH_TTYS, "r");
2690         ${cf_cv_main_return:-return} (fp == 0);
2691 }],
2692                         [cf_cv_have_PATH_TTYS=yes],
2693                         [cf_cv_have_PATH_TTYS=no],
2694                         [cf_cv_have_PATH_TTYS=unknown])])
2695         test "$cf_cv_have_PATH_TTYS" = no && cf_cv_PATH_TTYS=no
2696 fi
2697
2698 if test $cf_cv_PATH_TTYS != no
2699 then
2700         AC_DEFINE(HAVE_PATH_TTYS,1,[define to 1 if system can map tty name to terminal type])
2701         AC_CACHE_CHECK(for getttynam,cf_cv_func_getttynam,[
2702                 AC_TRY_LINK([#include <ttyent.h>],
2703                 [struct ttyent *fp = getttynam("/dev/tty"); (void)fp],
2704                 [cf_cv_func_getttynam=yes],
2705                 [cf_cv_func_getttynam=no])])
2706         test "$cf_cv_func_getttynam" = yes && AC_DEFINE(HAVE_GETTTYNAM)
2707 fi
2708 ])dnl
2709 dnl ---------------------------------------------------------------------------
2710 dnl CF_FUNC_MEMMOVE version: 10 updated: 2023/01/05 18:51:28
2711 dnl ---------------
2712 dnl Check for memmove, or a bcopy that can handle overlapping copy.  If neither
2713 dnl is found, add our own version of memmove to the list of objects.
2714 AC_DEFUN([CF_FUNC_MEMMOVE],
2715 [
2716 AC_CHECK_FUNC(memmove,,[
2717 AC_CHECK_FUNC(bcopy,[
2718         AC_CACHE_CHECK(if bcopy does overlapping moves,cf_cv_good_bcopy,[
2719                 AC_TRY_RUN([
2720 $ac_includes_default
2721
2722 int main(void) {
2723         static char data[] = "abcdefghijklmnopqrstuwwxyz";
2724         char temp[40];
2725         bcopy(data, temp, sizeof(data));
2726         bcopy(temp+10, temp, 15);
2727         bcopy(temp+5, temp+15, 10);
2728         ${cf_cv_main_return:-return} (strcmp(temp, "klmnopqrstuwwxypqrstuwwxyz"));
2729 }
2730                 ],
2731                 [cf_cv_good_bcopy=yes],
2732                 [cf_cv_good_bcopy=no],
2733                 [cf_cv_good_bcopy=unknown])
2734                 ])
2735         ],[cf_cv_good_bcopy=no])
2736         if test "$cf_cv_good_bcopy" = yes ; then
2737                 AC_DEFINE(USE_OK_BCOPY,1,[Define to 1 to use bcopy when memmove is unavailable])
2738         else
2739                 AC_DEFINE(USE_MY_MEMMOVE,1,[Define to 1 to use replacement function when memmove is unavailable])
2740         fi
2741 ])])dnl
2742 dnl ---------------------------------------------------------------------------
2743 dnl CF_FUNC_NANOSLEEP version: 6 updated: 2023/01/05 18:51:33
2744 dnl -----------------
2745 dnl Check for existence of workable nanosleep() function.  Some systems, e.g.,
2746 dnl AIX 4.x, provide a non-working version.
2747 AC_DEFUN([CF_FUNC_NANOSLEEP],[
2748 AC_CACHE_CHECK(if nanosleep really works,cf_cv_func_nanosleep,[
2749 AC_TRY_RUN([
2750 $ac_includes_default
2751
2752 #include <errno.h>
2753 #include <time.h>
2754
2755 #ifdef HAVE_SYS_TIME_H
2756 #include <sys/time.h>
2757 #endif
2758
2759 int main(void) {
2760         struct timespec ts1, ts2;
2761         int code;
2762         ts1.tv_sec  = 0;
2763         ts1.tv_nsec = 750000000;
2764         ts2.tv_sec  = 0;
2765         ts2.tv_nsec = 0;
2766         errno = 0;
2767         code = nanosleep(&ts1, &ts2); /* on failure errno is ENOSYS. */
2768         ${cf_cv_main_return:-return}(code != 0);
2769 }
2770 ],
2771         [cf_cv_func_nanosleep=yes],
2772         [cf_cv_func_nanosleep=no],
2773         [cf_cv_func_nanosleep=unknown])])
2774
2775 test "$cf_cv_func_nanosleep" = "yes" && AC_DEFINE(HAVE_NANOSLEEP,1,[Define to 1 if we have nanosleep()])
2776 ])
2777 dnl ---------------------------------------------------------------------------
2778 dnl CF_FUNC_OPENPTY version: 7 updated: 2023/12/03 09:21:34
2779 dnl ---------------
2780 dnl Check for openpty() function, along with <pty.h> header.  It may need the
2781 dnl "util" library as well.
2782 AC_DEFUN([CF_FUNC_OPENPTY],
2783 [
2784 AC_CHECK_LIB(util,openpty,cf_cv_lib_util=yes,cf_cv_lib_util=no)
2785 AC_CACHE_CHECK(for openpty header,cf_cv_func_openpty,[
2786         cf_save_LIBS="$LIBS"
2787         test "$cf_cv_lib_util" = yes && { CF_ADD_LIB(util) }
2788         for cf_header in pty.h libutil.h util.h
2789         do
2790         AC_TRY_LINK([
2791 #include <$cf_header>
2792 ],[
2793         int x = openpty((int *)0, (int *)0, (char *)0,
2794                                    (struct termios *)0, (struct winsize *)0);
2795         (void)x;
2796 ],[
2797                 cf_cv_func_openpty=$cf_header
2798                 break
2799 ],[
2800                 cf_cv_func_openpty=no
2801 ])
2802         done
2803         LIBS="$cf_save_LIBS"
2804 ])
2805 ])dnl
2806 dnl ---------------------------------------------------------------------------
2807 dnl CF_FUNC_POLL version: 11 updated: 2023/01/05 18:51:40
2808 dnl ------------
2809 dnl See if the poll function really works.  Some platforms have poll(), but
2810 dnl it does not work for terminals or files.
2811 AC_DEFUN([CF_FUNC_POLL],[
2812 tty >/dev/null 2>&1 || { AC_CHECK_FUNCS(posix_openpt) }
2813 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[
2814 AC_TRY_RUN([
2815 $ac_includes_default
2816
2817 #include <fcntl.h>
2818
2819 #ifdef HAVE_POLL_H
2820 #include <poll.h>
2821 #else
2822 #include <sys/poll.h>
2823 #endif
2824
2825 int main(void) {
2826         struct pollfd myfds;
2827         int ret;
2828
2829         /* check for Darwin bug with respect to "devices" */
2830         myfds.fd = open("/dev/null", 1);        /* O_WRONLY */
2831         if (myfds.fd < 0)
2832                 myfds.fd = 0;
2833         myfds.events = POLLIN;
2834         myfds.revents = 0;
2835
2836         ret = poll(&myfds, 1, 100);
2837
2838         if (ret < 0 || (myfds.revents & POLLNVAL)) {
2839                 ret = -1;
2840         } else {
2841                 int fd = 0;
2842                 if (!isatty(fd)) {
2843                         fd = open("/dev/tty", 2);       /* O_RDWR */
2844                 }
2845 #ifdef HAVE_POSIX_OPENPT
2846                 if (fd < 0) {
2847                         fd = posix_openpt(O_RDWR);
2848                 }
2849 #endif
2850
2851                 if (fd >= 0) {
2852                         /* also check with standard input */
2853                         myfds.fd = fd;
2854                         myfds.events = POLLIN;
2855                         myfds.revents = 0;
2856                         ret = poll(&myfds, 1, 100);
2857                 } else {
2858                         ret = -1;
2859                 }
2860         }
2861         ${cf_cv_main_return:-return}(ret < 0);
2862 }],
2863         [cf_cv_working_poll=yes],
2864         [cf_cv_working_poll=no],
2865         [cf_cv_working_poll=unknown])])
2866 test "$cf_cv_working_poll" = "yes" && AC_DEFINE(HAVE_WORKING_POLL,1,[Define to 1 if the poll function seems to work])
2867 ])dnl
2868 dnl ---------------------------------------------------------------------------
2869 dnl CF_FUNC_TERMIOS version: 3 updated: 2012/10/06 17:56:13
2870 dnl ---------------
2871 dnl Some old/broken variations define tcgetattr() only as a macro in
2872 dnl termio(s).h
2873 AC_DEFUN([CF_FUNC_TERMIOS],[
2874 AC_REQUIRE([CF_STRUCT_TERMIOS])
2875 AC_CACHE_CHECK(for tcgetattr, cf_cv_have_tcgetattr,[
2876 AC_TRY_LINK([
2877 #include <sys/types.h>
2878 #ifdef HAVE_UNISTD_H
2879 #include <unistd.h>
2880 #endif
2881 #ifdef HAVE_TERMIOS_H
2882 #include <termios.h>
2883 #define TTY struct termios
2884 #else
2885 #ifdef HAVE_TERMIO_H
2886 #include <termio.h>
2887 #define TTY struct termio
2888 #endif
2889 #endif
2890 ],[
2891 TTY foo;
2892 tcgetattr(1, &foo);],
2893 [cf_cv_have_tcgetattr=yes],
2894 [cf_cv_have_tcgetattr=no])])
2895 test "$cf_cv_have_tcgetattr" = yes && AC_DEFINE(HAVE_TCGETATTR,1,[Define to 1 if we have tcgetattr])
2896 ])dnl
2897 dnl ---------------------------------------------------------------------------
2898 dnl CF_FUNC_VSSCANF version: 8 updated: 2023/12/03 19:09:59
2899 dnl ---------------
2900 dnl Check for vsscanf() function, which is in c9x but generally not in earlier
2901 dnl versions of C.  It can often be simulated by other functions on older
2902 dnl systems (where FILE is not opaque).
2903 AC_DEFUN([CF_FUNC_VSSCANF],
2904 [
2905 AC_CACHE_CHECK(for vsscanf function or workaround,cf_cv_func_vsscanf,[
2906 AC_TRY_LINK([
2907 #include <stdarg.h>
2908 #include <stdio.h>
2909
2910 static void
2911 myfunc(const char *str, const char *fmt, ...)
2912 {
2913         va_list ap;
2914         va_start(ap, fmt);
2915         vsscanf(str, fmt, ap);
2916         va_end(ap);
2917 }
2918 ],[
2919         myfunc("55", "%d");
2920 ],[cf_cv_func_vsscanf=vsscanf],[
2921 AC_TRY_LINK([
2922 #include <stdarg.h>
2923 #include <stdio.h>],[
2924         FILE strbuf;
2925         char *str = "from";
2926
2927         strbuf._flag = _IOREAD;
2928         strbuf._ptr = strbuf._base = (unsigned char *) str;
2929         strbuf._cnt = strlen(str);
2930         strbuf._file = _NFILE;
2931         return (vfscanf(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=vfscanf],[
2932 AC_TRY_LINK([
2933 #include <stdarg.h>
2934 #include <stdio.h>],[
2935         FILE strbuf;
2936         char *str = "from";
2937
2938         strbuf._flag = _IOREAD;
2939         strbuf._ptr = strbuf._base = (unsigned char *) str;
2940         strbuf._cnt = strlen(str);
2941         strbuf._file = _NFILE;
2942         return (_doscan(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=_doscan],[
2943 cf_cv_func_vsscanf=no])])])])
2944
2945 case "$cf_cv_func_vsscanf" in
2946 (vsscanf) AC_DEFINE(HAVE_VSSCANF,1,[Define to 1 if we have vsscanf]);;
2947 (vfscanf) AC_DEFINE(HAVE_VFSCANF,1,[Define to 1 if we have vfscanf]);;
2948 (_doscan) AC_DEFINE(HAVE__DOSCAN,1,[Define to 1 if we have _doscan]);;
2949 esac
2950
2951 ])dnl
2952 dnl ---------------------------------------------------------------------------
2953 dnl CF_GCC_ATTRIBUTES version: 24 updated: 2021/03/20 12:00:25
2954 dnl -----------------
2955 dnl Test for availability of useful gcc __attribute__ directives to quiet
2956 dnl compiler warnings.  Though useful, not all are supported -- and contrary
2957 dnl to documentation, unrecognized directives cause older compilers to barf.
2958 AC_DEFUN([CF_GCC_ATTRIBUTES],
2959 [AC_REQUIRE([AC_PROG_FGREP])dnl
2960 AC_REQUIRE([CF_C11_NORETURN])dnl
2961
2962 if test "$GCC" = yes || test "$GXX" = yes
2963 then
2964 cat > conftest.i <<EOF
2965 #ifndef GCC_PRINTF
2966 #define GCC_PRINTF 0
2967 #endif
2968 #ifndef GCC_SCANF
2969 #define GCC_SCANF 0
2970 #endif
2971 #ifndef GCC_NORETURN
2972 #define GCC_NORETURN /* nothing */
2973 #endif
2974 #ifndef GCC_UNUSED
2975 #define GCC_UNUSED /* nothing */
2976 #endif
2977 EOF
2978 if test "$GCC" = yes
2979 then
2980         AC_CHECKING([for $CC __attribute__ directives])
2981 cat > "conftest.$ac_ext" <<EOF
2982 #line __oline__ "${as_me:-configure}"
2983 #include <stdio.h>
2984 #include "confdefs.h"
2985 #include "conftest.h"
2986 #include "conftest.i"
2987 #if     GCC_PRINTF
2988 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
2989 #else
2990 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
2991 #endif
2992 #if     GCC_SCANF
2993 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
2994 #else
2995 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
2996 #endif
2997 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
2998 extern GCC_NORETURN void oops(char *,...) GCC_PRINTFLIKE(1,2);
2999 extern GCC_NORETURN void foo(void);
3000 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { (void)argc; (void)argv; return 0; }
3001 EOF
3002         cf_printf_attribute=no
3003         cf_scanf_attribute=no
3004         for cf_attribute in scanf printf unused noreturn
3005         do
3006                 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
3007                 cf_directive="__attribute__(($cf_attribute))"
3008                 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
3009
3010                 case "$cf_attribute" in
3011                 (printf)
3012                         cf_printf_attribute=yes
3013                         cat >conftest.h <<EOF
3014 #define GCC_$cf_ATTRIBUTE 1
3015 EOF
3016                         ;;
3017                 (scanf)
3018                         cf_scanf_attribute=yes
3019                         cat >conftest.h <<EOF
3020 #define GCC_$cf_ATTRIBUTE 1
3021 EOF
3022                         ;;
3023                 (*)
3024                         cat >conftest.h <<EOF
3025 #define GCC_$cf_ATTRIBUTE $cf_directive
3026 EOF
3027                         ;;
3028                 esac
3029
3030                 if AC_TRY_EVAL(ac_compile); then
3031                         test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
3032                         cat conftest.h >>confdefs.h
3033                         case "$cf_attribute" in
3034                         (noreturn)
3035                                 AC_DEFINE_UNQUOTED(GCC_NORETURN,$cf_directive,[Define to noreturn-attribute for gcc])
3036                                 ;;
3037                         (printf)
3038                                 cf_value='/* nothing */'
3039                                 if test "$cf_printf_attribute" != no ; then
3040                                         cf_value='__attribute__((format(printf,fmt,var)))'
3041                                         AC_DEFINE(GCC_PRINTF,1,[Define to 1 if the compiler supports gcc-like printf attribute.])
3042                                 fi
3043                                 AC_DEFINE_UNQUOTED(GCC_PRINTFLIKE(fmt,var),$cf_value,[Define to printf-attribute for gcc])
3044                                 ;;
3045                         (scanf)
3046                                 cf_value='/* nothing */'
3047                                 if test "$cf_scanf_attribute" != no ; then
3048                                         cf_value='__attribute__((format(scanf,fmt,var)))'
3049                                         AC_DEFINE(GCC_SCANF,1,[Define to 1 if the compiler supports gcc-like scanf attribute.])
3050                                 fi
3051                                 AC_DEFINE_UNQUOTED(GCC_SCANFLIKE(fmt,var),$cf_value,[Define to sscanf-attribute for gcc])
3052                                 ;;
3053                         (unused)
3054                                 AC_DEFINE_UNQUOTED(GCC_UNUSED,$cf_directive,[Define to unused-attribute for gcc])
3055                                 ;;
3056                         esac
3057                 fi
3058         done
3059 else
3060         ${FGREP-fgrep} define conftest.i >>confdefs.h
3061 fi
3062 rm -rf ./conftest*
3063 fi
3064 ])dnl
3065 dnl ---------------------------------------------------------------------------
3066 dnl CF_GCC_VERSION version: 9 updated: 2023/03/05 14:30:13
3067 dnl --------------
3068 dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
3069 dnl compatible), attempt to determine if icc/clang is actually used.
3070 AC_DEFUN([CF_GCC_VERSION],[
3071 AC_REQUIRE([AC_PROG_CC])
3072 GCC_VERSION=none
3073 if test "$GCC" = yes ; then
3074         AC_MSG_CHECKING(version of $CC)
3075         GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^[[^(]]*([[^)]][[^)]]*) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
3076         test -z "$GCC_VERSION" && GCC_VERSION=unknown
3077         AC_MSG_RESULT($GCC_VERSION)
3078 fi
3079 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
3080 CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
3081 ])dnl
3082 dnl ---------------------------------------------------------------------------
3083 dnl CF_GCC_WARNINGS version: 41 updated: 2021/01/01 16:53:59
3084 dnl ---------------
3085 dnl Check if the compiler supports useful warning options.  There's a few that
3086 dnl we don't use, simply because they're too noisy:
3087 dnl
3088 dnl     -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
3089 dnl     -Winline (usually not worthwhile)
3090 dnl     -Wredundant-decls (system headers make this too noisy)
3091 dnl     -Wtraditional (combines too many unrelated messages, only a few useful)
3092 dnl     -Wwrite-strings (too noisy, but should review occasionally).  This
3093 dnl             is enabled for ncurses using "--enable-const".
3094 dnl     -pedantic
3095 dnl
3096 dnl Parameter:
3097 dnl     $1 is an optional list of gcc warning flags that a particular
3098 dnl             application might want to use, e.g., "no-unused" for
3099 dnl             -Wno-unused
3100 dnl Special:
3101 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
3102 dnl
3103 AC_DEFUN([CF_GCC_WARNINGS],
3104 [
3105 AC_REQUIRE([CF_GCC_VERSION])
3106 if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
3107 cat > "conftest.$ac_ext" <<EOF
3108 #line __oline__ "${as_me:-configure}"
3109 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
3110 EOF
3111 if test "$INTEL_COMPILER" = yes
3112 then
3113 # The "-wdXXX" options suppress warnings:
3114 # remark #1419: external declaration in primary source file
3115 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3116 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
3117 # remark #193: zero used for undefined preprocessing identifier
3118 # remark #593: variable "curs_sb_left_arrow" was set but never used
3119 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
3120 # remark #869: parameter "tw" was never referenced
3121 # remark #981: operands are evaluated in unspecified order
3122 # warning #279: controlling expression is constant
3123
3124         AC_CHECKING([for $CC warning options])
3125         cf_save_CFLAGS="$CFLAGS"
3126         EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
3127         for cf_opt in \
3128                 wd1419 \
3129                 wd1683 \
3130                 wd1684 \
3131                 wd193 \
3132                 wd593 \
3133                 wd279 \
3134                 wd810 \
3135                 wd869 \
3136                 wd981
3137         do
3138                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
3139                 if AC_TRY_EVAL(ac_compile); then
3140                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3141                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
3142                 fi
3143         done
3144         CFLAGS="$cf_save_CFLAGS"
3145 elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown"
3146 then
3147         AC_CHECKING([for $CC warning options])
3148         cf_save_CFLAGS="$CFLAGS"
3149         cf_warn_CONST=""
3150         test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
3151         cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs"
3152         test "x$CLANG_COMPILER" = xyes && cf_gcc_warnings=
3153         for cf_opt in W Wall \
3154                 Wbad-function-cast \
3155                 Wcast-align \
3156                 Wcast-qual \
3157                 Wdeclaration-after-statement \
3158                 Wextra \
3159                 Winline \
3160                 Wmissing-declarations \
3161                 Wmissing-prototypes \
3162                 Wnested-externs \
3163                 Wpointer-arith \
3164                 Wshadow \
3165                 Wstrict-prototypes \
3166                 Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST $1
3167         do
3168                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
3169                 if AC_TRY_EVAL(ac_compile); then
3170                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3171                         case "$cf_opt" in
3172                         (Winline)
3173                                 case "$GCC_VERSION" in
3174                                 ([[34]].*)
3175                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
3176                                         continue;;
3177                                 esac
3178                                 ;;
3179                         (Wpointer-arith)
3180                                 case "$GCC_VERSION" in
3181                                 ([[12]].*)
3182                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
3183                                         continue;;
3184                                 esac
3185                                 ;;
3186                         esac
3187                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
3188                 fi
3189         done
3190         CFLAGS="$cf_save_CFLAGS"
3191 fi
3192 rm -rf ./conftest*
3193
3194 AC_SUBST(EXTRA_CFLAGS)
3195 ])dnl
3196 dnl ---------------------------------------------------------------------------
3197 dnl CF_GETOPT_HEADER version: 8 updated: 2021/06/19 19:16:16
3198 dnl ----------------
3199 dnl Check for getopt's variables which are commonly defined in stdlib.h,
3200 dnl unistd.h or (nonstandard) in getopt.h
3201 AC_DEFUN([CF_GETOPT_HEADER],
3202 [
3203 AC_HAVE_HEADERS(unistd.h getopt.h)
3204 AC_CACHE_CHECK(for header declaring getopt variables,cf_cv_getopt_header,[
3205 cf_cv_getopt_header=none
3206 for cf_header in stdio.h stdlib.h unistd.h getopt.h
3207 do
3208 AC_TRY_COMPILE([
3209 #include <$cf_header>],
3210 [int x = optind; char *y = optarg; (void)x; (void)y],
3211 [cf_cv_getopt_header=$cf_header
3212  break])
3213 done
3214 ])
3215 if test "$cf_cv_getopt_header" != none ; then
3216         AC_DEFINE(HAVE_GETOPT_HEADER,1,[Define to 1 if getopt variables are declared in header])
3217 fi
3218 if test "$cf_cv_getopt_header" = getopt.h ; then
3219         AC_DEFINE(NEED_GETOPT_H,1,[Define to 1 if we must include getopt.h])
3220 fi
3221 ])dnl
3222 dnl ---------------------------------------------------------------------------
3223 dnl CF_GNATPREP_OPT_T version: 1 updated: 2014/08/02 18:37:25
3224 dnl -----------------
3225 AC_DEFUN([CF_GNATPREP_OPT_T],[
3226 AC_CACHE_CHECK(if GNATPREP supports -T option,cf_cv_gnatprep_opt_t,[
3227 cf_cv_gnatprep_opt_t=no
3228 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
3229 ])
3230 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
3231 AC_SUBST(GNATPREP_OPTS)
3232 ])dnl
3233 dnl ---------------------------------------------------------------------------
3234 dnl CF_GNAT_GENERICS version: 7 updated: 2021/01/01 13:31:04
3235 dnl ----------------
3236 AC_DEFUN([CF_GNAT_GENERICS],
3237 [
3238 AC_REQUIRE([CF_GNAT_VERSION])
3239
3240 AC_MSG_CHECKING(if GNAT supports generics)
3241 case "$cf_cv_gnat_version" in
3242 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
3243         cf_gnat_generics=yes
3244         ;;
3245 (*)
3246         cf_gnat_generics=no
3247         ;;
3248 esac
3249 AC_MSG_RESULT($cf_gnat_generics)
3250
3251 if test "$cf_gnat_generics" = yes
3252 then
3253         cf_compile_generics=generics
3254         cf_generic_objects="\${GENOBJS}"
3255 else
3256         cf_compile_generics=
3257         cf_generic_objects=
3258 fi
3259
3260 AC_SUBST(cf_compile_generics)
3261 AC_SUBST(cf_generic_objects)
3262 ])dnl
3263 dnl ---------------------------------------------------------------------------
3264 dnl CF_GNAT_PROJECTS version: 13 updated: 2021/01/02 17:09:14
3265 dnl ----------------
3266 dnl GNAT projects are configured with ".gpr" project files.
3267 dnl GNAT libraries are a further development, using the project feature.
3268 AC_DEFUN([CF_GNAT_PROJECTS],
3269 [
3270 AC_REQUIRE([CF_GNAT_VERSION])
3271 AC_REQUIRE([CF_DISABLE_GNAT_PROJECTS])
3272
3273 cf_gnat_libraries=no
3274 cf_gnat_projects=no
3275
3276 if test "$enable_gnat_projects" != no ; then
3277 AC_MSG_CHECKING(if GNAT supports project files)
3278 case "$cf_cv_gnat_version" in
3279 (3.[[0-9]]*)
3280         ;;
3281 (*)
3282         case "$cf_cv_system_name" in
3283         (cygwin*|msys*)
3284                 ;;
3285         (*)
3286                 rm -rf ./conftest* ./*~conftest*
3287                 if mkdir conftest.src conftest.bin conftest.lib
3288                 then
3289                         cd conftest.src
3290                         rm -rf ./conftest* ./*~conftest*
3291                         cat >>library.gpr <<CF_EOF
3292 project Library is
3293   Kind := External ("LIB_KIND");
3294   for Library_Name use "ConfTest";
3295   for Object_Dir use ".";
3296   for Library_ALI_Dir use External("LIBRARY_DIR");
3297   for Library_Version use External ("SONAME");
3298   for Library_Kind use Kind;
3299   for Library_Dir use External("BUILD_DIR");
3300   Source_Dir := External ("SOURCE_DIR");
3301   for Source_Dirs use (Source_Dir);
3302 end Library;
3303 CF_EOF
3304                         cat >>confpackage.ads <<CF_EOF
3305 package ConfPackage is
3306    procedure conftest;
3307 end ConfPackage;
3308 CF_EOF
3309                         cat >>confpackage.adb <<CF_EOF
3310 with Text_IO;
3311 package body ConfPackage is
3312    procedure conftest is
3313    begin
3314       Text_IO.Put ("Hello World");
3315       Text_IO.New_Line;
3316    end conftest;
3317 end ConfPackage;
3318 CF_EOF
3319                         if ( "$cf_ada_make" $ADAFLAGS \
3320                                         -Plibrary.gpr \
3321                                         -XBUILD_DIR="`cd ../conftest.bin;pwd`" \
3322                                         -XLIBRARY_DIR="`cd ../conftest.lib;pwd`" \
3323                                         -XSOURCE_DIR="`pwd`" \
3324                                         -XSONAME=libConfTest.so.1 \
3325                                         -XLIB_KIND=static 1>&AC_FD_CC 2>&1 ) ; then
3326                                 cf_gnat_projects=yes
3327                         fi
3328                         cd ..
3329                 fi
3330                 if test -f conftest.lib/confpackage.ali
3331                 then
3332                         cf_gnat_libraries=yes
3333                 fi
3334                 rm -rf ./conftest* ./*~conftest*
3335                 ;;
3336         esac
3337         ;;
3338 esac
3339 AC_MSG_RESULT($cf_gnat_projects)
3340 fi # enable_gnat_projects
3341
3342 if test "$cf_gnat_projects" = yes
3343 then
3344         AC_MSG_CHECKING(if GNAT supports libraries)
3345         AC_MSG_RESULT($cf_gnat_libraries)
3346 fi
3347
3348 USE_OLD_MAKERULES=""
3349 USE_GNAT_PROJECTS="#"
3350 USE_GNAT_MAKE_GPR="#"
3351 USE_GNAT_GPRBUILD="#"
3352
3353 if test "$cf_gnat_projects" = yes
3354 then
3355         USE_OLD_MAKERULES="#"
3356         USE_GNAT_PROJECTS=""
3357         if test "$cf_cv_VERSION_GPRBUILD" != no
3358         then
3359                 USE_GNAT_GPRBUILD=""
3360         elif test "$cf_cv_VERSION_GNATMAKE" != no
3361         then
3362                 USE_GNAT_MAKE_GPR=""
3363         else
3364                 AC_MSG_WARN(use old makefile rules since tools are missing)
3365         fi
3366 fi
3367
3368 if test "$cf_gnat_libraries" = yes
3369 then
3370         USE_GNAT_LIBRARIES=""
3371 else
3372         USE_GNAT_LIBRARIES="#"
3373 fi
3374
3375 AC_SUBST(USE_OLD_MAKERULES)
3376 AC_SUBST(USE_GNAT_PROJECTS)
3377 AC_SUBST(USE_GNAT_LIBRARIES)
3378 AC_SUBST(USE_GNAT_MAKE_GPR)
3379 AC_SUBST(USE_GNAT_GPRBUILD)
3380 ])dnl
3381 dnl ---------------------------------------------------------------------------
3382 dnl CF_GNAT_SIGINT version: 2 updated: 2021/01/01 13:31:04
3383 dnl --------------
3384 dnl Check if gnat supports SIGINT, and presumably tasking.  For the latter, it
3385 dnl is noted that gnat may compile a tasking unit even for configurations which
3386 dnl fail at runtime.
3387 AC_DEFUN([CF_GNAT_SIGINT],[
3388 AC_CACHE_CHECK(if GNAT supports SIGINT,cf_cv_gnat_sigint,[
3389 CF_GNAT_TRY_LINK([with Ada.Interrupts.Names;
3390
3391 package ConfTest is
3392
3393    pragma Warnings (Off);  --  the next pragma exists since 3.11p
3394    pragma Unreserve_All_Interrupts;
3395    pragma Warnings (On);
3396
3397    protected Process is
3398       procedure Stop;
3399       function Continue return Boolean;
3400       pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT);
3401    private
3402       Done : Boolean := False;
3403    end Process;
3404
3405 end ConfTest;],
3406 [package body ConfTest is
3407    protected body Process is
3408       procedure Stop is
3409       begin
3410          Done := True;
3411       end Stop;
3412       function Continue return Boolean is
3413       begin
3414          return not Done;
3415       end Continue;
3416    end Process;
3417 end ConfTest;],
3418         [cf_cv_gnat_sigint=yes],
3419         [cf_cv_gnat_sigint=no])])
3420
3421 if test "$cf_cv_gnat_sigint" = yes ; then
3422         USE_GNAT_SIGINT=""
3423 else
3424         USE_GNAT_SIGINT="#"
3425 fi
3426 AC_SUBST(USE_GNAT_SIGINT)
3427 ])dnl
3428 dnl ---------------------------------------------------------------------------
3429 dnl CF_GNAT_TRY_LINK version: 4 updated: 2021/01/01 13:31:04
3430 dnl ----------------
3431 dnl Verify that a test program compiles/links with GNAT.
3432 dnl $cf_ada_make is set to the program that compiles/links
3433 dnl $ADAFLAGS may be set to the GNAT flags.
3434 dnl
3435 dnl $1 is the text of the spec
3436 dnl $2 is the text of the body
3437 dnl $3 is the shell command to execute if successful
3438 dnl $4 is the shell command to execute if not successful
3439 AC_DEFUN([CF_GNAT_TRY_LINK],
3440 [
3441 rm -rf ./conftest* ./*~conftest*
3442 cat >>conftest.ads <<CF_EOF
3443 $1
3444 CF_EOF
3445 cat >>conftest.adb <<CF_EOF
3446 $2
3447 CF_EOF
3448 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3449 ifelse($3,,      :,[      $3])
3450 ifelse($4,,,[else
3451    $4])
3452 fi
3453 rm -rf ./conftest* ./*~conftest*
3454 ])dnl
3455 dnl ---------------------------------------------------------------------------
3456 dnl CF_GNAT_TRY_RUN version: 6 updated: 2021/01/01 13:31:04
3457 dnl ---------------
3458 dnl Verify that a test program compiles and runs with GNAT
3459 dnl $cf_ada_make is set to the program that compiles/links
3460 dnl $ADAFLAGS may be set to the GNAT flags.
3461 dnl
3462 dnl $1 is the text of the spec
3463 dnl $2 is the text of the body
3464 dnl $3 is the shell command to execute if successful
3465 dnl $4 is the shell command to execute if not successful
3466 AC_DEFUN([CF_GNAT_TRY_RUN],
3467 [
3468 rm -rf ./conftest* ./*~conftest*
3469 cat >>conftest.ads <<CF_EOF
3470 $1
3471 CF_EOF
3472 cat >>conftest.adb <<CF_EOF
3473 $2
3474 CF_EOF
3475 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3476    if ( ./conftest 1>&AC_FD_CC 2>&1 ) ; then
3477 ifelse($3,,      :,[      $3])
3478 ifelse($4,,,[   else
3479       $4])
3480    fi
3481 ifelse($4,,,[else
3482    $4])
3483 fi
3484 rm -rf ./conftest* ./*~conftest*
3485 ])dnl
3486 dnl ---------------------------------------------------------------------------
3487 dnl CF_GNAT_VERSION version: 22 updated: 2019/12/31 08:53:54
3488 dnl ---------------
3489 dnl $1 = cache variable to update
3490 dnl $2 = program name
3491 dnl Verify version of GNAT or related tool
3492 AC_DEFUN([CF_GNAT_VERSION],
3493 [
3494 AC_CACHE_CHECK(for ifelse($2,,gnat,$2) version, cf_cv_gnat_version,[
3495 cf_cv_gnat_version=`ifelse($2,,${cf_ada_make:-gnatmake},$2) --version 2>&1 | \
3496         grep '[[0-9]].[[0-9]][[0-9]]*' |\
3497         sed -e '2,$d' -e 's/[[^0-9 \.]]//g' -e 's/^[[ ]]*//' -e 's/ .*//'`
3498 ])
3499 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no
3500 ifelse($1,,,[eval $1=$cf_cv_gnat_version; unset cf_cv_gnat_version])
3501 ])dnl
3502 dnl ---------------------------------------------------------------------------
3503 dnl CF_GNU_SOURCE version: 10 updated: 2018/12/10 20:09:41
3504 dnl -------------
3505 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
3506 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
3507 dnl (or misfeature) of glibc2, which breaks portability of many applications,
3508 dnl since it is interwoven with GNU extensions.
3509 dnl
3510 dnl Well, yes we could work around it...
3511 dnl
3512 dnl Parameters:
3513 dnl     $1 is the nominal value for _XOPEN_SOURCE
3514 AC_DEFUN([CF_GNU_SOURCE],
3515 [
3516 cf_gnu_xopen_source=ifelse($1,,500,$1)
3517
3518 AC_CACHE_CHECK(if this is the GNU C library,cf_cv_gnu_library,[
3519 AC_TRY_COMPILE([#include <sys/types.h>],[
3520         #if __GLIBC__ > 0 && __GLIBC_MINOR__ >= 0
3521                 return 0;
3522         #elif __NEWLIB__ > 0 && __NEWLIB_MINOR__ >= 0
3523                 return 0;
3524         #else
3525         #       error not GNU C library
3526         #endif],
3527         [cf_cv_gnu_library=yes],
3528         [cf_cv_gnu_library=no])
3529 ])
3530
3531 if test x$cf_cv_gnu_library = xyes; then
3532
3533         # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
3534         # was changed to help a little.  newlib incorporated the change about 4
3535         # years later.
3536         AC_CACHE_CHECK(if _DEFAULT_SOURCE can be used as a basis,cf_cv_gnu_library_219,[
3537                 cf_save="$CPPFLAGS"
3538                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3539                 AC_TRY_COMPILE([#include <sys/types.h>],[
3540                         #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 19) || (__GLIBC__ > 2)
3541                                 return 0;
3542                         #elif (__NEWLIB__ == 2 && __NEWLIB_MINOR__ >= 4) || (__GLIBC__ > 3)
3543                                 return 0;
3544                         #else
3545                         #       error GNU C library __GLIBC__.__GLIBC_MINOR__ is too old
3546                         #endif],
3547                         [cf_cv_gnu_library_219=yes],
3548                         [cf_cv_gnu_library_219=no])
3549                 CPPFLAGS="$cf_save"
3550         ])
3551
3552         if test "x$cf_cv_gnu_library_219" = xyes; then
3553                 cf_save="$CPPFLAGS"
3554                 AC_CACHE_CHECK(if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE,cf_cv_gnu_dftsrc_219,[
3555                         CF_ADD_CFLAGS(-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=$cf_gnu_xopen_source)
3556                         AC_TRY_COMPILE([
3557                                 #include <limits.h>
3558                                 #include <sys/types.h>
3559                                 ],[
3560                                 #if (_XOPEN_SOURCE >= $cf_gnu_xopen_source) && (MB_LEN_MAX > 1)
3561                                         return 0;
3562                                 #else
3563                                 #       error GNU C library is too old
3564                                 #endif],
3565                                 [cf_cv_gnu_dftsrc_219=yes],
3566                                 [cf_cv_gnu_dftsrc_219=no])
3567                         ])
3568                 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
3569         else
3570                 cf_cv_gnu_dftsrc_219=maybe
3571         fi
3572
3573         if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
3574
3575                 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
3576                 AC_TRY_COMPILE([#include <sys/types.h>],[
3577                         #ifndef _XOPEN_SOURCE
3578                         #error  expected _XOPEN_SOURCE to be defined
3579                         #endif],
3580                         [cf_cv_gnu_source=no],
3581                         [cf_save="$CPPFLAGS"
3582                          CF_ADD_CFLAGS(-D_GNU_SOURCE)
3583                          AC_TRY_COMPILE([#include <sys/types.h>],[
3584                                 #ifdef _XOPEN_SOURCE
3585                                 #error  expected _XOPEN_SOURCE to be undefined
3586                                 #endif],
3587                                 [cf_cv_gnu_source=no],
3588                                 [cf_cv_gnu_source=yes])
3589                         CPPFLAGS="$cf_save"
3590                         ])
3591                 ])
3592
3593                 if test "$cf_cv_gnu_source" = yes
3594                 then
3595                 AC_CACHE_CHECK(if we should also define _DEFAULT_SOURCE,cf_cv_default_source,[
3596                         CF_APPEND_TEXT(CPPFLAGS,-D_GNU_SOURCE)
3597                         AC_TRY_COMPILE([#include <sys/types.h>],[
3598                                 #ifdef _DEFAULT_SOURCE
3599                                 #error  expected _DEFAULT_SOURCE to be undefined
3600                                 #endif],
3601                                 [cf_cv_default_source=no],
3602                                 [cf_cv_default_source=yes])
3603                         ])
3604                         if test "$cf_cv_default_source" = yes
3605                         then
3606                                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3607                         fi
3608                 fi
3609         fi
3610
3611 fi
3612 ])dnl
3613 dnl ---------------------------------------------------------------------------
3614 dnl CF_GPP_LIBRARY version: 13 updated: 2021/01/01 13:31:04
3615 dnl --------------
3616 dnl If we're trying to use g++, test if libg++ is installed (a rather common
3617 dnl problem :-).  If we have the compiler but no library, we'll be able to
3618 dnl configure, but won't be able to build the c++ demo program.
3619 AC_DEFUN([CF_GPP_LIBRARY],
3620 [
3621 cf_cxx_library=unknown
3622 case "$cf_cv_system_name" in
3623 (os2*)
3624         cf_gpp_libname=gpp
3625         ;;
3626 (*)
3627         cf_gpp_libname=g++
3628         ;;
3629 esac
3630 if test "$GXX" = yes; then
3631         AC_MSG_CHECKING([for lib$cf_gpp_libname])
3632         cf_save="$LIBS"
3633         CF_ADD_LIB($cf_gpp_libname)
3634         AC_TRY_LINK([
3635 #include <$cf_gpp_libname/builtin.h>
3636         ],
3637         [two_arg_error_handler_t foo2 = lib_error_handler],
3638         [cf_cxx_library=yes
3639          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3640          if test "$cf_gpp_libname" = cpp ; then
3641             AC_DEFINE(HAVE_GPP_BUILTIN_H,1,[Define to 1 if we have gpp builtin.h])
3642          else
3643             AC_DEFINE(HAVE_GXX_BUILTIN_H,1,[Define to 1 if we have g++ builtin.h])
3644          fi],
3645         [AC_TRY_LINK([
3646 #include <builtin.h>
3647         ],
3648         [two_arg_error_handler_t foo2 = lib_error_handler],
3649         [cf_cxx_library=yes
3650          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3651          AC_DEFINE(HAVE_BUILTIN_H,1,[Define to 1 if we have builtin.h])],
3652         [cf_cxx_library=no])])
3653         LIBS="$cf_save"
3654         AC_MSG_RESULT($cf_cxx_library)
3655 fi
3656 ])dnl
3657 dnl ---------------------------------------------------------------------------
3658 dnl CF_GXX_VERSION version: 9 updated: 2023/03/05 14:30:13
3659 dnl --------------
3660 dnl Check for version of g++
3661 AC_DEFUN([CF_GXX_VERSION],[
3662 AC_REQUIRE([AC_PROG_CPP])
3663 GXX_VERSION=none
3664 if test "$GXX" = yes; then
3665         AC_MSG_CHECKING(version of ${CXX:-g++})
3666         GXX_VERSION="`${CXX:-g++} --version 2>/dev/null | sed -e '2,$d' -e 's/^[[^(]]*([[^)]][[^)]]*) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
3667         if test -z "$GXX_VERSION"
3668         then
3669                 GXX_VERSION=unknown
3670                 GXX=no
3671         fi
3672         AC_MSG_RESULT($GXX_VERSION)
3673 fi
3674 ])dnl
3675 dnl ---------------------------------------------------------------------------
3676 dnl CF_GXX_WARNINGS version: 11 updated: 2021/01/08 16:50:55
3677 dnl ---------------
3678 dnl Check if the compiler supports useful warning options.
3679 dnl
3680 dnl Most of gcc's options apply to g++, except:
3681 dnl     -Wbad-function-cast
3682 dnl     -Wmissing-declarations
3683 dnl     -Wnested-externs
3684 dnl
3685 dnl Omit a few (for now):
3686 dnl     -Winline
3687 dnl
3688 dnl Parameter:
3689 dnl     $1 is an optional list of g++ warning flags that a particular
3690 dnl             application might want to use, e.g., "no-unused" for
3691 dnl             -Wno-unused
3692 dnl Special:
3693 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
3694 dnl
3695 AC_DEFUN([CF_GXX_WARNINGS],
3696 [
3697
3698 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS)
3699 CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS)
3700
3701 AC_REQUIRE([CF_GXX_VERSION])
3702
3703 AC_LANG_SAVE
3704 AC_LANG_CPLUSPLUS
3705
3706 cat > conftest.$ac_ext <<EOF
3707 #line __oline__ "configure"
3708 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
3709 EOF
3710
3711 if test "$INTEL_CPLUSPLUS" = yes
3712 then
3713 # The "-wdXXX" options suppress warnings:
3714 # remark #1419: external declaration in primary source file
3715 # remark #1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3716 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3717 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
3718 # remark #193: zero used for undefined preprocessing identifier
3719 # remark #593: variable "curs_sb_left_arrow" was set but never used
3720 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
3721 # remark #869: parameter "tw" was never referenced
3722 # remark #981: operands are evaluated in unspecified order
3723 # warning #269: invalid format string conversion
3724
3725         AC_CHECKING([for $CC warning options])
3726         cf_save_CXXFLAGS="$CXXFLAGS"
3727         EXTRA_CXXFLAGS="-Wall"
3728         for cf_opt in \
3729                 wd1419 \
3730                 wd1682 \
3731                 wd1683 \
3732                 wd1684 \
3733                 wd193 \
3734                 wd279 \
3735                 wd593 \
3736                 wd810 \
3737                 wd869 \
3738                 wd981
3739         do
3740                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
3741                 if AC_TRY_EVAL(ac_compile); then
3742                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3743                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3744                 fi
3745         done
3746         CXXFLAGS="$cf_save_CXXFLAGS"
3747
3748 elif test "$GXX" = yes
3749 then
3750         AC_CHECKING([for $CXX warning options])
3751         cf_save_CXXFLAGS="$CXXFLAGS"
3752         EXTRA_CXXFLAGS="-W -Wall"
3753         cf_gxx_extra_warnings=""
3754         test "$with_ext_const" = yes && cf_gxx_extra_warnings="Wwrite-strings"
3755         case "$GXX_VERSION" in
3756         ([[1-2]].*)
3757                 ;;
3758         (*)
3759                 cf_gxx_extra_warnings="$cf_gxx_extra_warnings Weffc++"
3760                 ;;
3761         esac
3762         for cf_opt in \
3763                 Wabi \
3764                 fabi-version=0 \
3765                 Wextra \
3766                 Wignored-qualifiers \
3767                 Wlogical-op \
3768                 Woverloaded-virtual \
3769                 Wsign-promo \
3770                 Wsynth \
3771                 Wold-style-cast \
3772                 Wcast-align \
3773                 Wcast-qual \
3774                 Wpointer-arith \
3775                 Wshadow \
3776                 Wundef $cf_gxx_extra_warnings $1
3777         do
3778                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
3779                 if AC_TRY_EVAL(ac_compile); then
3780                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3781                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3782                 else
3783                         test -n "$verbose" && AC_MSG_RESULT(... no -$cf_opt)
3784                 fi
3785         done
3786         CXXFLAGS="$cf_save_CXXFLAGS"
3787 fi
3788
3789 rm -rf ./conftest*
3790 AC_LANG_RESTORE
3791 AC_SUBST(EXTRA_CXXFLAGS)
3792 ])dnl
3793 dnl ---------------------------------------------------------------------------
3794 dnl CF_HASHED_DB version: 7 updated: 2015/04/18 08:56:57
3795 dnl ------------
3796 dnl Look for an instance of the Berkeley hashed database.
3797 dnl
3798 dnl $1 = optional parameter, to specify install-prefix for the database.
3799 AC_DEFUN([CF_HASHED_DB],
3800 [
3801 ifelse([$1],,,[
3802 case $1 in
3803 (yes|*able*)
3804         ;;
3805 (*)
3806         if test -d "$1" ; then
3807                 CF_ADD_INCDIR($1/include)
3808                 CF_ADD_LIBDIR($1/lib)
3809         else
3810                 case "$1" in
3811                 (./*|../*|/*)
3812                         AC_MSG_WARN(no such directory $1)
3813                         ;;
3814                 (*)
3815                         CF_FIND_SUB_INCDIR($1)
3816                         CF_FIND_SUB_LIBDIR($1)
3817                         ;;
3818                 esac
3819         fi
3820 esac
3821 ])
3822 AC_CHECK_HEADER(db.h,[
3823 CF_HASHED_DB_VERSION
3824 if test "$cf_cv_hashed_db_version" = unknown ; then
3825         AC_MSG_ERROR(Cannot determine version of db)
3826 else
3827         CF_HASHED_DB_LIBS
3828         if test "$cf_cv_hashed_db_libs" = unknown ; then
3829                 AC_MSG_ERROR(Cannot determine library for db)
3830         elif test "$cf_cv_hashed_db_libs" != default ; then
3831                 CF_ADD_LIB($cf_cv_hashed_db_libs)
3832         fi
3833 fi
3834 ],[
3835         AC_MSG_ERROR(Cannot find db.h)
3836 ])
3837 ])dnl
3838 dnl ---------------------------------------------------------------------------
3839 dnl CF_HASHED_DB_LIBS version: 10 updated: 2021/01/02 17:09:14
3840 dnl -----------------
3841 dnl Given that we have the header and version for hashed database, find the
3842 dnl library information.
3843 AC_DEFUN([CF_HASHED_DB_LIBS],
3844 [
3845 AC_CACHE_CHECK(for db libraries, cf_cv_hashed_db_libs,[
3846 cf_cv_hashed_db_libs=unknown
3847 for cf_db_libs in "" db$cf_cv_hashed_db_version db-$cf_cv_hashed_db_version db ''
3848 do
3849         cf_save_libs="$LIBS"
3850         if test -n "$cf_db_libs"; then
3851                 CF_ADD_LIB($cf_db_libs)
3852         fi
3853         CF_MSG_LOG(checking for library $cf_db_libs)
3854         AC_TRY_LINK([
3855 $ac_includes_default
3856 #include <db.h>
3857 ],[
3858         char *path = "/tmp/foo";
3859 #ifdef DB_VERSION_MAJOR
3860 #if DB_VERSION_MAJOR >= 4
3861         DB *result = 0;
3862         db_create(&result, NULL, 0);
3863         result->open(result,
3864                 NULL,
3865                 path,
3866                 path,
3867                 DB_HASH,
3868                 DB_CREATE,
3869                 0644);
3870 #elif DB_VERSION_MAJOR >= 3
3871         DB *result = 0;
3872         db_create(&result, NULL, 0);
3873         result->open(result,
3874                 path,
3875                 path,
3876                 DB_HASH,
3877                 DB_CREATE,
3878                 0644);
3879 #elif DB_VERSION_MAJOR >= 2
3880         DB *result = 0;
3881         db_open(path,
3882                 DB_HASH,
3883                 DB_CREATE,
3884                 0644,
3885                 (DB_ENV *) 0,
3886                 (DB_INFO *) 0,
3887                 &result);
3888 #endif /* DB_VERSION_MAJOR */
3889 #else
3890         DB *result = dbopen(path,
3891                      2,
3892                      0644,
3893                      DB_HASH,
3894                      0);
3895 #endif
3896         ${cf_cv_main_return:-return}(result != 0)
3897 ],[
3898         if test -n "$cf_db_libs" ; then
3899                 cf_cv_hashed_db_libs=$cf_db_libs
3900         else
3901                 cf_cv_hashed_db_libs=default
3902         fi
3903         LIBS="$cf_save_libs"
3904         break
3905 ])
3906         LIBS="$cf_save_libs"
3907 done
3908 ])
3909 ])dnl
3910 dnl ---------------------------------------------------------------------------
3911 dnl CF_HASHED_DB_VERSION version: 5 updated: 2023/02/18 17:41:25
3912 dnl --------------------
3913 dnl Given that we have the header file for hashed database, find the version
3914 dnl information.
3915 AC_DEFUN([CF_HASHED_DB_VERSION],
3916 [
3917 AC_CACHE_CHECK(for version of db, cf_cv_hashed_db_version,[
3918 cf_cv_hashed_db_version=unknown
3919
3920 for cf_db_version in 1 2 3 4 5 6
3921 do
3922         CF_MSG_LOG(checking for db version $cf_db_version)
3923         AC_TRY_COMPILE([
3924 $ac_includes_default
3925 #include <db.h>
3926
3927 #ifdef DB_VERSION_MAJOR
3928         /* db2 (DB_VERSION_MAJOR=2) has also DB_VERSION_MINOR, tested with 7 */
3929 #if $cf_db_version == DB_VERSION_MAJOR
3930         /* ok */
3931 #else
3932         #error $cf_db_version is not DB_VERSION_MAJOR
3933 #endif
3934 #else
3935 #if $cf_db_version == 1
3936         /* ok: assuming this is DB 1.8.5 */
3937 #else
3938         #error $cf_db_version is not 1
3939 #endif
3940 #endif
3941 ],[DBT *foo = 0],[
3942         cf_cv_hashed_db_version=$cf_db_version
3943         break
3944         ])
3945 done
3946 ])
3947 ])dnl
3948 dnl ---------------------------------------------------------------------------
3949 dnl CF_HEADER_PATH version: 15 updated: 2021/01/01 13:31:04
3950 dnl --------------
3951 dnl Construct a search-list of directories for a nonstandard header-file
3952 dnl
3953 dnl Parameters
3954 dnl     $1 = the variable to return as result
3955 dnl     $2 = the package name
3956 AC_DEFUN([CF_HEADER_PATH],
3957 [
3958 $1=
3959
3960 # collect the current set of include-directories from compiler flags
3961 cf_header_path_list=""
3962 if test -n "${CFLAGS}${CPPFLAGS}" ; then
3963         for cf_header_path in $CPPFLAGS $CFLAGS
3964         do
3965                 case "$cf_header_path" in
3966                 (-I*)
3967                         cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
3968                         CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
3969                         cf_header_path_list="$cf_header_path_list [$]$1"
3970                         ;;
3971                 esac
3972         done
3973 fi
3974
3975 # add the variations for the package we are looking for
3976 CF_SUBDIR_PATH($1,$2,include)
3977
3978 test "$includedir" != NONE && \
3979 test "$includedir" != "/usr/include" && \
3980 test -d "$includedir" && {
3981         test -d "$includedir" &&    $1="[$]$1 $includedir"
3982         test -d "$includedir/$2" && $1="[$]$1 $includedir/$2"
3983 }
3984
3985 test "$oldincludedir" != NONE && \
3986 test "$oldincludedir" != "/usr/include" && \
3987 test -d "$oldincludedir" && {
3988         test -d "$oldincludedir"    && $1="[$]$1 $oldincludedir"
3989         test -d "$oldincludedir/$2" && $1="[$]$1 $oldincludedir/$2"
3990 }
3991
3992 $1="[$]$1 $cf_header_path_list"
3993 ])dnl
3994 dnl ---------------------------------------------------------------------------
3995 dnl CF_HELP_MESSAGE version: 4 updated: 2019/12/31 08:53:54
3996 dnl ---------------
3997 dnl Insert text into the help-message, for readability, from AC_ARG_WITH.
3998 AC_DEFUN([CF_HELP_MESSAGE],
3999 [CF_ACVERSION_CHECK(2.53,[],[
4000 AC_DIVERT_HELP($1)])dnl
4001 ])dnl
4002 dnl ---------------------------------------------------------------------------
4003 dnl CF_INCLUDE_DIRS version: 10 updated: 2014/09/19 20:58:42
4004 dnl ---------------
4005 dnl Construct the list of include-options according to whether we're building
4006 dnl in the source directory or using '--srcdir=DIR' option.
4007 AC_DEFUN([CF_INCLUDE_DIRS],
4008 [
4009 if test "$srcdir" != "."; then
4010         CPPFLAGS="-I\${srcdir}/../include $CPPFLAGS"
4011 fi
4012 CPPFLAGS="-I../include $CPPFLAGS"
4013 if test "$srcdir" != "."; then
4014         CPPFLAGS="-I\${srcdir} $CPPFLAGS"
4015 fi
4016 CPPFLAGS="-I. $CPPFLAGS"
4017 AC_SUBST(CPPFLAGS)
4018 ])dnl
4019 dnl ---------------------------------------------------------------------------
4020 dnl CF_INSTALL_OPTS version: 3 updated: 2023/06/03 15:17:30
4021 dnl ---------------
4022 dnl prompt for/fill-in useful install-program options
4023 AC_DEFUN([CF_INSTALL_OPTS],
4024 [
4025 CF_INSTALL_OPT_S
4026 CF_INSTALL_OPT_P
4027 CF_INSTALL_OPT_O
4028 CF_INSTALL_OPT_STRIP_PROG
4029 ])dnl
4030 dnl ---------------------------------------------------------------------------
4031 dnl CF_INSTALL_OPT_O version: 3 updated: 2020/12/31 20:19:42
4032 dnl ----------------
4033 dnl Almost all "install" programs default to the current user's ownership.
4034 dnl Almost - MINIX is an exception.
4035 AC_DEFUN([CF_INSTALL_OPT_O],
4036 [
4037 AC_MSG_CHECKING(if install needs to be told about ownership)
4038 case `$ac_config_guess` in
4039 (*minix)
4040         with_install_o=yes
4041         ;;
4042 (*)
4043         with_install_o=no
4044         ;;
4045 esac
4046
4047 AC_MSG_RESULT($with_install_o)
4048 if test "x$with_install_o" = xyes
4049 then
4050         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'`"
4051 else
4052         INSTALL_OPT_O=
4053 fi
4054
4055 AC_SUBST(INSTALL_OPT_O)
4056 ])dnl
4057 dnl ---------------------------------------------------------------------------
4058 dnl CF_INSTALL_OPT_P version: 3 updated: 2021/01/01 13:31:04
4059 dnl ----------------
4060 dnl Some install-programs accept a "-p" option to preserve file modification
4061 dnl timestamps.  That can be useful as an install option, as well as a way to
4062 dnl avoid the need for ranlib after copying a static archive.
4063 AC_DEFUN([CF_INSTALL_OPT_P],
4064 [
4065 : "${INSTALL:=install}"
4066 AC_CACHE_CHECK(if install accepts -p option, cf_cv_install_p,[
4067         rm -rf ./conftest*
4068         date >conftest.in
4069         mkdir conftest.out
4070         sleep 3
4071         if $INSTALL -p conftest.in conftest.out 2>/dev/null
4072         then
4073                 if test -f conftest.out/conftest.in
4074                 then
4075                         test conftest.in -nt conftest.out/conftest.in 2>conftest.err && \
4076                         test conftest.out/conftest.in -nt conftest.in 2>conftest.err
4077                         if test -s conftest.err
4078                         then
4079                                 cf_cv_install_p=no
4080                         else
4081                                 cf_cv_install_p=yes
4082                         fi
4083                 else
4084                         cf_cv_install_p=no
4085                 fi
4086         else
4087                 cf_cv_install_p=no
4088         fi
4089         rm -rf ./conftest*
4090 ])
4091 ])dnl
4092 dnl ---------------------------------------------------------------------------
4093 dnl CF_INSTALL_OPT_S version: 3 updated: 2021/01/05 19:23:48
4094 dnl ----------------
4095 dnl By default, we should strip executables which are installed, but leave the
4096 dnl ability to suppress that for unit-testing.
4097 AC_DEFUN([CF_INSTALL_OPT_S],
4098 [
4099 AC_MSG_CHECKING(if you want to install stripped executables)
4100 CF_ARG_DISABLE(stripping,
4101         [  --disable-stripping     do not strip (debug info) installed executables],
4102         [enable_stripping=no],
4103         [enable_stripping=yes])
4104 AC_MSG_RESULT($enable_stripping)
4105
4106 if test "$enable_stripping" = yes
4107 then
4108         INSTALL_OPT_S="-s"
4109 else
4110         INSTALL_OPT_S=
4111 fi
4112 AC_SUBST(INSTALL_OPT_S)
4113 ])dnl
4114 dnl ---------------------------------------------------------------------------
4115 dnl CF_INSTALL_OPT_STRIP_PROG version: 1 updated: 2023/06/03 15:17:30
4116 dnl -------------------------
4117 dnl Provide an option for overriding the strip program used in install "-s"
4118 dnl
4119 dnl coreutils install provides a --strip-program option
4120 dnl FreeBSD uses STRIPBIN environment variable, while NetBSD and OpenBSD use
4121 dnl STRIP environment variable.  Other versions of install do not support this.
4122 AC_DEFUN([CF_INSTALL_OPT_STRIP_PROG],
4123 [
4124 AC_REQUIRE([CF_INSTALL_OPT_S])
4125 if test -n "$INSTALL_OPT_S"
4126 then
4127         AC_MSG_CHECKING(if you want to specify strip-program)
4128         AC_ARG_WITH(strip-program,
4129                 [  --with-strip-program=XX specify program to use when stripping in install],
4130                 [with_strip_program=$withval],
4131                 [with_strip_program=no])
4132         AC_MSG_RESULT($with_strip_program)
4133         if test "$with_strip_program" != no
4134         then
4135                 AC_MSG_CHECKING(if strip-program is supported with this installer)
4136                 cf_install_program=`echo "$INSTALL" | sed -e 's%[[ ]]*[[ ]]-.%%'`
4137                 check_install_strip=no
4138                 if test -f "$cf_install_program"
4139                 then
4140                         check_install_version=`"$cf_install_program" --version 2>/dev/null | head -n 1 | grep coreutils`
4141                         if test -n "$check_install_version"
4142                         then
4143                                 check_install_strip="option"
4144                         else
4145                                 for check_strip_variable in STRIPBIN STRIP
4146                                 do
4147                                         if strings "$cf_install_program" | grep "^$check_strip_variable[$]" >/dev/null
4148                                         then
4149                                                 check_install_strip="environ"
4150                                                 break
4151                                         fi
4152                                 done
4153                         fi
4154                 fi
4155                 AC_MSG_RESULT($check_install_strip)
4156                 case "$check_install_strip" in
4157                 (no)
4158                         AC_MSG_WARN($cf_install_program does not support strip program option)
4159                         with_strip_program=no
4160                         ;;
4161                 (environ)
4162                         cat >install.tmp <<-CF_EOF
4163                         #! $SHELL
4164                         STRIPBIN="$with_strip_program" \\
4165                         STRIP="$with_strip_program" \\
4166                         $INSTALL "[$]@"
4167                         CF_EOF
4168                         INSTALL="`pwd`/install.tmp"
4169                         chmod +x "$INSTALL"
4170                         CF_VERBOSE(created $INSTALL)
4171                         ;;
4172                 (option)
4173                         INSTALL_OPT_S="$INSTALL_OPT_S --strip-program=\"$with_strip_program\""
4174                         ;;
4175                 esac
4176         fi
4177 fi
4178 AC_SUBST(INSTALL_OPT_S)
4179 ])dnl
4180 dnl ---------------------------------------------------------------------------
4181 dnl CF_INTEL_COMPILER version: 9 updated: 2023/02/18 17:41:25
4182 dnl -----------------
4183 dnl Check if the given compiler is really the Intel compiler for Linux.  It
4184 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
4185 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
4186 dnl
4187 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
4188 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
4189 dnl the wrappers for gcc and g++ warnings.
4190 dnl
4191 dnl $1 = GCC (default) or GXX
4192 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
4193 dnl $3 = CFLAGS (default) or CXXFLAGS
4194 AC_DEFUN([CF_INTEL_COMPILER],[
4195 AC_REQUIRE([AC_CANONICAL_HOST])
4196 ifelse([$2],,INTEL_COMPILER,[$2])=no
4197
4198 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
4199         case "$host_os" in
4200         (linux*|gnu*)
4201                 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
4202                 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
4203                 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
4204                 AC_TRY_COMPILE([],[
4205 #ifdef __INTEL_COMPILER
4206 #else
4207 #error __INTEL_COMPILER is not defined
4208 #endif
4209 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
4210 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
4211 ],[])
4212                 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
4213                 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
4214                 ;;
4215         esac
4216 fi
4217 ])dnl
4218 dnl ---------------------------------------------------------------------------
4219 dnl CF_ISASCII version: 5 updated: 2023/12/03 09:21:34
4220 dnl ----------
4221 dnl Check if we have either a function or macro for 'isascii()'.
4222 AC_DEFUN([CF_ISASCII],
4223 [
4224 AC_MSG_CHECKING(for isascii)
4225 AC_CACHE_VAL(cf_cv_have_isascii,[
4226         AC_TRY_LINK([#include <ctype.h>],[int x = isascii(' '); (void)x],
4227         [cf_cv_have_isascii=yes],
4228         [cf_cv_have_isascii=no])
4229 ])dnl
4230 AC_MSG_RESULT($cf_cv_have_isascii)
4231 test "$cf_cv_have_isascii" = yes && AC_DEFINE(HAVE_ISASCII,1,[Define to 1 if we have isascii()])
4232 ])dnl
4233 dnl ---------------------------------------------------------------------------
4234 dnl CF_LARGEFILE version: 13 updated: 2023/12/03 19:09:59
4235 dnl ------------
4236 dnl Add checks for large file support.
4237 AC_DEFUN([CF_LARGEFILE],[
4238 ifdef([AC_FUNC_FSEEKO],[
4239         AC_SYS_LARGEFILE
4240         if test "$enable_largefile" != no ; then
4241         AC_FUNC_FSEEKO
4242
4243         # Normally we would collect these definitions in the config.h,
4244         # but (like _XOPEN_SOURCE), some environments rely on having these
4245         # defined before any of the system headers are included.  Another
4246         # case comes up with C++, e.g., on AIX the compiler compiles the
4247         # header files by themselves before looking at the body files it is
4248         # told to compile.  For ncurses, those header files do not include
4249         # the config.h
4250         if test "$ac_cv_sys_large_files" != no
4251         then
4252                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGE_FILES)
4253         fi
4254         if test "$ac_cv_sys_largefile_source" != no
4255         then
4256                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGEFILE_SOURCE)
4257         fi
4258         if test "$ac_cv_sys_file_offset_bits" != no
4259         then
4260                 CF_APPEND_TEXT(CPPFLAGS,-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits)
4261         fi
4262
4263         AC_CACHE_CHECK(whether to use struct dirent64, cf_cv_struct_dirent64,[
4264                 AC_TRY_COMPILE([
4265 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
4266 #include <sys/types.h>
4267 #include <dirent.h>
4268
4269 #ifndef __REDIRECT
4270 /* if transitional largefile support is setup, this is true */
4271 extern struct dirent64 * readdir(DIR *);
4272 #endif
4273                 ],[
4274                 DIR *dp = opendir(".");
4275                 struct dirent64 *x = readdir(dp);
4276                 struct dirent *y = readdir(dp);
4277                 int z = x - y;
4278                 (void)z;
4279                 ],
4280                 [cf_cv_struct_dirent64=yes],
4281                 [cf_cv_struct_dirent64=no])
4282         ])
4283         test "$cf_cv_struct_dirent64" = yes && AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Define to 1 if we have struct dirent64])
4284         fi
4285 ])
4286 ])
4287 dnl ---------------------------------------------------------------------------
4288 dnl CF_LDFLAGS_STATIC version: 14 updated: 2021/01/02 17:09:14
4289 dnl -----------------
4290 dnl Check for compiler/linker flags used to temporarily force usage of static
4291 dnl libraries.  This depends on the compiler and platform.  Use this to help
4292 dnl ensure that the linker picks up a given library based on its position in
4293 dnl the list of linker options and libraries.
4294 AC_DEFUN([CF_LDFLAGS_STATIC],[
4295
4296 if test "$GCC" = yes ; then
4297         case "$cf_cv_system_name" in
4298         (OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]]|darwin*)
4299                 LDFLAGS_STATIC=
4300                 LDFLAGS_SHARED=
4301                 ;;
4302         (*)     # normally, except when broken
4303                 LDFLAGS_STATIC=-static
4304                 LDFLAGS_SHARED=-dynamic
4305                 ;;
4306         esac
4307 else
4308         case "$cf_cv_system_name" in
4309         (aix[[4-7]]*)   # from ld manpage
4310                 LDFLAGS_STATIC=-bstatic
4311                 LDFLAGS_SHARED=-bdynamic
4312                 ;;
4313         (hpux*)         # from ld manpage for hpux10.20, hpux11.11
4314                 # We could also use just "archive" and "shared".
4315                 LDFLAGS_STATIC=-Wl,-a,archive_shared
4316                 LDFLAGS_SHARED=-Wl,-a,shared_archive
4317                 ;;
4318         (irix*)         # from ld manpage IRIX64
4319                 LDFLAGS_STATIC=-Bstatic
4320                 LDFLAGS_SHARED=-Bdynamic
4321                 ;;
4322         (osf[[45]]*)    # from ld manpage osf4.0d, osf5.1
4323                 # alternative "-oldstyle_liblookup" (not in cc manpage)
4324                 LDFLAGS_STATIC=-noso
4325                 LDFLAGS_SHARED=-so_archive
4326                 ;;
4327         (solaris2*)
4328                 LDFLAGS_STATIC=-Bstatic
4329                 LDFLAGS_SHARED=-Bdynamic
4330                 ;;
4331         esac
4332 fi
4333
4334 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
4335 then
4336         AC_MSG_CHECKING(if linker supports switching between static/dynamic)
4337
4338         rm -f libconftest.a
4339         cat >conftest.$ac_ext <<EOF
4340 #line __oline__ "configure"
4341 #include <stdio.h>
4342 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
4343 EOF
4344         if AC_TRY_EVAL(ac_compile) ; then
4345                 ( $AR $ARFLAGS libconftest.a conftest.o ) 2>&AC_FD_CC 1>/dev/null
4346                 ( eval $RANLIB libconftest.a ) 2>&AC_FD_CC >/dev/null
4347         fi
4348         rm -f conftest.*
4349
4350         cf_save_LIBS="$LIBS"
4351
4352         LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS"
4353         AC_TRY_LINK([
4354 #line __oline__ "configure"
4355 #include <stdio.h>
4356 int cf_ldflags_static(FILE *fp);
4357 ],[
4358         return cf_ldflags_static(stdin);
4359 ],[
4360         # some linkers simply ignore the -dynamic
4361         case x`file "conftest$ac_exeext" 2>/dev/null` in
4362         (*static*)
4363                 cf_ldflags_static=no
4364                 ;;
4365         (*)
4366                 cf_ldflags_static=yes
4367                 ;;
4368         esac
4369 ],[cf_ldflags_static=no])
4370
4371         rm -f libconftest.*
4372         LIBS="$cf_save_LIBS"
4373
4374         AC_MSG_RESULT($cf_ldflags_static)
4375
4376         if test "$cf_ldflags_static" != yes
4377         then
4378                 LDFLAGS_STATIC=
4379                 LDFLAGS_SHARED=
4380         fi
4381 else
4382         LDFLAGS_STATIC=
4383         LDFLAGS_SHARED=
4384 fi
4385
4386 AC_SUBST(LDFLAGS_STATIC)
4387 AC_SUBST(LDFLAGS_SHARED)
4388 ])
4389 dnl ---------------------------------------------------------------------------
4390 dnl CF_LD_RPATH_OPT version: 9 updated: 2021/01/01 13:31:04
4391 dnl ---------------
4392 dnl For the given system and compiler, find the compiler flags to pass to the
4393 dnl loader to use the "rpath" feature.
4394 AC_DEFUN([CF_LD_RPATH_OPT],
4395 [
4396 AC_REQUIRE([CF_CHECK_CACHE])
4397
4398 LD_RPATH_OPT=
4399 if test "x$cf_cv_enable_rpath" != xno
4400 then
4401         AC_MSG_CHECKING(for an rpath option)
4402         case "$cf_cv_system_name" in
4403         (irix*)
4404                 if test "$GCC" = yes; then
4405                         LD_RPATH_OPT="-Wl,-rpath,"
4406                 else
4407                         LD_RPATH_OPT="-rpath "
4408                 fi
4409                 ;;
4410         (linux*|gnu*|k*bsd*-gnu|freebsd*)
4411                 LD_RPATH_OPT="-Wl,-rpath,"
4412                 ;;
4413         (openbsd[[2-9]].*|mirbsd*)
4414                 LD_RPATH_OPT="-Wl,-rpath,"
4415                 ;;
4416         (dragonfly*)
4417                 LD_RPATH_OPT="-rpath "
4418                 ;;
4419         (netbsd*)
4420                 LD_RPATH_OPT="-Wl,-rpath,"
4421                 ;;
4422         (osf*|mls+*)
4423                 LD_RPATH_OPT="-rpath "
4424                 ;;
4425         (solaris2*)
4426                 LD_RPATH_OPT="-R"
4427                 ;;
4428         (*)
4429                 ;;
4430         esac
4431         AC_MSG_RESULT($LD_RPATH_OPT)
4432
4433         case "x$LD_RPATH_OPT" in
4434         (x-R*)
4435                 AC_MSG_CHECKING(if we need a space after rpath option)
4436                 cf_save_LIBS="$LIBS"
4437                 CF_ADD_LIBS(${LD_RPATH_OPT}$libdir)
4438                 AC_TRY_LINK(, , cf_rpath_space=no, cf_rpath_space=yes)
4439                 LIBS="$cf_save_LIBS"
4440                 AC_MSG_RESULT($cf_rpath_space)
4441                 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
4442                 ;;
4443         esac
4444 fi
4445 ])dnl
4446 dnl ---------------------------------------------------------------------------
4447 dnl CF_LD_SEARCHPATH version: 4 updated: 2022/08/27 15:43:08
4448 dnl ----------------
4449 dnl Try to obtain the linker's search-path, for use in scripts.
4450 dnl
4451 dnl Ignore LD_LIBRARY_PATH, etc.
4452 AC_DEFUN([CF_LD_SEARCHPATH],[
4453 AC_CACHE_CHECK(for linker search path,cf_cv_ld_searchpath,[
4454
4455 if test "$cross_compiling" != yes ; then
4456
4457 # GNU binutils' ld does not involve permissions which may stop ldconfig.
4458 cf_pathlist=`${LD:-ld} --verbose 2>/dev/null | grep SEARCH_DIR | sed -e 's,SEARCH_DIR[[("=]][[("=]]*,,g' -e 's/"[[)]];//gp' | sort -u`
4459
4460 # The -NX options tell newer versions of Linux ldconfig to not attempt to
4461 # update the cache, which makes it run faster.
4462 test -z "$cf_pathlist" && \
4463         cf_pathlist=`(ldconfig -NX -v) 2>/dev/null | sed -e '/^[[       ]]/d' -e 's/:$//' | sort -u`
4464
4465 test -z "$cf_pathlist" &&
4466         cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e '/^[[        ]]/d' -e 's/:$//p' | sort -u`
4467
4468 # This works with OpenBSD 6.5, which lists only filenames
4469 test -z "$cf_pathlist" &&
4470         cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e 's,^Adding \(.*\)/.*[$],\1,p' | sort -u`
4471
4472 if test -z "$cf_pathlist"
4473 then
4474         # dyld default path with MacOS
4475         if test -f /usr/bin/otool && test "x`uname -s`" = xDarwin
4476         then
4477                 # do this to bypass check
4478                 cf_cv_ld_searchpath='$HOME/lib'
4479                 cf_pathlist="/usr/local/lib /lib /usr/lib"
4480         fi
4481 fi
4482
4483 if test -z "$cf_pathlist"
4484 then
4485         # Solaris is "SunOS"
4486         if test -f /usr/bin/isainfo && test "x`uname -s`" = xSunOS
4487         then
4488                 case x`(isainfo -b)` in
4489                 (x64)
4490                         cf_pathlist="$cf_pathlist /lib/64 /usr/lib/64"
4491                         ;;
4492                 (x32)
4493                         test -d /usr/ccs/lib && cf_pathlist="$cf_pathlist /usr/ccs/lib"
4494                         cf_pathlist="$cf_pathlist /lib /usr/lib"
4495                         ;;
4496                 (*)
4497                         AC_MSG_WARN(problem with Solaris architecture)
4498                         ;;
4499                 esac
4500         fi
4501 fi
4502
4503 if test -z "$cf_pathlist"
4504 then
4505         # HP-UX
4506         if test x"`uname -s`" = xHP-UX
4507         then
4508                 case x`getconf LONG_BIT` in
4509                 (x64)
4510                         cf_pathlist="/usr/lib/hpux64"
4511                         ;;
4512                 (x*)
4513                         cf_pathlist="/usr/lib/hpux32"
4514                         ;;
4515                 esac
4516         fi
4517 fi
4518
4519 fi
4520
4521 # If nothing else, assume it is conventional
4522 test -z "$cf_pathlist" && cf_pathlist="/usr/lib /lib"
4523
4524 # Finally, check that this is only directories
4525 for cf_path in [$]0 $cf_pathlist
4526 do
4527         if test -d "$cf_path"; then
4528                 test -n "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath="${cf_cv_ld_searchpath} "
4529                 cf_cv_ld_searchpath="${cf_cv_ld_searchpath}${cf_path}"
4530         fi
4531 done
4532
4533 # Ensure that it is nonempty
4534 test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib
4535 ])
4536
4537 LD_SEARCHPATH=`echo "$cf_cv_ld_searchpath"|sed -e 's/ /|/g'`
4538 AC_SUBST(LD_SEARCHPATH)
4539 ])dnl
4540 dnl ---------------------------------------------------------------------------
4541 dnl CF_LIBRARY_PATH version: 11 updated: 2021/01/01 13:31:04
4542 dnl ---------------
4543 dnl Construct a search-list of directories for a nonstandard library-file
4544 dnl
4545 dnl Parameters
4546 dnl     $1 = the variable to return as result
4547 dnl     $2 = the package name
4548 AC_DEFUN([CF_LIBRARY_PATH],
4549 [
4550 $1=
4551 cf_library_path_list=""
4552 if test -n "${LDFLAGS}${LIBS}" ; then
4553         for cf_library_path in $LDFLAGS $LIBS
4554         do
4555                 case "$cf_library_path" in
4556                 (-L*)
4557                         cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
4558                         CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
4559                         cf_library_path_list="$cf_library_path_list [$]$1"
4560                         ;;
4561                 esac
4562         done
4563 fi
4564
4565 CF_SUBDIR_PATH($1,$2,lib)
4566
4567 $1="$cf_library_path_list [$]$1"
4568 ])dnl
4569 dnl ---------------------------------------------------------------------------
4570 dnl CF_LIBTOOL_VERSION version: 1 updated: 2013/04/06 18:03:09
4571 dnl ------------------
4572 AC_DEFUN([CF_LIBTOOL_VERSION],[
4573 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
4574 then
4575         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.]].*//'`
4576 else
4577         cf_cv_libtool_version=
4578 fi
4579 test -z "$cf_cv_libtool_version" && unset cf_cv_libtool_version
4580 ])dnl
4581 dnl ---------------------------------------------------------------------------
4582 dnl CF_LIB_PREFIX version: 14 updated: 2021/01/01 13:31:04
4583 dnl -------------
4584 dnl Compute the library-prefix for the given host system
4585 dnl $1 = variable to set
4586 define([CF_LIB_PREFIX],
4587 [
4588         case "$cf_cv_system_name" in
4589         (OS/2*|os2*)
4590                 if test "$DFT_LWR_MODEL" = libtool; then
4591                         LIB_PREFIX='lib'
4592                 else
4593                         LIB_PREFIX=''
4594                 fi
4595                 ;;
4596         (*-msvc*)
4597                 LIB_PREFIX=''
4598                 ;;
4599         (*)     LIB_PREFIX='lib'
4600                 ;;
4601         esac
4602 ifelse($1,,,[$1=$LIB_PREFIX])
4603         AC_SUBST(LIB_PREFIX)
4604 ])dnl
4605 dnl ---------------------------------------------------------------------------
4606 dnl CF_LIB_RULES version: 100 updated: 2023/06/03 15:17:30
4607 dnl ------------
4608 dnl Append definitions and rules for the given models to the subdirectory
4609 dnl Makefiles, and the recursion rule for the top-level Makefile.  If the
4610 dnl subdirectory is a library-source directory, modify the Libs_To_Make list in
4611 dnl the corresponding makefile to list the models that we'll generate.
4612 dnl
4613 dnl For shared libraries, make a list of symbolic links to construct when
4614 dnl generating each library.  The convention used for Linux is the simplest
4615 dnl one:
4616 dnl     lib<name>.so    ->
4617 dnl     lib<name>.so.<major>    ->
4618 dnl     lib<name>.so.<maj>.<minor>
4619 dnl
4620 dnl Note: Libs_To_Make is mixed case, since it is not a pure autoconf variable.
4621 AC_DEFUN([CF_LIB_RULES],
4622 [AC_REQUIRE([AC_PROG_FGREP])dnl
4623 AC_REQUIRE([CF_MAKE_PHONY])dnl
4624
4625 cf_prefix=$LIB_PREFIX
4626 AC_REQUIRE([CF_SUBST_NCURSES_VERSION])
4627
4628 case "$cf_cv_shlib_version" in
4629 (cygdll|msysdll|mingw|msvcdll)
4630         TINFO_NAME=$TINFO_ARG_SUFFIX
4631         TINFO_SUFFIX=.dll
4632         ;;
4633 esac
4634
4635 if test -n "$TINFO_SUFFIX" ; then
4636         case "$TINFO_SUFFIX" in
4637         (tw*)
4638                 TINFO_NAME="${TINFO_NAME}tw${EXTRA_SUFFIX}"
4639                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4640                 ;;
4641         (t*)
4642                 TINFO_NAME="${TINFO_NAME}t${EXTRA_SUFFIX}"
4643                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^t'$EXTRA_SUFFIX'//'`
4644                 ;;
4645         (w*)
4646                 TINFO_NAME="${TINFO_NAME}w${EXTRA_SUFFIX}"
4647                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^w'$EXTRA_SUFFIX'//'`
4648                 ;;
4649         esac
4650 fi
4651
4652 for cf_dir in $SRC_SUBDIRS
4653 do
4654         if test ! -d "$srcdir/$cf_dir" ; then
4655                 continue
4656         elif test -f "$srcdir/$cf_dir/modules" ; then
4657
4658                 SHARED_LIB=
4659                 Libs_To_Make=
4660                 cf_awk_program=
4661                 if test -n "${cf_cv_abi_default}" && test "x${cf_cv_abi_default}" != "x5"
4662                 then
4663                         cf_awk_program="$cf_awk_program\
4664 /deprecated in ABI${cf_cv_abi_default}/ { next; }\
4665 { sub(\"NCURSES([[WT]]+)?\", \"&${cf_cv_abi_default}\"); }\
4666 "
4667                 fi
4668
4669                 if test "x$WILDCARD_SYMS" = xno
4670                 then
4671                         cf_awk_program="$cf_awk_program\
4672 /[[     ]]_\\*;/ { skip=1; next; }\
4673 "
4674                 fi
4675
4676                 if test "x$cf_awk_program" != "x"
4677                 then
4678                         cat >>$cf_dir/Makefile <<CF_EOF
4679
4680 # Generated by CF_LIB_RULES
4681 resulting.map: $UNALTERED_SYMS
4682         $AWK 'BEGIN { skip = 1; last=""; } \
4683 $cf_awk_program \
4684 { if ( last != "" && ( skip == 0 || \[$]\[$]0 !~ /}/ ) ) { print last; }\
4685  skip = 0; last = \[$]\[$]0; } \
4686 END { print last; }' < "$UNALTERED_SYMS" >\[$]@
4687
4688 distclean::
4689         rm -f resulting.map
4690 CF_EOF
4691                 fi
4692
4693                 for cf_item in $cf_LIST_MODELS
4694                 do
4695                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4696                         if test "$cf_dir" = "c++"
4697                         then
4698                                 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4699                         else
4700                                 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4701                         fi
4702                         test -z "$cf_libname" && cf_libname="$cf_dir"
4703                         if test "$cf_item" = shared ; then
4704                                 if test -n "${LIB_SUFFIX}"
4705                                 then
4706                                         cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4707                                 else
4708                                         cf_shared_suffix="$cf_suffix"
4709                                 fi
4710                                 if test "$cf_cv_do_symlinks" = yes ; then
4711                                         cf_version_name=
4712
4713                                         case "$cf_cv_shlib_version" in
4714                                         (rel)
4715                                                 cf_version_name=REL_VERSION
4716                                                 ;;
4717                                         (abi)
4718                                                 cf_version_name=ABI_VERSION
4719                                                 ;;
4720                                         esac
4721
4722                                         if test -n "$cf_version_name"
4723                                         then
4724                                                 case "$cf_cv_system_name" in
4725                                                 (darwin*)
4726                                                         # "w", etc?
4727                                                         cf_suffix="${USE_LIB_SUFFIX}"'.${'$cf_version_name'}'"$cf_shared_suffix"
4728                                                         ;;
4729                                                 (*)
4730                                                         cf_suffix="$cf_suffix"'.${'$cf_version_name'}'
4731                                                         ;;
4732                                                 esac
4733                                         fi
4734                                         if test -n "${USE_LIB_SUFFIX}"
4735                                         then
4736                                                 cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4737                                         else
4738                                                 cf_shared_suffix="$cf_suffix"
4739                                         fi
4740                                 fi
4741                                 # cygwin needs import library, and has unique naming convention
4742                                 # use autodetected ${cf_prefix} for import lib and static lib, but
4743                                 # use 'cyg' prefix for shared lib.
4744                                 case "$cf_cv_shlib_version" in
4745                                 (cygdll)
4746                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4747                                         cf_add_lib="../lib/cyg${cf_libname}${cf_cygsuf}"
4748                                         ;;
4749                                 (msysdll)
4750                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4751                                         cf_add_lib="../lib/msys-${cf_libname}${cf_cygsuf}"
4752                                         ;;
4753                                 (mingw)
4754                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4755                                         cf_add_lib="../lib/lib${cf_libname}${cf_cygsuf}"
4756                                         ;;
4757                                 (msvcdll)
4758                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4759                                         cf_add_lib="../lib/${cf_libname}${cf_cygsuf}"
4760                                         ;;
4761                                 (*)
4762                                         cf_add_lib=
4763                                         ;;
4764                                 esac
4765                                 if test -n "$cf_add_lib"
4766                                 then
4767                                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
4768                                         continue
4769                                 fi
4770                         fi
4771                         cf_add_lib="../lib/${cf_prefix}${cf_libname}${cf_suffix}"
4772                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
4773                 done
4774
4775                 if test "$cf_dir" = ncurses ; then
4776                         cf_subsets="$LIB_SUBSETS"
4777                         cf_r_parts="$cf_subsets"
4778                         cf_liblist="$Libs_To_Make"
4779
4780                         while test -n "$cf_r_parts"
4781                         do
4782                                 cf_l_parts=`echo "$cf_r_parts" |sed -e 's/ .*$//'`
4783                                 cf_r_parts=`echo "$cf_r_parts" |sed -e 's/^[[^ ]]* //'`
4784                                 if test "$cf_l_parts" != "$cf_r_parts" ; then
4785                                         cf_add_lib=
4786                                         case "$cf_l_parts" in
4787                                         (*termlib*)
4788                                                 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TINFO_LIB_SUFFIX}%g`
4789                                                 ;;
4790                                         (*ticlib*)
4791                                                 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TICS_LIB_SUFFIX}%g`
4792                                                 ;;
4793                                         (*)
4794                                                 break
4795                                                 ;;
4796                                         esac
4797                                         if test -n "$cf_add_lib"; then
4798                                                 Libs_To_Make="$cf_add_lib $Libs_To_Make"
4799                                         fi
4800                                 else
4801                                         break
4802                                 fi
4803                         done
4804                 else
4805                         cf_subsets=`echo "$LIB_SUBSETS" | sed -e 's/^termlib.* //'`
4806                 fi
4807
4808                 if test "$cf_dir" = c++; then
4809                         if test "x$with_shared_cxx" != xyes && test -n "$cf_shared_suffix"; then
4810                                 cf_list=
4811                                 for cf_item in $Libs_To_Make
4812                                 do
4813                                         case "$cf_item" in
4814                                         (*.a)
4815                                                 ;;
4816                                         (*)
4817                                                 cf_item=`echo "$cf_item" | sed -e "s,"$cf_shared_suffix",.a,"`
4818                                                 ;;
4819                                         esac
4820                                         for cf_test in $cf_list
4821                                         do
4822                                                 if test "$cf_test" = "$cf_item"
4823                                                 then
4824                                                         cf_LIST_MODELS=`echo "$cf_LIST_MODELS" | sed -e 's/normal//'`
4825                                                         cf_item=
4826                                                         break
4827                                                 fi
4828                                         done
4829                                         test -n "$cf_item" && cf_list="$cf_list $cf_item"
4830                                 done
4831                                 Libs_To_Make="$cf_list"
4832                         fi
4833                 fi
4834
4835                 sed -e "s%@Libs_To_Make@%$Libs_To_Make%" \
4836                     -e "s%@SHARED_LIB@%$SHARED_LIB%" \
4837                         "$cf_dir/Makefile" >$cf_dir/Makefile.out
4838                 mv "$cf_dir/Makefile.out" "$cf_dir/Makefile"
4839
4840                 $AWK -f "$srcdir/mk-0th.awk" \
4841                         libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \
4842                         "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4843
4844                 for cf_subset in $cf_subsets
4845                 do
4846                         cf_subdirs=
4847                         for cf_item in $cf_LIST_MODELS
4848                         do
4849
4850                         echo "Appending rules for ${cf_item} model (${cf_dir}: ${cf_subset})"
4851                         CF_UPPER(cf_ITEM,$cf_item)
4852
4853                         CXX_MODEL=$cf_ITEM
4854                         if test "$CXX_MODEL" = SHARED; then
4855                                 case "$cf_cv_shlib_version" in
4856                                 (cygdll|msysdll|mingw|msvcdll)
4857                                         test "x$with_shared_cxx" = xno && CF_VERBOSE(overriding CXX_MODEL to SHARED)
4858                                         with_shared_cxx=yes
4859                                         ;;
4860                                 (*)
4861                                         test "x$with_shared_cxx" = xno && CXX_MODEL=NORMAL
4862                                         ;;
4863                                 esac
4864                         fi
4865
4866                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4867                         CF_OBJ_SUBDIR($cf_item,cf_subdir)
4868
4869                         # Test for case where we build libtinfo with a different name.
4870                         cf_libname=$cf_dir
4871                         if test "$cf_dir" = ncurses ; then
4872                                 case "$cf_subset" in
4873                                 (*base*)
4874                                         cf_libname=${cf_libname}$USE_LIB_SUFFIX
4875                                         ;;
4876                                 (*termlib*)
4877                                         cf_libname=$TINFO_LIB_SUFFIX
4878                                         ;;
4879                                 (ticlib*)
4880                                         cf_libname=$TICS_LIB_SUFFIX
4881                                         ;;
4882                                 esac
4883                         elif test "$cf_dir" = c++ ; then
4884                                 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4885                                 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4886                         else
4887                                 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4888                                 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4889                         fi
4890                         if test -n "${USE_ARG_SUFFIX}" ; then
4891                                 # undo $USE_LIB_SUFFIX add-on in CF_LIB_SUFFIX
4892                                 cf_suffix=`echo "$cf_suffix" |sed -e "s%^${USE_LIB_SUFFIX}%%"`
4893                         fi
4894
4895                         # These dependencies really are for development, not
4896                         # builds, but they are useful in porting, too.
4897                         cf_depend="../include/ncurses_cfg.h"
4898                         if test "$srcdir" = "."; then
4899                                 cf_reldir="."
4900                         else
4901                                 cf_reldir="\${srcdir}"
4902                         fi
4903
4904                         if test -f "$srcdir/$cf_dir/$cf_dir.priv.h" ; then
4905                                 cf_depend="$cf_depend $cf_reldir/$cf_dir.priv.h"
4906                         elif test -f "$srcdir/$cf_dir/curses.priv.h" ; then
4907                                 cf_depend="$cf_depend $cf_reldir/curses.priv.h"
4908                         fi
4909
4910                         cf_dir_suffix=
4911                         old_cf_suffix="$cf_suffix"
4912                         if test "$cf_cv_shlib_version_infix" = yes ; then
4913                         if test -n "$USE_LIB_SUFFIX" ; then
4914                                 case "$USE_LIB_SUFFIX" in
4915                                 (tw*)
4916                                         cf_libname=`echo "$cf_libname" | sed 's/tw'$EXTRA_SUFFIX'$//'`
4917                                         cf_suffix=`echo "$cf_suffix" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4918                                         cf_dir_suffix=tw$EXTRA_SUFFIX
4919                                         ;;
4920                                 (t*)
4921                                         cf_libname=`echo "$cf_libname" | sed 's/t'$EXTRA_SUFFIX'$//'`
4922                                         cf_suffix=`echo "$cf_suffix" | sed 's/^t'$EXTRA_SUFFIX'//'`
4923                                         cf_dir_suffix=t$EXTRA_SUFFIX
4924                                         ;;
4925                                 (w*)
4926                                         cf_libname=`echo "$cf_libname" | sed 's/w'$EXTRA_SUFFIX'$//'`
4927                                         cf_suffix=`echo "$cf_suffix" | sed 's/^w'$EXTRA_SUFFIX'//'`
4928                                         cf_dir_suffix=w$EXTRA_SUFFIX
4929                                         ;;
4930                                 (*)
4931                                         cf_libname=`echo "$cf_libname" | sed 's/'$EXTRA_SUFFIX'$//'`
4932                                         cf_suffix=`echo "$cf_suffix" | sed 's/^'$EXTRA_SUFFIX'//'`
4933                                         cf_dir_suffix=$EXTRA_SUFFIX
4934                                         ;;
4935                                 esac
4936                         fi
4937                         fi
4938
4939                         $AWK -f "$srcdir/mk-1st.awk" \
4940                                 name=${cf_libname}${cf_dir_suffix} \
4941                                 traces=$LIB_TRACING \
4942                                 MODEL=$cf_ITEM \
4943                                 CXX_MODEL=$CXX_MODEL \
4944                                 LIB_SUFFIX=$LIB_SUFFIX \
4945                                 USE_LIB_SUFFIX=$USE_LIB_SUFFIX \
4946                                 make_phony="${cf_cv_make_PHONY:-no}" \
4947                                 model=$cf_subdir \
4948                                 prefix=$cf_prefix \
4949                                 suffix=$cf_suffix \
4950                                 subset=$cf_subset \
4951                                 driver=$cf_cv_term_driver \
4952                                 SymLink="$LN_S" \
4953                                 TermlibRoot=$TINFO_NAME \
4954                                 TermlibSuffix=$TINFO_SUFFIX \
4955                                 ShlibVer=$cf_cv_shlib_version \
4956                                 ShlibVerInfix=$cf_cv_shlib_version_infix \
4957                                 ReLink=${cf_cv_do_relink:-no} \
4958                                 ReRanlib=${cf_cv_do_reranlib:-yes} \
4959                                 DoLinks=$cf_cv_do_symlinks \
4960                                 rmSoLocs=$cf_cv_rm_so_locs \
4961                                 ldconfig="$LDCONFIG" \
4962                                 overwrite=$WITH_OVERWRITE \
4963                                 depend="$cf_depend" \
4964                                 host="$host" \
4965                                 libtool_version="$LIBTOOL_VERSION" \
4966                                 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4967
4968                         cf_suffix="$old_cf_suffix"
4969
4970                         for cf_subdir2 in $cf_subdirs lib
4971                         do
4972                                 test "$cf_subdir" = "$cf_subdir2" && break
4973                         done
4974                         test "${cf_subset}.${cf_subdir2}" != "${cf_subset}.${cf_subdir}" && \
4975                         $AWK -f "$srcdir/mk-2nd.awk" \
4976                                 name=$cf_dir \
4977                                 traces=$LIB_TRACING \
4978                                 MODEL=$cf_ITEM \
4979                                 model=$cf_subdir \
4980                                 subset=$cf_subset \
4981                                 srcdir=$srcdir \
4982                                 echo=$WITH_ECHO \
4983                                 crenames=$cf_cv_prog_CC_c_o \
4984                                 cxxrenames=$cf_cv_prog_CXX_c_o \
4985                                 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4986                         cf_subdirs="$cf_subdirs $cf_subdir"
4987                         done
4988                 done
4989         fi
4990
4991         echo '  ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >>Makefile
4992 done
4993
4994 echo >> Makefile
4995 echo '# generated by CF_LIB_RULES' >> Makefile
4996
4997 if test "x$cf_cv_make_PHONY" = xyes ; then
4998         cat >> Makefile <<-CF_EOF
4999
5000         .PHONY :        libs
5001         .PHONY :        lintlib
5002         .PHONY :        install.includes
5003         .PHONY :        uninstall.includes
5004         .PHONY :        install.libs
5005         .PHONY :        uninstall.libs
5006 CF_EOF
5007 fi
5008
5009 for cf_dir in $SRC_SUBDIRS
5010 do
5011         if test ! -d "$srcdir/$cf_dir" ; then
5012                 continue
5013         fi
5014
5015         if test -f "$cf_dir/Makefile" ; then
5016                 case "$cf_dir" in
5017                 (Ada95)
5018                         echo 'libs \' >> Makefile
5019                         echo 'install.libs \' >> Makefile
5020                         echo 'uninstall.libs ::' >> Makefile
5021                         echo '  ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >> Makefile
5022                         ;;
5023                 esac
5024         fi
5025
5026         if test -f "$srcdir/$cf_dir/modules" ; then
5027
5028                 if test "x$cf_cv_make_PHONY" = xyes ; then
5029                         cat >> Makefile <<-CF_EOF
5030
5031                         .PHONY :        install.$cf_dir
5032                         .PHONY :        uninstall.$cf_dir
5033 CF_EOF
5034                 fi
5035
5036                 echo >> Makefile
5037                 if test -f "$srcdir/$cf_dir/headers" ; then
5038 cat >> Makefile <<CF_EOF
5039 install.includes \\
5040 uninstall.includes \\
5041 CF_EOF
5042                 fi
5043
5044 cat >> Makefile <<CF_EOF
5045 lint \\
5046 libs \\
5047 lintlib \\
5048 install.libs \\
5049 uninstall.libs \\
5050 install.$cf_dir \\
5051 uninstall.$cf_dir ::
5052         ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5053 CF_EOF
5054         elif test -f "$srcdir/$cf_dir/headers" ; then
5055 cat >> Makefile <<CF_EOF
5056
5057 libs \\
5058 install.libs \\
5059 uninstall.libs \\
5060 install.includes \\
5061 uninstall.includes ::
5062         ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5063 CF_EOF
5064 fi
5065 done
5066
5067 if test "x$cf_cv_make_PHONY" = xyes ; then
5068         cat >> Makefile <<-CF_EOF
5069
5070         .PHONY :        install.data
5071         .PHONY :        uninstall.data
5072 CF_EOF
5073 fi
5074
5075 if test "x$cf_with_db_install" = xyes; then
5076 cat >> Makefile <<CF_EOF
5077
5078 install.libs uninstall.libs \\
5079 install.data uninstall.data ::
5080 $MAKE_TERMINFO  ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5081 CF_EOF
5082 else
5083 cat >> Makefile <<CF_EOF
5084
5085 install.libs uninstall.libs ::
5086         ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5087 CF_EOF
5088 fi
5089
5090 if test "x$cf_with_manpages" = xyes; then
5091
5092 if test "x$cf_cv_make_PHONY" = xyes ; then
5093         cat >> Makefile <<-CF_EOF
5094
5095         .PHONY :        install.man
5096         .PHONY :        uninstall.man
5097 CF_EOF
5098 fi
5099
5100 cat >> Makefile <<CF_EOF
5101
5102 install.man \\
5103 uninstall.man ::
5104         ( cd man && \${MAKE} \${TOP_MFLAGS} \[$]@ )
5105 CF_EOF
5106 fi
5107
5108 cat >> Makefile <<CF_EOF
5109
5110 distclean ::
5111         rm -f config.cache config.log config.status Makefile include/ncurses_cfg.h
5112         rm -f headers.sh headers.sed mk_shared_lib.sh
5113         rm -f edit_man.* man_alias.* *.tmp
5114         rm -rf \${DIRS_TO_MAKE}
5115 CF_EOF
5116
5117 dnl If we're installing into a subdirectory of /usr/include, etc., we should
5118 dnl prepend the subdirectory's name to the "#include" paths.  It won't hurt
5119 dnl anything, and will make it more standardized.  It's awkward to decide this
5120 dnl at configuration because of quoting, so we'll simply make all headers
5121 dnl installed via a script that can do the right thing.
5122
5123 rm -f headers.sed headers.sh
5124
5125 dnl ( generating this script makes the makefiles a little tidier :-)
5126 echo creating headers.sh
5127 cat >headers.sh <<CF_EOF
5128 #! $SHELL
5129 # This shell script is generated by the 'configure' script.  It is invoked in a
5130 # subdirectory of the build tree.  It generates a sed-script in the parent
5131 # directory that is used to adjust includes for header files that reside in a
5132 # subdirectory of /usr/include, etc.
5133 PRG=""
5134 while test \[$]# != 3
5135 do
5136 PRG="\$PRG \[$]1"; shift
5137 done
5138 DST=\[$]1
5139 REF=\[$]2
5140 SRC=\[$]3
5141 TMPSRC=\${TMPDIR:-/tmp}/\`basename \$SRC\`\$\$
5142 TMPSED=\${TMPDIR:-/tmp}/headers.sed\$\$
5143 echo installing \$SRC in \$DST
5144 CF_EOF
5145
5146 if test "$WITH_CURSES_H" = yes; then
5147         cat >>headers.sh <<CF_EOF
5148 case \$DST in
5149 (/*/include/*)
5150         END=\`basename \$DST\`
5151         for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`
5152         do
5153                 NAME=\`basename \$i\`
5154                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
5155         done
5156         ;;
5157 (*)
5158         echo "" >> \$TMPSED
5159         ;;
5160 esac
5161 CF_EOF
5162
5163 else
5164         cat >>headers.sh <<CF_EOF
5165 case \$DST in
5166 (/*/include/*)
5167         END=\`basename \$DST\`
5168         for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`
5169         do
5170                 NAME=\`basename \$i\`
5171                 if test "\$NAME" = "curses.h"
5172                 then
5173                         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
5174                         NAME=ncurses.h
5175                 fi
5176                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
5177         done
5178         ;;
5179 (*)
5180         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
5181         ;;
5182 esac
5183 CF_EOF
5184 fi
5185 cat >>headers.sh <<CF_EOF
5186 rm -f \$TMPSRC
5187 sed -f \$TMPSED \$SRC > \$TMPSRC
5188 NAME=\`basename \$SRC\`
5189 CF_EOF
5190 if test "$WITH_CURSES_H" != yes; then
5191         cat >>headers.sh <<CF_EOF
5192 test "\$NAME" = "curses.h" && NAME=ncurses.h
5193 CF_EOF
5194 fi
5195 cat >>headers.sh <<CF_EOF
5196 # Just in case someone gzip'd manpages, remove the conflicting copy.
5197 test -f \$DST/\$NAME.gz && rm -f \$DST/\$NAME.gz
5198
5199 eval \$PRG \$TMPSRC \$DST/\$NAME
5200 rm -f \$TMPSRC \$TMPSED
5201 CF_EOF
5202
5203 chmod 0755 headers.sh
5204
5205 for cf_dir in $SRC_SUBDIRS
5206 do
5207         if test ! -d "$srcdir/$cf_dir" ; then
5208                 continue
5209         fi
5210
5211         if test -f "$srcdir/$cf_dir/headers" ; then
5212                 $AWK -f "$srcdir/mk-hdr.awk" \
5213                         subset="$LIB_SUBSETS" \
5214                         compat="$WITH_CURSES_H" \
5215                         "$srcdir/$cf_dir/headers" >>$cf_dir/Makefile
5216         fi
5217
5218         if test -f "$srcdir/$cf_dir/modules" ; then
5219                 if test "$cf_dir" != "c++" ; then
5220                         if test "x$cf_cv_make_PHONY" = xyes ; then
5221                                 cat >> $cf_dir/Makefile <<-CF_EOF
5222
5223                                 .PHONY :        depend
5224 CF_EOF
5225                         fi
5226
5227                         cat >>$cf_dir/Makefile <<"CF_EOF"
5228 depend : ${AUTO_SRC}
5229         makedepend -- ${CPPFLAGS} -- ${C_SRC}
5230
5231 # DO NOT DELETE THIS LINE -- make depend depends on it.
5232 CF_EOF
5233                 fi
5234         fi
5235 done
5236 AC_SUBST(Libs_To_Make)
5237 ])dnl
5238 dnl ---------------------------------------------------------------------------
5239 dnl CF_LIB_SONAME version: 9 updated: 2021/01/04 18:48:01
5240 dnl -------------
5241 dnl Find the and soname for the given shared library.  Set the cache variable
5242 dnl cf_cv_$3_soname to this, unless it is not found.  Then set the cache
5243 dnl variable to "unknown".
5244 dnl
5245 dnl $1 = headers
5246 dnl $2 = code
5247 dnl $3 = library name
5248 AC_DEFUN([CF_LIB_SONAME],
5249 [AC_REQUIRE([AC_PROG_FGREP])dnl
5250
5251 AC_CACHE_CHECK(for soname of $3 library,cf_cv_$3_soname,[
5252
5253 cf_cv_$3_soname=unknown
5254 if test "$cross_compiling" != yes ; then
5255 cat >conftest.$ac_ext <<CF_EOF
5256 $1
5257 int main(void)
5258 {
5259 $2
5260         ${cf_cv_main_return:-return}(0);
5261 }
5262 CF_EOF
5263 cf_save_LIBS="$LIBS"
5264         CF_ADD_LIB($3)
5265         if AC_TRY_EVAL(ac_compile) ; then
5266                 if AC_TRY_EVAL(ac_link) ; then
5267                         cf_cv_$3_soname="`ldd \"conftest$ac_exeext\" 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | ${FGREP-fgrep} lib$3.`"
5268                         test -z "$cf_cv_$3_soname" && cf_cv_$3_soname=unknown
5269                 fi
5270         fi
5271 rm -rf ./conftest*
5272 LIBS="$cf_save_LIBS"
5273 fi
5274 ])
5275 ])
5276 dnl ---------------------------------------------------------------------------
5277 dnl CF_LIB_SUFFIX version: 28 updated: 2021/01/01 16:53:59
5278 dnl -------------
5279 dnl Compute the library file-suffix from the given model name
5280 dnl $1 = model name
5281 dnl $2 = variable to set (the nominal library suffix)
5282 dnl $3 = dependency variable to set (actual filename)
5283 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
5284 AC_DEFUN([CF_LIB_SUFFIX],
5285 [
5286         case X$1 in
5287         (Xlibtool)
5288                 $2='.la'
5289                 $3=[$]$2
5290                 ;;
5291         (Xdebug)
5292                 case "$cf_cv_system_name" in
5293                 (*-msvc*)
5294                         $2='_g.lib'
5295                         ;;
5296                 (*)
5297                         $2='_g.a'
5298                         ;;
5299                 esac
5300                 $3=[$]$2
5301                 ;;
5302         (Xprofile)
5303                 case "$cf_cv_system_name" in
5304                 (*-msvc*)
5305                         $2='_p.lib'
5306                         ;;
5307                 (*)
5308                         $2='_p.a'
5309                         ;;
5310                 esac
5311                 $3=[$]$2
5312                 ;;
5313         (Xshared)
5314                 case "$cf_cv_system_name" in
5315                 (aix[[5-7]]*)
5316                         $2='.so'
5317                         $3=[$]$2
5318                         ;;
5319                 (*-msvc*)
5320                         $2='.dll'
5321                         $3='.dll.lib'
5322                         ;;
5323                 (cygwin*|msys*|mingw*)
5324                         $2='.dll'
5325                         $3='.dll.a'
5326                         ;;
5327                 (darwin*)
5328                         $2='.dylib'
5329                         $3=[$]$2
5330                         ;;
5331                 (hpux*)
5332                         case "$target" in
5333                         (ia64*)
5334                                 $2='.so'
5335                                 $3=[$]$2
5336                                 ;;
5337                         (*)
5338                                 $2='.sl'
5339                                 $3=[$]$2
5340                                 ;;
5341                         esac
5342                         ;;
5343                 (*)
5344                         $2='.so'
5345                         $3=[$]$2
5346                         ;;
5347                 esac
5348                 ;;
5349         (*)
5350                 case "$target" in
5351                 (*-msvc*)
5352                         $2='.lib'
5353                         ;;
5354                 (*)
5355                         $2='.a'
5356                         ;;
5357                 esac
5358                 $3=[$]$2
5359                 ;;
5360         esac
5361         if test -n "${LIB_SUFFIX}${EXTRA_SUFFIX}"
5362         then
5363                 $2="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$2}"
5364                 $3="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$3}"
5365         fi
5366 ])dnl
5367 dnl ---------------------------------------------------------------------------
5368 dnl CF_LIB_TYPE version: 5 updated: 2015/04/17 21:13:04
5369 dnl -----------
5370 dnl Compute the string to append to -library from the given model name
5371 dnl $1 = model name
5372 dnl $2 = variable to set
5373 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
5374 AC_DEFUN([CF_LIB_TYPE],
5375 [
5376         case $1 in
5377         (libtool) $2=''   ;;
5378         (normal)  $2=''   ;;
5379         (debug)   $2='_g' ;;
5380         (profile) $2='_p' ;;
5381         (shared)  $2=''   ;;
5382         esac
5383         test -n "$LIB_SUFFIX" && $2="${LIB_SUFFIX}[$]{$2}"
5384 ])dnl
5385 dnl ---------------------------------------------------------------------------
5386 dnl CF_LINK_DATAONLY version: 15 updated: 2023/12/03 10:03:10
5387 dnl ----------------
5388 dnl Some systems have a non-ANSI linker that doesn't pull in modules that have
5389 dnl only data (i.e., no functions), for example NeXT.  On those systems we'll
5390 dnl have to provide wrappers for global tables to ensure they're linked
5391 dnl properly.
5392 AC_DEFUN([CF_LINK_DATAONLY],
5393 [
5394 AC_MSG_CHECKING([if data-only library module links])
5395 AC_CACHE_VAL(cf_cv_link_dataonly,[
5396         rm -f conftest.a
5397         cat >conftest.$ac_ext <<EOF
5398 #line __oline__ "configure"
5399 int     testdata[[3]] = { 123, 456, 789 };
5400 EOF
5401         if AC_TRY_EVAL(ac_compile) ; then
5402                 mv conftest.o data.o && \
5403                 ( $AR $ARFLAGS conftest.a data.o ) 2>&AC_FD_CC 1>/dev/null
5404         fi
5405         rm -f conftest.$ac_ext data.o
5406         cat >conftest.$ac_ext <<EOF
5407 #line __oline__ "configure"
5408 extern int testfunc(void);
5409 #if defined(NeXT)
5410 int     testfunc(void)
5411 {
5412         ${cf_cv_main_return:-return}(1);        /* I'm told this linker is broken */
5413 }
5414 #else
5415 extern int testdata[[3]];
5416 int     testfunc(void)
5417 {
5418         return testdata[[0]] == 123
5419            &&  testdata[[1]] == 456
5420            &&  testdata[[2]] == 789;
5421 }
5422 #endif
5423 EOF
5424         if AC_TRY_EVAL(ac_compile); then
5425                 mv conftest.o func.o && \
5426                 ( $AR $ARFLAGS conftest.a func.o ) 2>&AC_FD_CC 1>/dev/null
5427         fi
5428         rm -f conftest.$ac_ext func.o
5429         ( eval $RANLIB conftest.a ) 2>&AC_FD_CC >/dev/null
5430         cf_saveLIBS="$LIBS"
5431         LIBS="conftest.a $LIBS"
5432         AC_TRY_RUN([
5433         extern int testfunc(void);
5434         int main(void)
5435         {
5436                 ${cf_cv_main_return:-return} (!testfunc());
5437         }
5438         ],
5439         [cf_cv_link_dataonly=yes],
5440         [cf_cv_link_dataonly=no],
5441         [cf_cv_link_dataonly=unknown])
5442         LIBS="$cf_saveLIBS"
5443         ])
5444 AC_MSG_RESULT($cf_cv_link_dataonly)
5445
5446 if test "$cf_cv_link_dataonly" = no ; then
5447         AC_DEFINE(BROKEN_LINKER,1,[if data-only library module does not link])
5448         BROKEN_LINKER=1
5449 fi
5450 AC_SUBST(BROKEN_LINKER)
5451
5452 ])dnl
5453 dnl ---------------------------------------------------------------------------
5454 dnl CF_LINK_FUNCS version: 13 updated: 2023/12/03 09:24:04
5455 dnl -------------
5456 dnl Most Unix systems have both link and symlink, a few don't have symlink.
5457 dnl A few non-Unix systems implement symlink, but not link.
5458 dnl A few non-systems implement neither (or have nonfunctional versions).
5459 dnl
5460 dnl This allows for a 2-second difference in modification times to allow for
5461 dnl some marginal NFS implementations.
5462 AC_DEFUN([CF_LINK_FUNCS],
5463 [
5464 AC_CHECK_HEADERS( \
5465 unistd.h \
5466 )
5467 AC_CHECK_FUNCS( \
5468         remove \
5469         unlink )
5470
5471 if test "$cross_compiling" = yes ; then
5472         AC_CHECK_FUNCS( \
5473                 link \
5474                 symlink )
5475 else
5476         AC_CACHE_CHECK(if link/symlink functions work,cf_cv_link_funcs,[
5477                 cf_cv_link_funcs=
5478                 for cf_func in link symlink ; do
5479                         AC_TRY_RUN([
5480 $ac_includes_default
5481
5482 int main(void)
5483 {
5484         int fail = 0;
5485         char src[] = "conftest.tmp";
5486         char dst[] = "conftest.chk";
5487         struct stat src_sb, dst_sb;
5488         FILE *fp = fopen(src, "w");
5489         if (fp == 0) { fail = 3; } else {
5490                 fclose(fp); stat(src, &src_sb);
5491                 if ($cf_func(src, dst) < 0) {
5492                         fail = 1;
5493                 } else if (stat(dst, &dst_sb) < 0) {
5494                         fail = 2;
5495                 } else {
5496                         long diff = (dst_sb.st_mtime - src_sb.st_mtime);
5497                         if (diff < 0) diff = -diff;
5498                         if (diff > 2) fail = 3;
5499                 }
5500         }
5501 #ifdef HAVE_UNLINK
5502         unlink(dst); unlink(src);
5503 #else
5504         remove(dst); remove(src);
5505 #endif
5506         ${cf_cv_main_return:-return} (fail);
5507 }
5508                         ],[
5509                         cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
5510                         eval 'ac_cv_func_'$cf_func'=yes'],[
5511                         eval 'ac_cv_func_'$cf_func'=no'],[
5512                         eval 'ac_cv_func_'$cf_func'=error'])
5513                 done
5514                 test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
5515         ])
5516         test "$ac_cv_func_link"    = yes && AC_DEFINE(HAVE_LINK,1,[Define to 1 if we have link() function])
5517         test "$ac_cv_func_symlink" = yes && AC_DEFINE(HAVE_SYMLINK,1,[Define to 1 if we have symlink() function])
5518 fi
5519 ])dnl
5520 dnl ---------------------------------------------------------------------------
5521 dnl CF_MAKEFLAGS version: 21 updated: 2021/09/04 06:47:34
5522 dnl ------------
5523 dnl Some 'make' programs support ${MAKEFLAGS}, some ${MFLAGS}, to pass 'make'
5524 dnl options to lower-levels.  It is very useful for "make -n" -- if we have it.
5525 dnl (GNU 'make' does both, something POSIX 'make', which happens to make the
5526 dnl ${MAKEFLAGS} variable incompatible because it adds the assignments :-)
5527 AC_DEFUN([CF_MAKEFLAGS],
5528 [AC_REQUIRE([AC_PROG_FGREP])dnl
5529
5530 AC_CACHE_CHECK(for makeflags variable, cf_cv_makeflags,[
5531         cf_cv_makeflags=''
5532         for cf_option in '-${MAKEFLAGS}' '${MFLAGS}'
5533         do
5534                 cat >cf_makeflags.tmp <<CF_EOF
5535 SHELL = $SHELL
5536 all :
5537         @ echo '.$cf_option'
5538 CF_EOF
5539                 cf_result=`${MAKE:-make} -k -f cf_makeflags.tmp 2>/dev/null | ${FGREP-fgrep} -v "ing directory" | sed -e 's,[[  ]]*$,,'`
5540                 case "$cf_result" in
5541                 (.*k|.*kw)
5542                         cf_result="`${MAKE:-make} -k -f cf_makeflags.tmp CC=cc 2>/dev/null`"
5543                         case "$cf_result" in
5544                         (.*CC=*)        cf_cv_makeflags=
5545                                 ;;
5546                         (*)     cf_cv_makeflags=$cf_option
5547                                 ;;
5548                         esac
5549                         break
5550                         ;;
5551                 (.-)
5552                         ;;
5553                 (*)
5554                         CF_MSG_LOG(given option \"$cf_option\", no match \"$cf_result\")
5555                         ;;
5556                 esac
5557         done
5558         rm -f cf_makeflags.tmp
5559 ])
5560
5561 AC_SUBST(cf_cv_makeflags)
5562 ])dnl
5563 dnl ---------------------------------------------------------------------------
5564 dnl CF_MAKE_PHONY version: 3 updated: 2021/01/08 16:08:21
5565 dnl -------------
5566 dnl Check if the make-program handles a ".PHONY" target, e.g,. a target which
5567 dnl acts as a placeholder.
5568 dnl
5569 dnl The ".PHONY" feature was proposed in 2011 here
5570 dnl     https://www.austingroupbugs.net/view.php?id=523
5571 dnl and is scheduled for release in P1003.1 Issue 8 (late 2022).
5572 dnl
5573 dnl This is not supported by SVr4 make (or SunOS 4, 4.3SD, etc), but works with
5574 dnl a few others (i.e., GNU make and the non-POSIX "BSD" make):
5575 dnl
5576 dnl + This is a GNU make feature (since April 1988, but in turn from binutils,
5577 dnl   date unspecified).
5578 dnl
5579 dnl + It was adopted in NetBSD make in June 1995.
5580 dnl
5581 dnl + The other BSD make programs are derived from the NetBSD make (and for
5582 dnl   that reason are not actually different "implementations").
5583 dnl
5584 dnl + Some features of NetBSD make were actually adapted from pmake, which
5585 dnl   began as a modified GNU make starting in 1993.
5586 dnl
5587 dnl + Version 3.8 of the dmake program in January 1992 also implemented this
5588 dnl   GNU make extension, but is less well known than the BSD make.
5589 AC_DEFUN([CF_MAKE_PHONY],[
5590 AC_CACHE_CHECK(for \".PHONY\" make-support, cf_cv_make_PHONY,[
5591         rm -rf conftest*
5592         (
5593                 mkdir conftest || exit 1
5594                 cd conftest
5595                 cat >makefile <<'CF_EOF'
5596 .PHONY: always
5597 DATA=0
5598 always: always.out
5599         @echo "** making [$]@ [$](DATA)"
5600 once: once.out
5601         @echo "** making [$]@ [$](DATA)"
5602 always.out:
5603         @echo "** making [$]@ [$](DATA)"
5604         echo [$](DATA) > [$]@
5605 once.out:
5606         @echo "** making [$]@ [$](DATA)"
5607         echo [$](DATA) > [$]@
5608 CF_EOF
5609                 for cf_data in 1 2 3
5610                 do
5611                         ${MAKE:-make} always DATA=$cf_data
5612                         ${MAKE:-make} once   DATA=$cf_data
5613                         ${MAKE:-make} -t always once
5614                         if test -f always ; then
5615                                 echo "no (case 1)" > ../conftest.tmp
5616                         elif test ! -f always.out ; then
5617                                 echo "no (case 2)" > ../conftest.tmp
5618                         elif test ! -f once.out ; then
5619                                 echo "no (case 3)" > ../conftest.tmp
5620                         elif ! cmp -s always.out once.out ; then
5621                                 echo "no (case 4)" > ../conftest.tmp
5622                                 diff always.out once.out
5623                         else
5624                                 cf_check="`cat always.out`"
5625                                 if test "x$cf_check" != "x$cf_data" ; then
5626                                         echo "no (case 5)" > ../conftest.tmp
5627                                 else
5628                                         echo yes > ../conftest.tmp
5629                                         rm -f ./*.out
5630                                         continue
5631                                 fi
5632                         fi
5633                         break
5634                 done
5635         ) >&AC_FD_CC 2>&1
5636         cf_cv_make_PHONY="`cat conftest.tmp`"
5637         rm -rf conftest*
5638 ])
5639 MAKE_NO_PHONY="#"
5640 MAKE_PHONY="#"
5641 test "x$cf_cv_make_PHONY" = xyes && MAKE_PHONY=
5642 test "x$cf_cv_make_PHONY" != xyes && MAKE_NO_PHONY=
5643 AC_SUBST(MAKE_NO_PHONY)
5644 AC_SUBST(MAKE_PHONY)
5645 ])dnl
5646 dnl ---------------------------------------------------------------------------
5647 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
5648 dnl ------------
5649 dnl Generate tags/TAGS targets for makefiles.  Do not generate TAGS if we have
5650 dnl a monocase filesystem.
5651 AC_DEFUN([CF_MAKE_TAGS],[
5652 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
5653
5654 AC_CHECK_PROGS(CTAGS, exctags ctags)
5655 AC_CHECK_PROGS(ETAGS, exetags etags)
5656
5657 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
5658
5659 if test "$cf_cv_mixedcase" = yes ; then
5660         AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
5661 else
5662         MAKE_UPPER_TAGS=no
5663 fi
5664
5665 if test "$MAKE_UPPER_TAGS" = yes ; then
5666         MAKE_UPPER_TAGS=
5667 else
5668         MAKE_UPPER_TAGS="#"
5669 fi
5670
5671 if test "$MAKE_LOWER_TAGS" = yes ; then
5672         MAKE_LOWER_TAGS=
5673 else
5674         MAKE_LOWER_TAGS="#"
5675 fi
5676
5677 AC_SUBST(CTAGS)
5678 AC_SUBST(ETAGS)
5679
5680 AC_SUBST(MAKE_UPPER_TAGS)
5681 AC_SUBST(MAKE_LOWER_TAGS)
5682 ])dnl
5683 dnl ---------------------------------------------------------------------------
5684 dnl CF_MANPAGE_FORMAT version: 18 updated: 2023/05/19 18:35:02
5685 dnl -----------------
5686 dnl Option to allow user to override automatic configuration of manpage format.
5687 dnl There are several special cases:
5688 dnl
5689 dnl     compress - man checks for, can display compressed files
5690 dnl     bzip2 - man checks for, can display bzip2'd files
5691 dnl     gzip - man checks for, can display gzip'd files
5692 dnl     xz - man checks for, can display xz'd files
5693 dnl
5694 dnl     BSDI - files in the cat-directories are suffixed ".0"
5695 dnl     formatted - installer should format (put files in cat-directory)
5696 dnl     catonly - installer should only format, e.g., for a turnkey system.
5697 dnl
5698 dnl There are other configurations which this macro does not test, e.g., HPUX's
5699 dnl compressed manpages (but uncompressed manpages are fine, and HPUX's naming
5700 dnl convention would not match our use).
5701 AC_DEFUN([CF_MANPAGE_FORMAT],
5702 [
5703 AC_REQUIRE([CF_PATHSEP])
5704 AC_MSG_CHECKING(format of man-pages)
5705
5706 AC_ARG_WITH(manpage-format,
5707         [  --with-manpage-format   specify manpage-format: gzip/compress/bzip2/xz,
5708                           BSDI/normal and optionally formatted/catonly,
5709                           e.g., gzip,formatted],
5710         [MANPAGE_FORMAT=$withval],
5711         [MANPAGE_FORMAT=unknown])
5712
5713 test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=unknown
5714 MANPAGE_FORMAT=`echo "$MANPAGE_FORMAT" | sed -e 's/,/ /g'`
5715
5716 cf_unknown=
5717
5718 case "$MANPAGE_FORMAT" in
5719 (unknown)
5720         if test -z "$MANPATH" ; then
5721                 MANPATH="/usr/man:/usr/share/man"
5722         fi
5723
5724         # look for the 'date' man-page (it is most likely to be installed!)
5725         MANPAGE_FORMAT=
5726         cf_preform="no"
5727         cf_catonly="yes"
5728         cf_example="date"
5729
5730         IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
5731         for cf_dir in $MANPATH; do
5732                 test -z "$cf_dir" && cf_dir=/usr/man
5733                 for cf_name in $cf_dir/man*/$cf_example.[[01]]* $cf_dir/cat*/$cf_example.[[01]]* $cf_dir/man*/$cf_example $cf_dir/cat*/$cf_example
5734                 do
5735                         cf_test=`echo "$cf_name" | sed -e 's/*//'`
5736                         if test "x$cf_test" = "x$cf_name" ; then
5737
5738                                 case "$cf_name" in
5739                                 (*.bz2) MANPAGE_FORMAT="$MANPAGE_FORMAT bzip2";;
5740                                 (*.xz)  MANPAGE_FORMAT="$MANPAGE_FORMAT xz";;
5741                                 (*.gz)  MANPAGE_FORMAT="$MANPAGE_FORMAT gzip";;
5742                                 (*.Z)   MANPAGE_FORMAT="$MANPAGE_FORMAT compress";;
5743                                 (*.0)   MANPAGE_FORMAT="$MANPAGE_FORMAT BSDI";;
5744                                 (*)     MANPAGE_FORMAT="$MANPAGE_FORMAT normal";;
5745                                 esac
5746
5747                                 case "$cf_name" in
5748                                 ($cf_dir/man*)
5749                                         cf_catonly=no
5750                                         ;;
5751                                 ($cf_dir/cat*)
5752                                         cf_preform=yes
5753                                         ;;
5754                                 esac
5755                                 break
5756                         fi
5757
5758                         # if we found a match in either man* or cat*, stop looking
5759                         if test -n "$MANPAGE_FORMAT" ; then
5760                                 cf_found=no
5761                                 test "$cf_preform" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT formatted"
5762                                 test "$cf_catonly" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT catonly"
5763                                 case "$cf_name" in
5764                                 ($cf_dir/cat*)
5765                                         cf_found=yes
5766                                         ;;
5767                                 esac
5768                                 test "$cf_found" = yes && break
5769                         fi
5770                 done
5771                 # only check the first directory in $MANPATH where we find manpages
5772                 if test -n "$MANPAGE_FORMAT" ; then
5773                         break
5774                 fi
5775         done
5776         # if we did not find the example, just assume it is normal
5777         test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=normal
5778         IFS="$ac_save_ifs"
5779         ;;
5780 (*)
5781         for cf_option in $MANPAGE_FORMAT; do
5782         case "$cf_option" in
5783         (xz|bzip2|gzip|compress|BSDI|normal|formatted|catonly)
5784                 ;;
5785         (*)
5786                 cf_unknown="$cf_unknown $cf_option"
5787                 ;;
5788         esac
5789         done
5790         ;;
5791 esac
5792
5793 AC_MSG_RESULT($MANPAGE_FORMAT)
5794 if test -n "$cf_unknown" ; then
5795         AC_MSG_WARN(Unexpected manpage-format $cf_unknown)
5796 fi
5797
5798 cf_manpage_format=no
5799 cf_manpage_inboth=no
5800 cf_manpage_so_strip=
5801 cf_manpage_compress=
5802
5803 for cf_item in $MANPAGE_FORMAT
5804 do
5805 case "$cf_item" in
5806 (catonly)
5807         cf_manpage_format=yes
5808         cf_manpage_inboth=no
5809         ;;
5810 (formatted)
5811         cf_manpage_format=yes
5812         cf_manpage_inboth=yes
5813         ;;
5814 (compress)
5815         cf_manpage_so_strip="Z"
5816         cf_manpage_compress=compress
5817         ;;
5818 (gzip)
5819         cf_manpage_so_strip="gz"
5820         cf_manpage_compress=gzip
5821         ;;
5822 (bzip2)
5823         cf_manpage_so_strip="bz2"
5824         cf_manpage_compress=bzip2
5825         ;;
5826 (xz)
5827         cf_manpage_so_strip="xz"
5828         cf_manpage_compress=xz
5829         ;;
5830 esac
5831 done
5832
5833 AC_SUBST(cf_manpage_format)
5834 AC_SUBST(cf_manpage_inboth)
5835 AC_SUBST(cf_manpage_so_strip)
5836 AC_SUBST(cf_manpage_compress)
5837
5838 ])dnl
5839 dnl ---------------------------------------------------------------------------
5840 dnl CF_MANPAGE_RENAMES version: 17 updated: 2022/10/23 07:46:29
5841 dnl ------------------
5842 dnl The Debian people have their own naming convention for manpages.  This
5843 dnl option lets us override the name of the file containing renaming, or
5844 dnl disable it altogether.
5845 AC_DEFUN([CF_MANPAGE_RENAMES],
5846 [
5847 AC_MSG_CHECKING(for manpage renaming)
5848
5849 AC_ARG_WITH(manpage-renames,
5850         [  --with-manpage-renames  specify manpage-renaming],
5851         [MANPAGE_RENAMES=$withval],
5852         [MANPAGE_RENAMES=yes])
5853
5854 case ".$MANPAGE_RENAMES" in
5855 (.no)
5856         ;;
5857 (.|.yes)
5858         # Debian 'man' program?
5859         if test -f /etc/debian_version ; then
5860                 MANPAGE_RENAMES=man/man_db.renames
5861         else
5862                 MANPAGE_RENAMES=no
5863         fi
5864         ;;
5865 esac
5866
5867 if test "$MANPAGE_RENAMES" = man/man_db.renames ; then
5868         MANPAGE_RENAMES=`pwd`/$MANPAGE_RENAMES
5869 elif test "$MANPAGE_RENAMES" = no ; then
5870         :
5871 elif test ! -f "$MANPAGE_RENAMES" ; then
5872         AC_MSG_ERROR(not a filename: $MANPAGE_RENAMES)
5873 fi
5874
5875 AC_MSG_RESULT($MANPAGE_RENAMES)
5876 AC_SUBST(MANPAGE_RENAMES)
5877 ])dnl
5878 dnl ---------------------------------------------------------------------------
5879 dnl CF_MANPAGE_SYMLINKS version: 7 updated: 2023/01/21 16:37:17
5880 dnl -------------------
5881 dnl Some people expect each tool to make all aliases for manpages in the
5882 dnl man-directory.  This accommodates the older, less-capable implementations
5883 dnl of 'man', and is optional.
5884 AC_DEFUN([CF_MANPAGE_SYMLINKS],
5885 [
5886 AC_MSG_CHECKING(if manpage aliases will be installed)
5887
5888 AC_ARG_WITH(manpage-aliases,
5889         [  --with-manpage-aliases  specify manpage-aliases using .so],
5890         [MANPAGE_ALIASES=$withval],
5891         [MANPAGE_ALIASES=yes])
5892
5893 AC_MSG_RESULT($MANPAGE_ALIASES)
5894
5895 case "x$LN_S" in
5896 (xln*)
5897         cf_use_symlinks=yes
5898         ;;
5899 (*)
5900         cf_use_symlinks=no
5901         ;;
5902 esac
5903
5904 MANPAGE_SYMLINKS=no
5905 if test "$MANPAGE_ALIASES" = yes ; then
5906 AC_MSG_CHECKING(if manpage symlinks should be used)
5907
5908 AC_ARG_WITH(manpage-symlinks,
5909         [  --with-manpage-symlinks specify manpage-aliases using symlinks],
5910         [MANPAGE_SYMLINKS=$withval],
5911         [MANPAGE_SYMLINKS=$cf_use_symlinks])
5912
5913 if test "$cf_use_symlinks" = no; then
5914 if test "$MANPAGE_SYMLINKS" = yes ; then
5915         AC_MSG_WARN(cannot make symlinks, will use .so files)
5916         MANPAGE_SYMLINKS=no
5917 fi
5918 fi
5919
5920 AC_MSG_RESULT($MANPAGE_SYMLINKS)
5921 fi
5922
5923 ])dnl
5924 dnl ---------------------------------------------------------------------------
5925 dnl CF_MANPAGE_TBL version: 3 updated: 2002/01/19 22:51:32
5926 dnl --------------
5927 dnl This option causes manpages to be run through tbl(1) to generate tables
5928 dnl correctly.
5929 AC_DEFUN([CF_MANPAGE_TBL],
5930 [
5931 AC_MSG_CHECKING(for manpage tbl)
5932
5933 AC_ARG_WITH(manpage-tbl,
5934         [  --with-manpage-tbl      specify manpage processing with tbl],
5935         [MANPAGE_TBL=$withval],
5936         [MANPAGE_TBL=no])
5937
5938 AC_MSG_RESULT($MANPAGE_TBL)
5939 ])dnl
5940 dnl ---------------------------------------------------------------------------
5941 dnl CF_MB_LEN_MAX version: 1 updated: 2024/03/02 15:45:10
5942 dnl -------------
5943 dnl Check if <limits.h> defines a usable MB_LEN_MAX.  That may be because it is
5944 dnl not defined, or it may be a bogus value.
5945 AC_DEFUN([CF_MB_LEN_MAX],[
5946 AC_CACHE_CHECK(if MB_LEN_MAX is usable,cf_cv_mb_len_max,[
5947 AC_TRY_COMPILE([
5948 $ac_includes_default
5949 #include <limits.h>],
5950 [
5951 #if defined(MB_LEN_MAX) && MB_LEN_MAX >= 6
5952         ${cf_cv_main_return:-return}(0);
5953 #else
5954 #error MB_LEN_MAX is not usable
5955 #endif
5956 ],      [cf_cv_mb_len_max=yes],
5957         [cf_cv_mb_len_max=no])])
5958 if test "$cf_cv_mb_len_max" = yes
5959 then
5960         AC_DEFINE(HAVE_CONSISTENT_MB_LEN_MAX,1,[Define to 1 if MB_LEN_MAX is usable])
5961 else
5962         AC_MSG_WARN(MB_LEN_MAX is missing/inconsistent in system headers)
5963 fi
5964 ])dnl
5965 dnl ---------------------------------------------------------------------------
5966 dnl CF_MAN_PAGES version: 58 updated: 2023/07/28 20:13:29
5967 dnl ------------
5968 dnl Try to determine if the man-pages on the system are compressed, and if
5969 dnl so, what format is used.  Use this information to construct a script that
5970 dnl will install man-pages.
5971 AC_DEFUN([CF_MAN_PAGES],
5972 [
5973 CF_HELP_MESSAGE(Options to Specify How Manpages are Installed:)
5974 CF_MANPAGE_FORMAT
5975 CF_MANPAGE_RENAMES
5976 CF_MANPAGE_SYMLINKS
5977 CF_MANPAGE_TBL
5978
5979 if test "$prefix" = "NONE" ; then
5980         cf_prefix="$ac_default_prefix"
5981 else
5982         cf_prefix="$prefix"
5983 fi
5984
5985 test ! -d man && mkdir man
5986
5987 cf_edit_man=./edit_man.sh
5988 cf_man_alias=`pwd`/man_alias.sed
5989
5990 cat >$cf_edit_man <<CF_EOF
5991 #! $SHELL
5992 # this script is generated by the configure-script CF_MAN_PAGES macro.
5993
5994 prefix="$cf_prefix"
5995 datarootdir="$datarootdir"
5996 datadir="$datadir"
5997
5998 NCURSES_MAJOR="$NCURSES_MAJOR"
5999 NCURSES_MINOR="$NCURSES_MINOR"
6000 NCURSES_PATCH="$NCURSES_PATCH"
6001
6002 NCURSES_OSPEED="$NCURSES_OSPEED"
6003 TERMINFO="$TERMINFO"
6004 TERMINFO_DIRS="$TERMINFO_DIRS"
6005
6006 INSTALL="$INSTALL"
6007 INSTALL_DATA="$INSTALL_DATA"
6008
6009 transform="$program_transform_name"
6010
6011 TMP=\${TMPDIR:=/tmp}/man\$\$
6012 trap "rm -f \$TMP; exit 1" 1 2 3 15
6013 trap "rm -f \$TMP" 0
6014
6015 form=\[$]1
6016 shift || exit 1
6017
6018 verb=\[$]1
6019 shift || exit 1
6020
6021 mandir=\[$]1
6022 shift || exit 1
6023
6024 srcdir=\[$]1
6025 top_srcdir=\[$]srcdir/..
6026 shift || exit 1
6027
6028 if test "\$form" = normal ; then
6029         if test "$cf_manpage_format" = yes ; then
6030         if test "$cf_manpage_inboth" = no ; then
6031                 $SHELL "\[$]0" format "\$verb" "\$mandir" "\$srcdir" "\[$]@"
6032                 exit $?
6033         fi
6034         fi
6035         cf_subdir=\$mandir/man
6036         cf_tables=$MANPAGE_TBL
6037 else
6038         cf_subdir=\$mandir/cat
6039         cf_tables=yes
6040 fi
6041
6042 # process the list of source-files
6043 for i in "\[$]@" ; do
6044 case \$i in
6045 (*.orig|*.rej) ;;
6046 (*.[[0-9]]*)
6047         section=\`expr "\$i" : '.*\\.\\([[0-9]]\\)[[xm]]*'\`;
6048         if test "\$verb" = installing ; then
6049         if test ! -d "\$cf_subdir\${section}" ; then
6050                 mkdir -p "\$cf_subdir\$section"
6051         fi
6052         fi
6053
6054         # replace variables in man page
6055         if test ! -f "$cf_man_alias" ; then
6056 cat >>$cf_man_alias <<-CF_EOF2
6057                 s,@DATADIR@,\$datadir,g
6058                 s,@TERMINFO@,\${TERMINFO:="no default value"},g
6059                 s,@TERMINFO_DIRS@,\${TERMINFO_DIRS:="no default value"},g
6060                 s,@NCURSES_MAJOR@,\${NCURSES_MAJOR:="no default value"},g
6061                 s,@NCURSES_MINOR@,\${NCURSES_MINOR:="no default value"},g
6062                 s,@NCURSES_PATCH@,\${NCURSES_PATCH:="no default value"},g
6063                 s,@NCURSES_OSPEED@,\${NCURSES_OSPEED:="no default value"},g
6064 CF_EOF
6065         ifelse($1,,,[
6066         for cf_name in $1
6067         do
6068                 cf_NAME=`echo "$cf_name" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
6069                 cf_name=`echo "$cf_name" | sed "$program_transform_name"`
6070 cat >>$cf_edit_man <<-CF_EOF
6071                 s,@$cf_NAME@,$cf_name,g
6072 CF_EOF
6073         done
6074         ])
6075 cat >>$cf_edit_man <<CF_EOF
6076 CF_EOF2
6077                 echo "...made $cf_man_alias"
6078         fi
6079
6080         aliases=
6081         cf_source=\`basename "\$i"\`
6082         cf_full_alias=\$cf_source
6083         test ! -f "\$cf_full_alias" && cf_full_alias="\$srcdir/\$cf_full_alias"
6084         if test ! -f "\$cf_full_alias" ; then
6085                 echo ".. skipped \$cf_source"
6086                 continue
6087         fi
6088 CF_EOF
6089
6090 if test "$MANPAGE_ALIASES" != no ; then
6091 cat >>$cf_edit_man <<CF_EOF
6092         nCurses=ignore.3x
6093         cf_part_alias=\`echo \$cf_full_alias| sed -e 's,^.*/,,'\`
6094         test "$with_curses_h" = yes && nCurses=ncurses.3x
6095         aliases=\`sed -f "\$top_srcdir/man/manlinks.sed" "\$cf_full_alias" |sed -f "$cf_man_alias" | sort -u; test "\$cf_part_alias" = "\$nCurses" && echo curses\`
6096 CF_EOF
6097 fi
6098
6099 if test "$MANPAGE_RENAMES" = no ; then
6100 cat >>$cf_edit_man <<CF_EOF
6101         # perform program transformations for section 1 man pages
6102         if test \$section = 1 ; then
6103                 cf_target=\$cf_subdir\${section}/\`echo \$cf_source|sed "\${transform}"\`
6104         else
6105                 cf_target=\$cf_subdir\${section}/\$cf_source
6106         fi
6107 CF_EOF
6108 else
6109 cat >>$cf_edit_man <<CF_EOF
6110         cf_target=\`grep "^\$cf_source" $MANPAGE_RENAMES | $AWK '{print \[$]2}'\`
6111         if test -z "\$cf_target" ; then
6112                 echo "? missing rename for \$cf_source"
6113                 cf_target="\$cf_source"
6114         fi
6115         cf_target="\$cf_subdir\${section}/\${cf_target}"
6116
6117 CF_EOF
6118 fi
6119
6120 cat >>$cf_edit_man <<CF_EOF
6121         sed     -f "$cf_man_alias" \\
6122 CF_EOF
6123
6124 if test "$MANPAGE_RENAMES" != no ; then
6125 cat >>$cf_edit_man <<CF_EOF
6126                 < "\$i" | sed -f `pwd`/edit_man.sed >\$TMP
6127 CF_EOF
6128 else
6129 cat >>$cf_edit_man <<CF_EOF
6130                 < "\$i" >\$TMP
6131 CF_EOF
6132 fi
6133
6134 cat >>$cf_edit_man <<CF_EOF
6135 if test \$cf_tables = yes ; then
6136         tbl \$TMP >\$TMP.out
6137         mv \$TMP.out \$TMP
6138 fi
6139 CF_EOF
6140
6141 if test "$with_overwrite" != yes ; then
6142 cat >>$cf_edit_man <<CF_EOF
6143         sed -e "/\\#[    ]*include/s,<curses.h,<ncurses$LIB_SUFFIX/curses.h," < \$TMP >\$TMP.out
6144         mv \$TMP.out \$TMP
6145 CF_EOF
6146 fi
6147
6148 if test "$with_curses_h" != yes ; then
6149 cat >>$cf_edit_man <<CF_EOF
6150         sed -e "/\\#[    ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out
6151         mv \$TMP.out \$TMP
6152 CF_EOF
6153 fi
6154
6155 cat >>$cf_edit_man <<CF_EOF
6156         if test "\$form" = format ; then
6157                 nroff -man \$TMP >\$TMP.out
6158                 mv \$TMP.out \$TMP
6159         fi
6160 CF_EOF
6161
6162 if test -n "$cf_manpage_compress" ; then
6163 cat >>$cf_edit_man <<CF_EOF
6164         if test "\$verb" = installing ; then
6165         if ( "$cf_manpage_compress" -f \$TMP )
6166         then
6167                 mv \$TMP.$cf_manpage_so_strip \$TMP
6168         fi
6169         fi
6170         cf_target="\$cf_target.$cf_manpage_so_strip"
6171 CF_EOF
6172 fi
6173
6174 case "$MANPAGE_FORMAT" in
6175 (*BSDI*)
6176 cat >>$cf_edit_man <<CF_EOF
6177         if test "\$form" = format ; then
6178                 # BSDI installs only .0 suffixes in the cat directories
6179                 cf_target="\`echo \$cf_target|sed -e 's/\\.[[1-9]]\\+[[a-z]]*/.0/'\`"
6180         fi
6181 CF_EOF
6182   ;;
6183 esac
6184
6185 cat >>$cf_edit_man <<CF_EOF
6186         suffix=\`basename "\$cf_target" | sed -e 's%^[[^.]]*%%'\`
6187         extra_suffix=
6188         if test -n "$EXTRA_SUFFIX" ; then
6189                 case \$cf_target in
6190                 (*${EXTRA_SUFFIX}\$suffix)
6191                         extra_suffix="$EXTRA_SUFFIX"
6192                         ;;
6193                 esac
6194         fi
6195         if test "\$verb" = installing ; then
6196                 echo "\$verb \$cf_target"
6197                 \$INSTALL_DATA \$TMP "\$cf_target"
6198                 test -d "\$cf_subdir\${section}" &&
6199                 test -n "\$aliases" && (
6200                         cd "\$cf_subdir\${section}" && (
6201                                 cf_source=\`echo "\$cf_target" |sed -e 's%^.*/\\([[^/]][[^/]]*/[[^/]][[^/]]*$\\)%\\1%'\`
6202                                 test -n "$cf_manpage_so_strip" && cf_source=\`echo "\$cf_source" |sed -e 's%\\.$cf_manpage_so_strip\$%%'\`
6203                                 cf_target=\`basename "\$cf_target"\`
6204                                 for cf_alias in \$aliases
6205                                 do
6206                                         if test "\$section" = 1 ; then
6207                                                 cf_alias=\`echo "\$cf_alias" |sed "\${transform}"\`
6208                                         fi
6209                                         cf_alias="\${cf_alias}\${extra_suffix}"
6210
6211                                         if test "$MANPAGE_SYMLINKS" = yes ; then
6212                                                 if test -f "\$cf_alias\${suffix}" ; then
6213                                                         if ( cmp -s "\$cf_target" "\$cf_alias\${suffix}" )
6214                                                         then
6215                                                                 continue
6216                                                         fi
6217                                                 fi
6218                                                 echo ".. \$verb alias \$cf_alias\${suffix}"
6219 CF_EOF
6220 case "x$LN_S" in
6221 (*-f)
6222 cat >>$cf_edit_man <<CF_EOF
6223                                                 $LN_S "\$cf_target" "\$cf_alias\${suffix}"
6224 CF_EOF
6225         ;;
6226 (*)
6227 cat >>$cf_edit_man <<CF_EOF
6228                                                 rm -f "\$cf_alias\${suffix}"
6229                                                 $LN_S "\$cf_target" "\$cf_alias\${suffix}"
6230 CF_EOF
6231         ;;
6232 esac
6233 cat >>$cf_edit_man <<CF_EOF
6234                                         elif test "\$cf_target" != "\$cf_alias\${suffix}" ; then
6235                                                 echo ".so \$cf_source" >\$TMP
6236 CF_EOF
6237 if test -n "$cf_manpage_compress" ; then
6238 cat >>$cf_edit_man <<CF_EOF
6239                                                 if test -n "$cf_manpage_so_strip" ; then
6240                                                         "$cf_manpage_compress" -f \$TMP
6241                                                         mv \$TMP.$cf_manpage_so_strip \$TMP
6242                                                 fi
6243 CF_EOF
6244 fi
6245 cat >>$cf_edit_man <<CF_EOF
6246                                                 echo ".. \$verb alias \$cf_alias\${suffix}"
6247                                                 rm -f "\$cf_alias\${suffix}"
6248                                                 \$INSTALL_DATA \$TMP "\$cf_alias\${suffix}"
6249                                         fi
6250                                 done
6251                         )
6252                 )
6253         elif test "\$verb" = removing ; then
6254                 test -f "\$cf_target" && (
6255                         echo "\$verb \$cf_target"
6256                         rm -f "\$cf_target"
6257                 )
6258                 test -d "\$cf_subdir\${section}" &&
6259                 test -n "\$aliases" && (
6260                         cd "\$cf_subdir\${section}" && (
6261                                 for cf_alias in \$aliases
6262                                 do
6263                                         if test "\$section" = 1 ; then
6264                                                 cf_alias=\`echo "\$cf_alias" |sed "\${transform}"\`
6265                                         fi
6266                                         cf_alias="\${cf_alias}\${extra_suffix}"
6267
6268                                         echo ".. \$verb alias \$cf_alias\${suffix}"
6269                                         rm -f "\$cf_alias\${suffix}"
6270                                 done
6271                         )
6272                 )
6273         else
6274 #               echo ".hy 0"
6275                 cat \$TMP
6276         fi
6277         ;;
6278 esac
6279 done
6280
6281 if test "$cf_manpage_inboth" = yes ; then
6282 if test "\$form" != format ; then
6283         $SHELL "\[$]0" format "\$verb" "\$mandir" "\$srcdir" "\[$]@"
6284 fi
6285 fi
6286
6287 exit 0
6288 CF_EOF
6289 chmod 755 "$cf_edit_man"
6290
6291 ])dnl
6292 dnl ---------------------------------------------------------------------------
6293 dnl CF_MAP_LIB_BASENAME version: 2 updated: 2021/01/02 17:09:14
6294 dnl -------------------
6295 dnl Convert a default-libname to the actual one used via CF_WITH_LIB_BASENAME.
6296 dnl
6297 dnl $1 = variable to set
6298 dnl $2 = default-libname
6299 AC_DEFUN([CF_MAP_LIB_BASENAME],[
6300 CF_UPPER(cf_map_lib_basename,$2)
6301 eval $1="\$${cf_map_lib_basename}_NAME"
6302 ])dnl
6303 dnl ---------------------------------------------------------------------------
6304 dnl CF_MATH_LIB version: 11 updated: 2022/07/27 19:01:48
6305 dnl -----------
6306 dnl Checks for libraries.  At least one UNIX system, Apple Macintosh
6307 dnl Rhapsody 5.5, does not have -lm.  We cannot use the simpler
6308 dnl AC_CHECK_LIB(m,sin), because that fails for C++.
6309 AC_DEFUN([CF_MATH_LIB],
6310 [
6311 AC_CACHE_CHECK(if -lm needed for math functions,
6312         cf_cv_need_libm,[
6313         AC_TRY_LINK([
6314                 #include <stdio.h>
6315                 #include <stdlib.h>
6316                 #include <math.h>
6317         ],
6318         [double x = rand(); printf("result = %g\\n", ]ifelse([$2],,sin(x),$2)[)],
6319         [cf_cv_need_libm=no],
6320         [cf_cv_need_libm=yes])])
6321
6322 if test "$cf_cv_need_libm" = yes
6323 then
6324
6325         cf_save_LIBS="$LIBS"
6326         LIBS="$LIBS -lm"
6327         AC_CACHE_CHECK(if -lm is available for math functions,
6328         cf_cv_have_libm,[
6329         AC_TRY_LINK([
6330                 #include <stdio.h>
6331                 #include <stdlib.h>
6332                 #include <math.h>
6333         ],
6334         [double x = rand(); printf("result = %g\\n", ]ifelse([$2],,sin(x),$2)[)],
6335         [cf_cv_have_libm=yes],
6336         [cf_cv_have_libm=no])])
6337         LIBS="$cf_save_LIBS"
6338
6339         if test "$cf_cv_have_libm" = yes
6340         then
6341                 ifelse($1,,[CF_ADD_LIB(m)],[$1=-lm])
6342         fi
6343 else
6344         cf_cv_have_libm=yes
6345 fi
6346
6347 if test "$cf_cv_have_libm" = yes
6348 then
6349         AC_DEFINE(HAVE_MATH_FUNCS,1,[Define to 1 if math functions are available])
6350 fi
6351 ])
6352 dnl ---------------------------------------------------------------------------
6353 dnl CF_MIXEDCASE_FILENAMES version: 9 updated: 2021/01/01 16:53:59
6354 dnl ----------------------
6355 dnl Check if the file-system supports mixed-case filenames.  If we're able to
6356 dnl create a lowercase name and see it as uppercase, it doesn't support that.
6357 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
6358 [
6359 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
6360 if test "$cross_compiling" = yes ; then
6361         case "$target_alias" in
6362         (*-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*|darwin*)
6363                 cf_cv_mixedcase=no
6364                 ;;
6365         (*)
6366                 cf_cv_mixedcase=yes
6367                 ;;
6368         esac
6369 else
6370         rm -f conftest CONFTEST
6371         echo test >conftest
6372         if test -f CONFTEST ; then
6373                 cf_cv_mixedcase=no
6374         else
6375                 cf_cv_mixedcase=yes
6376         fi
6377         rm -f conftest CONFTEST
6378 fi
6379 ])
6380 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES,1,[Define to 1 if filesystem supports mixed-case filenames.])
6381 ])dnl
6382 dnl ---------------------------------------------------------------------------
6383 dnl CF_MKSTEMP version: 13 updated: 2023/12/01 17:22:50
6384 dnl ----------
6385 dnl Check for a working mkstemp.  This creates two files, checks that they are
6386 dnl successfully created and distinct (AmigaOS apparently fails on the last).
6387 AC_DEFUN([CF_MKSTEMP],[
6388 AC_CHECK_HEADERS( \
6389 unistd.h \
6390 )
6391 AC_CACHE_CHECK(for working mkstemp, cf_cv_func_mkstemp,[
6392 rm -rf ./conftest*
6393 AC_TRY_RUN([
6394 $ac_includes_default
6395
6396 int main(void)
6397 {
6398         static char tmpl[] = "conftestXXXXXX";
6399         char name[2][80];
6400         int n;
6401         int result = 0;
6402         int fd;
6403         struct stat sb;
6404
6405         umask(077);
6406         for (n = 0; n < 2; ++n) {
6407                 strcpy(name[n], tmpl);
6408                 if ((fd = mkstemp(name[n])) >= 0) {
6409                         if (!strcmp(name[n], tmpl)
6410                          || stat(name[n], &sb) != 0
6411                          || (sb.st_mode & S_IFMT) != S_IFREG
6412                          || (sb.st_mode & 077) != 0) {
6413                                 result = 1;
6414                         }
6415                         close(fd);
6416                 }
6417         }
6418         if (result == 0
6419          && !strcmp(name[0], name[1]))
6420                 result = 1;
6421         ${cf_cv_main_return:-return}(result);
6422 }
6423 ],[cf_cv_func_mkstemp=yes
6424 ],[cf_cv_func_mkstemp=no
6425 ],[cf_cv_func_mkstemp=maybe])
6426 ])
6427 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
6428         AC_CHECK_FUNC(mkstemp)
6429 fi
6430 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
6431         AC_DEFINE(HAVE_MKSTEMP,1,[Define to 1 if mkstemp() is available and working.])
6432 fi
6433 ])dnl
6434 dnl ---------------------------------------------------------------------------
6435 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
6436 dnl ----------
6437 dnl Write a debug message to config.log, along with the line number in the
6438 dnl configure script.
6439 AC_DEFUN([CF_MSG_LOG],[
6440 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
6441 ])dnl
6442 dnl ---------------------------------------------------------------------------
6443 dnl CF_NCURSES_ABI_6 version: 5 updated: 2023/01/07 16:32:06
6444 dnl ----------------
6445 dnl Set ncurses' ABI to 6 unless overridden by explicit configure option, and
6446 dnl warn about this.
6447 AC_DEFUN([CF_NCURSES_ABI_6],[
6448 if test "${with_abi_version+set}" != set; then
6449         case "$cf_cv_rel_version" in
6450         (5.*)
6451                 cf_cv_rel_version=6.0
6452                 cf_cv_abi_version=6
6453                 cf_cv_abi_default=6
6454                 AC_MSG_WARN(overriding ABI version to $cf_cv_abi_default)
6455                 ;;
6456         esac
6457 fi
6458 ])dnl
6459 dnl ---------------------------------------------------------------------------
6460 dnl CF_NCURSES_WITH_ABI_VERSION version: 3 updated: 2021/01/01 13:31:04
6461 dnl ---------------------------
6462 dnl Allow ncurses's ABI to be overridden.  Generally this happens when a
6463 dnl packager has incremented the ABI past that used in the original package,
6464 dnl and wishes to keep doing this.
6465 dnl
6466 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
6467 dnl symbol.
6468 AC_DEFUN([CF_NCURSES_WITH_ABI_VERSION],[
6469 CF_WITH_ABI_VERSION($1)
6470 if test "x$cf_cv_abi_version" != "x$with_abi_version"
6471 then
6472         case "$cf_cv_rel_version" in
6473         (5.*)
6474                 cf_cv_rel_version=$with_abi_version.0
6475                 ;;
6476         esac
6477 fi
6478 ])dnl
6479 dnl ---------------------------------------------------------------------------
6480 dnl CF_NO_LEAKS_OPTION version: 9 updated: 2021/06/13 19:45:41
6481 dnl ------------------
6482 dnl see CF_WITH_NO_LEAKS
6483 dnl
6484 dnl $1 = option/name
6485 dnl $2 = help-text
6486 dnl $3 = symbol to define if the option is set
6487 dnl $4 = additional actions to take if the option is set
6488 AC_DEFUN([CF_NO_LEAKS_OPTION],[
6489 AC_MSG_CHECKING(if you want to use $1 for testing)
6490 AC_ARG_WITH($1,
6491         [$2],
6492         [case "x$withval" in
6493         (x|xno) ;;
6494         (*)
6495                 : "${with_cflags:=-g}"
6496                 : "${enable_leaks:=no}"
6497                 with_$1=yes
6498                 AC_DEFINE_UNQUOTED($3,1,"Define to 1 if you want to use $1 for testing.")ifelse([$4],,[
6499          $4
6500 ])
6501                 ;;
6502         esac],
6503         [with_$1=])
6504 AC_MSG_RESULT(${with_$1:-no})
6505
6506 case ".$with_cflags" in
6507 (.*-g*)
6508         case .$CFLAGS in
6509         (.*-g*)
6510                 ;;
6511         (*)
6512                 CF_ADD_CFLAGS([-g])
6513                 ;;
6514         esac
6515         ;;
6516 esac
6517 ])dnl
6518 dnl ---------------------------------------------------------------------------
6519 dnl CF_NUMBER_SYNTAX version: 3 updated: 2023/05/06 16:14:29
6520 dnl ----------------
6521 dnl Check if the given variable is a positive integer.  Report an error if not.
6522 dnl $1 is the variable
6523 dnl $2 is the message
6524 AC_DEFUN([CF_NUMBER_SYNTAX],[
6525 if test -n "$1" ; then
6526   case `echo "$1" | sed -e 's/^[[0-9]]*$/0/g'` in
6527   (0)
6528         ;;
6529   (*)
6530         AC_MSG_ERROR($2 is not a number: $1)
6531         ;;
6532   esac
6533 else
6534   AC_MSG_ERROR($2 value is empty)
6535 fi
6536 ])dnl
6537 dnl ---------------------------------------------------------------------------
6538 dnl CF_OBJ_SUBDIR version: 8 updated: 2021/01/01 13:31:04
6539 dnl -------------
6540 dnl Compute the object-directory name from the given model name
6541 AC_DEFUN([CF_OBJ_SUBDIR],
6542 [
6543         case $1 in
6544         (libtool) $2='obj_lo'  ;;
6545         (normal)  $2='objects' ;;
6546         (debug)   $2='obj_g' ;;
6547         (profile) $2='obj_p' ;;
6548         (shared)
6549                 case "$cf_cv_system_name" in
6550                 (cygwin|msys)
6551                         $2='objects' ;;
6552                 (*)
6553                         $2='obj_s' ;;
6554                 esac
6555         esac
6556 ])dnl
6557 dnl ---------------------------------------------------------------------------
6558 dnl CF_OUTPUT_MANPAGE_RENAMES version: 2 updated: 2022/10/22 19:12:31
6559 dnl -------------------------
6560 dnl This runs in the output step to config.status, after man_db.renames has
6561 dnl been generated.
6562 AC_DEFUN([CF_OUTPUT_MANPAGE_RENAMES],
6563 [
6564 AC_REQUIRE([CF_MANPAGE_RENAMES])
6565 if test "$MANPAGE_RENAMES" != no ; then
6566         # Construct a sed-script to perform renaming within man-pages
6567         test -n "$verbose" && echo "creating edit_man.sed"
6568         test ! -d man && mkdir man
6569         FGREP="${FGREP-grep -F}" $SHELL "$srcdir/man/make_sed.sh" "$MANPAGE_RENAMES" >./edit_man.sed
6570 fi
6571 ])dnl
6572 dnl ---------------------------------------------------------------------------
6573 dnl CF_PATHSEP version: 8 updated: 2021/01/01 13:31:04
6574 dnl ----------
6575 dnl Provide a value for the $PATH and similar separator (or amend the value
6576 dnl as provided in autoconf 2.5x).
6577 AC_DEFUN([CF_PATHSEP],
6578 [
6579         AC_MSG_CHECKING(for PATH separator)
6580         case "$cf_cv_system_name" in
6581         (os2*)  PATH_SEPARATOR=';'  ;;
6582         (*)     ${PATH_SEPARATOR:=':'}  ;;
6583         esac
6584 ifelse([$1],,,[$1=$PATH_SEPARATOR])
6585         AC_SUBST(PATH_SEPARATOR)
6586         AC_MSG_RESULT($PATH_SEPARATOR)
6587 ])dnl
6588 dnl ---------------------------------------------------------------------------
6589 dnl CF_PATH_PROG version: 12 updated: 2021/01/02 09:31:20
6590 dnl ------------
6591 dnl Check for a given program, defining corresponding symbol.
6592 dnl     $1 = environment variable, which is suffixed by "_PATH" in the #define.
6593 dnl     $2 = program name to find.
6594 dnl     $3 = optional list of additional program names to test.
6595 dnl $4 = $PATH
6596 dnl
6597 dnl If there is more than one token in the result, #define the remaining tokens
6598 dnl to $1_ARGS.  We need this for 'install' in particular.
6599 dnl
6600 dnl FIXME: we should allow this to be overridden by environment variables
6601 dnl
6602 AC_DEFUN([CF_PATH_PROG],[
6603 AC_REQUIRE([CF_PATHSEP])
6604 test -z "[$]$1" && $1="$2"
6605 AC_PATH_PROGS($1,[$]$1 $2 ifelse($3,,,$3),[$]$1, ifelse($4,,,$4))
6606
6607 cf_path_prog=""
6608 cf_path_args=""
6609 IFS="${IFS:-    }"; cf_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR"
6610 for cf_temp in $ac_cv_path_$1
6611 do
6612         if test -z "$cf_path_prog" ; then
6613                 if test "$with_full_paths" = yes ; then
6614                         CF_PATH_SYNTAX(cf_temp,break)
6615                         cf_path_prog="$cf_temp"
6616                 else
6617                         cf_path_prog="`basename "$cf_temp"`"
6618                 fi
6619         elif test -z "$cf_path_args" ; then
6620                 cf_path_args="$cf_temp"
6621         else
6622                 cf_path_args="$cf_path_args $cf_temp"
6623         fi
6624 done
6625 IFS="$cf_save_ifs"
6626
6627 if test -n "$cf_path_prog" ; then
6628         CF_MSG_LOG(defining path for ${cf_path_prog})
6629         AC_DEFINE_UNQUOTED($1_PATH,"$cf_path_prog",Define to pathname $1)
6630         test -n "$cf_path_args" && AC_DEFINE_UNQUOTED($1_ARGS,"$cf_path_args",Define to provide args for $1)
6631 fi
6632 ])dnl
6633 dnl ---------------------------------------------------------------------------
6634 dnl CF_PATH_SYNTAX version: 18 updated: 2020/12/31 18:40:20
6635 dnl --------------
6636 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
6637 dnl begins with one of the prefix/exec_prefix variables, and then again if the
6638 dnl result begins with 'NONE'.  This is necessary to work around autoconf's
6639 dnl delayed evaluation of those symbols.
6640 AC_DEFUN([CF_PATH_SYNTAX],[
6641 if test "x$prefix" != xNONE; then
6642         cf_path_syntax="$prefix"
6643 else
6644         cf_path_syntax="$ac_default_prefix"
6645 fi
6646
6647 case ".[$]$1" in
6648 (.\[$]\(*\)*|.\'*\'*)
6649         ;;
6650 (..|./*|.\\*)
6651         ;;
6652 (.[[a-zA-Z]]:[[\\/]]*) # OS/2 EMX
6653         ;;
6654 (.\[$]\{*prefix\}*|.\[$]\{*dir\}*)
6655         eval $1="[$]$1"
6656         case ".[$]$1" in
6657         (.NONE/*)
6658                 $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
6659                 ;;
6660         esac
6661         ;;
6662 (.no|.NONE/*)
6663         $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
6664         ;;
6665 (*)
6666         ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
6667         ;;
6668 esac
6669 ])dnl
6670 dnl ---------------------------------------------------------------------------
6671 dnl CF_PKG_CONFIG version: 13 updated: 2023/10/28 11:59:01
6672 dnl -------------
6673 dnl Check for the package-config program, unless disabled by command-line.
6674 dnl
6675 dnl Sets $PKG_CONFIG to the pathname of the pkg-config program.
6676 AC_DEFUN([CF_PKG_CONFIG],
6677 [
6678 AC_MSG_CHECKING(if you want to use pkg-config)
6679 AC_ARG_WITH(pkg-config,
6680         [[  --with-pkg-config[=CMD] enable/disable use of pkg-config and its name CMD]],
6681         [cf_pkg_config=$withval],
6682         [cf_pkg_config=yes])
6683 AC_MSG_RESULT($cf_pkg_config)
6684
6685 case "$cf_pkg_config" in
6686 (no)
6687         PKG_CONFIG=none
6688         ;;
6689 (yes)
6690         CF_ACVERSION_CHECK(2.52,
6691                 [AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)],
6692                 [AC_PATH_PROG(PKG_CONFIG, pkg-config, none)])
6693         ;;
6694 (*)
6695         PKG_CONFIG=$withval
6696         ;;
6697 esac
6698
6699 test -z "$PKG_CONFIG" && PKG_CONFIG=none
6700 if test "$PKG_CONFIG" != none ; then
6701         CF_PATH_SYNTAX(PKG_CONFIG)
6702 elif test "x$cf_pkg_config" != xno ; then
6703         AC_MSG_WARN(pkg-config is not installed)
6704 fi
6705
6706 AC_SUBST(PKG_CONFIG)
6707 ])dnl
6708 dnl ---------------------------------------------------------------------------
6709 dnl CF_POSIX_C_SOURCE version: 12 updated: 2023/02/18 17:41:25
6710 dnl -----------------
6711 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
6712 dnl
6713 dnl     POSIX.1-1990                            _POSIX_SOURCE
6714 dnl     POSIX.1-1990 and                        _POSIX_SOURCE and
6715 dnl             POSIX.2-1992 C-Language                 _POSIX_C_SOURCE=2
6716 dnl             Bindings Option
6717 dnl     POSIX.1b-1993                           _POSIX_C_SOURCE=199309L
6718 dnl     POSIX.1c-1996                           _POSIX_C_SOURCE=199506L
6719 dnl     X/Open 2000                             _POSIX_C_SOURCE=200112L
6720 dnl
6721 dnl Parameters:
6722 dnl     $1 is the nominal value for _POSIX_C_SOURCE
6723 AC_DEFUN([CF_POSIX_C_SOURCE],
6724 [AC_REQUIRE([CF_POSIX_VISIBLE])dnl
6725
6726 if test "$cf_cv_posix_visible" = no; then
6727
6728 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
6729
6730 cf_save_CFLAGS="$CFLAGS"
6731 cf_save_CPPFLAGS="$CPPFLAGS"
6732
6733 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
6734 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
6735
6736 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
6737         CF_MSG_LOG(if the symbol is already defined go no further)
6738         AC_TRY_COMPILE([#include <sys/types.h>],[
6739 #ifndef _POSIX_C_SOURCE
6740 #error _POSIX_C_SOURCE is not defined
6741 #endif],
6742         [cf_cv_posix_c_source=no],
6743         [cf_want_posix_source=no
6744          case .$cf_POSIX_C_SOURCE in
6745          (.[[12]]??*)
6746                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
6747                 ;;
6748          (.2)
6749                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
6750                 cf_want_posix_source=yes
6751                 ;;
6752          (.*)
6753                 cf_want_posix_source=yes
6754                 ;;
6755          esac
6756          if test "$cf_want_posix_source" = yes ; then
6757                 AC_TRY_COMPILE([#include <sys/types.h>],[
6758 #ifdef _POSIX_SOURCE
6759 #error _POSIX_SOURCE is defined
6760 #endif],[],
6761                 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
6762          fi
6763          CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
6764          CFLAGS="$cf_trim_CFLAGS"
6765          CPPFLAGS="$cf_trim_CPPFLAGS"
6766          CF_APPEND_TEXT(CPPFLAGS,$cf_cv_posix_c_source)
6767          CF_MSG_LOG(if the second compile does not leave our definition intact error)
6768          AC_TRY_COMPILE([#include <sys/types.h>],[
6769 #ifndef _POSIX_C_SOURCE
6770 #error _POSIX_C_SOURCE is not defined
6771 #endif],,
6772          [cf_cv_posix_c_source=no])
6773          CFLAGS="$cf_save_CFLAGS"
6774          CPPFLAGS="$cf_save_CPPFLAGS"
6775         ])
6776 ])
6777
6778 if test "$cf_cv_posix_c_source" != no ; then
6779         CFLAGS="$cf_trim_CFLAGS"
6780         CPPFLAGS="$cf_trim_CPPFLAGS"
6781         CF_ADD_CFLAGS($cf_cv_posix_c_source)
6782 fi
6783
6784 fi # cf_cv_posix_visible
6785
6786 ])dnl
6787 dnl ---------------------------------------------------------------------------
6788 dnl CF_POSIX_VISIBLE version: 1 updated: 2018/12/31 20:46:17
6789 dnl ----------------
6790 dnl POSIX documents test-macros which an application may set before any system
6791 dnl headers are included to make features available.
6792 dnl
6793 dnl Some BSD platforms (originally FreeBSD, but copied by a few others)
6794 dnl diverged from POSIX in 2002 by setting symbols which make all of the most
6795 dnl recent features visible in the system header files unless the application
6796 dnl overrides the corresponding test-macros.  Doing that introduces portability
6797 dnl problems.
6798 dnl
6799 dnl This macro makes a special check for the symbols used for this, to avoid a
6800 dnl conflicting definition.
6801 AC_DEFUN([CF_POSIX_VISIBLE],
6802 [
6803 AC_CACHE_CHECK(if the POSIX test-macros are already defined,cf_cv_posix_visible,[
6804 AC_TRY_COMPILE([#include <stdio.h>],[
6805 #if defined(__POSIX_VISIBLE) && ((__POSIX_VISIBLE - 0L) > 0) \
6806         && defined(__XSI_VISIBLE) && ((__XSI_VISIBLE - 0L) > 0) \
6807         && defined(__BSD_VISIBLE) && ((__BSD_VISIBLE - 0L) > 0) \
6808         && defined(__ISO_C_VISIBLE) && ((__ISO_C_VISIBLE - 0L) > 0)
6809 #error conflicting symbols found
6810 #endif
6811 ],[cf_cv_posix_visible=no],[cf_cv_posix_visible=yes])
6812 ])
6813 ])dnl
6814 dnl ---------------------------------------------------------------------------
6815 dnl CF_PREDEFINE version: 3 updated: 2023/02/18 17:41:25
6816 dnl ------------
6817 dnl Add definitions to CPPFLAGS to ensure they're predefined for all compiles.
6818 dnl
6819 dnl $1 = symbol to test
6820 dnl $2 = value (if any) to use for a predefinition
6821 AC_DEFUN([CF_PREDEFINE],
6822 [
6823 AC_MSG_CHECKING(if we must define $1)
6824 AC_TRY_COMPILE([#include <sys/types.h>
6825 ],[
6826 #ifndef $1
6827 #error $1 is not defined
6828 #endif],[cf_result=no],[cf_result=yes])
6829 AC_MSG_RESULT($cf_result)
6830
6831 if test "$cf_result" = yes ; then
6832         CPPFLAGS="$CPPFLAGS ifelse([$2],,-D$1,[-D$1=$2])"
6833 elif test "x$2" != "x" ; then
6834         AC_MSG_CHECKING(checking for compatible value versus $2)
6835         AC_TRY_COMPILE([#include <sys/types.h>
6836 ],[
6837 #if $1-$2 < 0
6838 #error $1-$2 is negative
6839 #endif],[cf_result=yes],[cf_result=no])
6840         AC_MSG_RESULT($cf_result)
6841         if test "$cf_result" = no ; then
6842                 # perhaps we can override it - try...
6843                 CPPFLAGS="$CPPFLAGS -D$1=$2"
6844         fi
6845 fi
6846 ])dnl
6847 dnl ---------------------------------------------------------------------------
6848 dnl CF_PRG_RULES version: 2 updated: 2021/01/01 13:31:04
6849 dnl ------------
6850 dnl Append definitions and rules for the given programs to the subdirectory
6851 dnl Makefiles, and the recursion rule for the top-level Makefile.
6852 dnl
6853 dnl parameters
6854 dnl     $1 = script to run
6855 dnl     $2 = list of subdirectories
6856 dnl
6857 dnl variables
6858 dnl     $AWK
6859 AC_DEFUN([CF_PRG_RULES],
6860 [
6861 for cf_dir in $2
6862 do
6863         if test ! -d "$srcdir/$cf_dir" ; then
6864                 continue
6865         elif test -f "$srcdir/$cf_dir/programs" ; then
6866                 $AWK -f $1 "$srcdir/$cf_dir/programs" >>$cf_dir/Makefile
6867         fi
6868 done
6869
6870 ])dnl
6871 dnl ---------------------------------------------------------------------------
6872 dnl CF_PROG_AR version: 1 updated: 2009/01/01 20:15:22
6873 dnl ----------
6874 dnl Check for archiver "ar".
6875 AC_DEFUN([CF_PROG_AR],[
6876 AC_CHECK_TOOL(AR, ar, ar)
6877 ])
6878 dnl ---------------------------------------------------------------------------
6879 dnl CF_PROG_AWK version: 1 updated: 2006/09/16 11:40:59
6880 dnl -----------
6881 dnl Check for awk, ensure that the check found something.
6882 AC_DEFUN([CF_PROG_AWK],
6883 [
6884 AC_PROG_AWK
6885 test -z "$AWK" && AC_MSG_ERROR(No awk program found)
6886 ])dnl
6887 dnl ---------------------------------------------------------------------------
6888 dnl CF_PROG_CC version: 5 updated: 2019/12/31 08:53:54
6889 dnl ----------
6890 dnl standard check for CC, plus followup sanity checks
6891 dnl $1 = optional parameter to pass to AC_PROG_CC to specify compiler name
6892 AC_DEFUN([CF_PROG_CC],[
6893 CF_ACVERSION_CHECK(2.53,
6894         [AC_MSG_WARN(this will incorrectly handle gnatgcc choice)
6895          AC_REQUIRE([AC_PROG_CC])],
6896         [])
6897 ifelse($1,,[AC_PROG_CC],[AC_PROG_CC($1)])
6898 CF_GCC_VERSION
6899 CF_ACVERSION_CHECK(2.52,
6900         [AC_PROG_CC_STDC],
6901         [CF_ANSI_CC_REQD])
6902 CF_CC_ENV_FLAGS
6903 ])dnl
6904 dnl ---------------------------------------------------------------------------
6905 dnl CF_PROG_CC_C_O version: 6 updated: 2021/01/01 13:31:04
6906 dnl --------------
6907 dnl Analogous to AC_PROG_CC_C_O, but more useful: tests only $CC, ensures that
6908 dnl the output file can be renamed, and allows for a shell variable that can
6909 dnl be used later.  The parameter is either CC or CXX.  The result is the
6910 dnl cache variable:
6911 dnl     $cf_cv_prog_CC_c_o
6912 dnl     $cf_cv_prog_CXX_c_o
6913 dnl
6914 dnl $1 = compiler
6915 dnl $2 = compiler options, if any
6916 AC_DEFUN([CF_PROG_CC_C_O],
6917 [AC_REQUIRE([AC_PROG_CC])dnl
6918 AC_MSG_CHECKING([whether [$]$1 understands -c and -o together])
6919 AC_CACHE_VAL(cf_cv_prog_$1_c_o,
6920 [
6921 cat > conftest.$ac_ext <<CF_EOF
6922 int main(void)
6923 {
6924         ${cf_cv_main_return:-return}(0);
6925 }
6926 CF_EOF
6927 # We do the test twice because some compilers refuse to overwrite an
6928 # existing .o file with -o, though they will create one.
6929 ac_try='[$]$1 $2 -c conftest.$ac_ext -o conftest2.$ac_objext >&AC_FD_CC'
6930 if AC_TRY_EVAL(ac_try) &&
6931   test -f conftest2.$ac_objext && AC_TRY_EVAL(ac_try);
6932 then
6933   eval cf_cv_prog_$1_c_o=yes
6934 else
6935   eval cf_cv_prog_$1_c_o=no
6936 fi
6937 rm -rf ./conftest*
6938 ])dnl
6939 if test "$cf_cv_prog_$1_c_o" = yes; then
6940   AC_MSG_RESULT([yes])
6941 else
6942   AC_MSG_RESULT([no])
6943 fi
6944 ])dnl
6945 dnl ---------------------------------------------------------------------------
6946 dnl CF_PROG_GNAT version: 12 updated: 2021/01/02 17:09:14
6947 dnl ------------
6948 dnl Check for gnat/gnatmake/etc, ensure that the toolset is complete.
6949 AC_DEFUN([CF_PROG_GNAT],[
6950 for cf_prog_gnat in gnat gnatmake gprconfig gprbuild
6951 do
6952         CF_UPPER(cf_upper_prog_gnat,${cf_prog_gnat})
6953
6954         unset ac_cv_path_cf_TEMP_gnat
6955         unset cf_TEMP_gnat
6956         AC_PATH_PROG(cf_TEMP_gnat,$cf_prog_gnat,no)
6957         eval "cf_cv_PATH_$cf_upper_prog_gnat=[$]ac_cv_path_cf_TEMP_gnat"
6958
6959         if test "x$cf_TEMP_gnat" != xno; then
6960                 unset cf_cv_gnat_version
6961                 unset cf_TEMP_gnat
6962                 CF_GNAT_VERSION(cf_TEMP_gnat,$cf_prog_gnat)
6963         fi
6964         eval "cf_cv_VERSION_$cf_upper_prog_gnat=[$]cf_TEMP_gnat"
6965
6966         unset cf_TEMP_gnat
6967         unset cf_cv_gnat_version
6968         unset ac_cv_path_cf_TEMP_gnat
6969 done
6970
6971 if test "x$cf_cv_VERSION_GNATMAKE" = "xno"; then
6972         cf_ada_make=
6973         cf_cv_prog_gnat_correct=no
6974 else
6975         cf_ada_make=gnatmake
6976         if test "x$cf_cv_VERSION_GPRCONFIG" = "xno"; then
6977                 # gprconfig is newer than gnatmake; we can continue...
6978                 cf_ada_config="##"
6979         else
6980                 rm -rf ./conftest* ./*~conftest*
6981                 if mkdir conftest.src
6982                 then
6983                         cf_ada_config=""
6984                         cd conftest.src
6985                         for cf_gprconfig in Ada C
6986                         do
6987                                 AC_MSG_CHECKING(for gprconfig name for $cf_gprconfig)
6988                                 if test "$cf_gprconfig" = C
6989                                 then
6990                                         for cf_gprconfig_param in \
6991                                                 "$cf_gprconfig,,,,GNATGCC" \
6992                                                 "$cf_gprconfig,,,,GCC" \
6993                                                 "$cf_gprconfig"
6994                                         do
6995                                                 cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
6996                                                 test -n "$cf_gprconfig_value" && break
6997                                         done
6998                                 else
6999                                         cf_gprconfig_param=$cf_gprconfig
7000                                         cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
7001                                 fi
7002                                 if test -n "$cf_gprconfig_value"
7003                                 then
7004                                         eval "cf_ada_config_[$]cf_gprconfig=[$]cf_gprconfig_value"
7005                                         AC_MSG_RESULT($cf_gprconfig_value)
7006                                 else
7007                                         AC_MSG_RESULT(missing)
7008                                         cf_ada_config="#"
7009                                         break
7010                                 fi
7011                         done
7012                         cd ..
7013                         rm -rf ./conftest* ./*~conftest*
7014                 fi
7015         fi
7016         if test "x$cf_ada_config" != "x#"
7017         then
7018                 CF_GNAT_VERSION
7019                 CF_CHECK_GNAT_VERSION
7020                 AC_CHECK_PROG(M4_exists, m4, yes, no)
7021                 if test "$ac_cv_prog_M4_exists" = no; then
7022                         cf_cv_prog_gnat_correct=no
7023                         AC_MSG_WARN(Ada95 binding required program m4 not found. Ada95 binding disabled)
7024                 fi
7025                 if test "$cf_cv_prog_gnat_correct" = yes; then
7026                         AC_MSG_CHECKING(if GNAT works)
7027                         CF_GNAT_TRY_RUN([procedure conftest;],
7028 [with Text_IO;
7029 with GNAT.OS_Lib;
7030 procedure conftest is
7031 begin
7032    Text_IO.Put ("Hello World");
7033    Text_IO.New_Line;
7034    GNAT.OS_Lib.OS_Exit (0);
7035 end conftest;],
7036 [cf_cv_prog_gnat_correct=yes],
7037 [cf_cv_prog_gnat_correct=no])
7038                         AC_MSG_RESULT($cf_cv_prog_gnat_correct)
7039                 fi
7040         else
7041                 cf_cv_prog_gnat_correct=no
7042         fi
7043 fi
7044
7045 AC_SUBST(cf_ada_make)
7046 AC_SUBST(cf_ada_config)
7047 AC_SUBST(cf_ada_config_Ada)
7048 AC_SUBST(cf_ada_config_C)
7049 ])dnl
7050 dnl ---------------------------------------------------------------------------
7051 dnl CF_PROG_INSTALL version: 10 updated: 2021/01/04 19:33:05
7052 dnl ---------------
7053 dnl Force $INSTALL to be an absolute-path.  Otherwise, edit_man.sh and the
7054 dnl misc/tabset install won't work properly.  Usually this happens only when
7055 dnl using the fallback mkinstalldirs script
7056 AC_DEFUN([CF_PROG_INSTALL],
7057 [AC_PROG_INSTALL
7058 case $INSTALL in
7059 (/*)
7060         ;;
7061 (*)
7062         CF_DIRNAME(cf_dir,$INSTALL)
7063         test -z "$cf_dir" && cf_dir=.
7064         INSTALL="`cd \"$cf_dir\" && pwd`"/"`echo "$INSTALL" | sed -e 's%^.*/%%'`"
7065         ;;
7066 esac
7067 ])dnl
7068 dnl ---------------------------------------------------------------------------
7069 dnl CF_PROG_LDCONFIG version: 5 updated: 2015/04/18 08:56:57
7070 dnl ----------------
7071 dnl Check for ldconfig, needed to fixup shared libraries that would be built
7072 dnl and then used in the install.
7073 AC_DEFUN([CF_PROG_LDCONFIG],[
7074 if test "$cross_compiling" = yes ; then
7075         LDCONFIG=:
7076 else
7077         case "$cf_cv_system_name" in
7078         (dragonfly*|mirbsd*|freebsd*)
7079                 test -z "$LDCONFIG" && LDCONFIG="/sbin/ldconfig -R"
7080                 ;;
7081         (*) LDPATH=$PATH:/sbin:/usr/sbin
7082                 AC_PATH_PROG(LDCONFIG,ldconfig,,$LDPATH)
7083                 ;;
7084         esac
7085 fi
7086 AC_SUBST(LDCONFIG)
7087 ])dnl
7088 dnl ---------------------------------------------------------------------------
7089 dnl CF_PROG_LINT version: 5 updated: 2022/08/20 15:44:13
7090 dnl ------------
7091 AC_DEFUN([CF_PROG_LINT],
7092 [
7093 AC_CHECK_PROGS(LINT, lint cppcheck splint)
7094 case "x$LINT" in
7095 (xcppcheck|x*/cppcheck)
7096         test -z "$LINT_OPTS" && LINT_OPTS="--enable=all"
7097         ;;
7098 esac
7099 AC_SUBST(LINT_OPTS)
7100 AC_SUBST(LINT_LIBS)
7101 ])dnl
7102 dnl ---------------------------------------------------------------------------
7103 dnl CF_PROG_LN_S version: 2 updated: 2010/08/14 18:25:37
7104 dnl ------------
7105 dnl Combine checks for "ln -s" and "ln -sf", updating $LN_S to include "-f"
7106 dnl option if it is supported.
7107 AC_DEFUN([CF_PROG_LN_S],[
7108 AC_PROG_LN_S
7109 AC_MSG_CHECKING(if $LN_S -f options work)
7110
7111 rm -f conf$$.src conf$$dst
7112 echo >conf$$.dst
7113 echo first >conf$$.src
7114 if $LN_S -f conf$$.src conf$$.dst 2>/dev/null; then
7115         cf_prog_ln_sf=yes
7116 else
7117         cf_prog_ln_sf=no
7118 fi
7119 rm -f conf$$.dst conf$$src
7120 AC_MSG_RESULT($cf_prog_ln_sf)
7121
7122 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
7123 ])dnl
7124 dnl ---------------------------------------------------------------------------
7125 dnl CF_REGEX version: 18 updated: 2021/01/01 16:53:59
7126 dnl --------
7127 dnl Attempt to determine if we've got one of the flavors of regular-expression
7128 dnl code that we can support.
7129 AC_DEFUN([CF_REGEX],
7130 [
7131
7132 cf_regex_func=no
7133 cf_regex_libs=
7134 case "$host_os" in
7135 (mingw*)
7136         # -lsystre -ltre -lintl -liconv
7137         AC_CHECK_LIB(systre,regcomp,[
7138                 AC_CHECK_LIB(iconv,libiconv_open,[CF_ADD_LIB(iconv)])
7139                 AC_CHECK_LIB(intl,libintl_gettext,[CF_ADD_LIB(intl)])
7140                 AC_CHECK_LIB(tre,tre_regcomp,[CF_ADD_LIB(tre)])
7141                 CF_ADD_LIB(systre)
7142                 cf_regex_func=regcomp
7143         ],[
7144                 AC_CHECK_LIB(gnurx,regcomp,[
7145                         CF_ADD_LIB(gnurx)
7146                         cf_regex_func=regcomp])
7147         ])
7148         ;;
7149 (*)
7150         cf_regex_libs="regex re"
7151         AC_CHECK_FUNC(regcomp,[cf_regex_func=regcomp],[
7152                 for cf_regex_lib in $cf_regex_libs
7153                 do
7154                         AC_CHECK_LIB($cf_regex_lib,regcomp,[
7155                                         CF_ADD_LIB($cf_regex_lib)
7156                                         cf_regex_func=regcomp
7157                                         break])
7158                 done
7159         ])
7160         ;;
7161 esac
7162
7163 if test "$cf_regex_func" = no ; then
7164         AC_CHECK_FUNC(compile,[cf_regex_func=compile],[
7165                 AC_CHECK_LIB(gen,compile,[
7166                                 CF_ADD_LIB(gen)
7167                                 cf_regex_func=compile])])
7168 fi
7169
7170 if test "$cf_regex_func" = no ; then
7171         AC_MSG_WARN(cannot find regular expression library)
7172 fi
7173
7174 AC_CACHE_CHECK(for regular-expression headers,cf_cv_regex_hdrs,[
7175
7176 cf_cv_regex_hdrs=no
7177 case "$cf_regex_func" in
7178 (compile)
7179         for cf_regex_hdr in regexp.h regexpr.h
7180         do
7181                 AC_TRY_LINK([#include <$cf_regex_hdr>],[
7182                         char *p = compile("", "", "", 0);
7183                         int x = step("", "");
7184                         (void)p;
7185                         (void)x;
7186                 ],[
7187                         cf_cv_regex_hdrs=$cf_regex_hdr
7188                         break
7189                 ])
7190         done
7191         ;;
7192 (*)
7193         for cf_regex_hdr in regex.h
7194         do
7195                 AC_TRY_LINK([#include <sys/types.h>
7196 #include <$cf_regex_hdr>],[
7197                         regex_t *p = 0;
7198                         int x = regcomp(p, "", 0);
7199                         int y = regexec(p, "", 0, 0, 0);
7200                         (void)x;
7201                         (void)y;
7202                         regfree(p);
7203                 ],[
7204                         cf_cv_regex_hdrs=$cf_regex_hdr
7205                         break
7206                 ])
7207         done
7208         ;;
7209 esac
7210
7211 ])
7212
7213 case "$cf_cv_regex_hdrs" in
7214         (no)            AC_MSG_WARN(no regular expression header found) ;;
7215         (regex.h)       AC_DEFINE(HAVE_REGEX_H_FUNCS,1,[Define to 1 to include regex.h for regular expressions]) ;;
7216         (regexp.h)      AC_DEFINE(HAVE_REGEXP_H_FUNCS,1,[Define to 1 to include regexp.h for regular expressions]) ;;
7217         (regexpr.h) AC_DEFINE(HAVE_REGEXPR_H_FUNCS,1,[Define to 1 to include regexpr.h for regular expressions]) ;;
7218 esac
7219 ])dnl
7220 dnl ---------------------------------------------------------------------------
7221 dnl CF_REMOVE_CFLAGS version: 3 updated: 2021/09/05 17:25:40
7222 dnl ----------------
7223 dnl Remove a given option from CFLAGS/CPPFLAGS
7224 dnl $1 = option to remove
7225 dnl $2 = variable to update
7226 dnl $3 = nonempty to allow verbose message
7227 define([CF_REMOVE_CFLAGS],
7228 [
7229 cf_tmp_cflag=`echo "x$1" | sed -e 's/^.//' -e 's/=.*//'`
7230 while true
7231 do
7232         cf_old_cflag=`echo "x[$]$2" | sed -e 's/^.//' -e 's/[[  ]][[    ]]*-/ -/g' -e "s%$cf_tmp_cflag\\(=[[^   ]][[^   ]]*\\)\?%%" -e 's/^[[   ]]*//' -e 's%[[ ]][[ ]]*-D% -D%g' -e 's%[[ ]][[ ]]*-I% -I%g'`
7233         test "[$]$2" != "$cf_old_cflag" || break
7234         ifelse([$3],,,[CF_VERBOSE(removing old option $1 from $2)])
7235         $2="$cf_old_cflag"
7236 done
7237 ])dnl
7238 dnl ---------------------------------------------------------------------------
7239 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
7240 dnl ----------------
7241 dnl Remove all -U and -D options that refer to the given symbol from a list
7242 dnl of C compiler options.  This works around the problem that not all
7243 dnl compilers process -U and -D options from left-to-right, so a -U option
7244 dnl cannot be used to cancel the effect of a preceding -D option.
7245 dnl
7246 dnl $1 = target (which could be the same as the source variable)
7247 dnl $2 = source (including '$')
7248 dnl $3 = symbol to remove
7249 define([CF_REMOVE_DEFINE],
7250 [
7251 $1=`echo "$2" | \
7252         sed     -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[[       ]]/ /g' \
7253                 -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[$]//g'`
7254 ])dnl
7255 dnl ---------------------------------------------------------------------------
7256 dnl CF_REMOVE_LIB version: 1 updated: 2007/02/17 14:11:52
7257 dnl -------------
7258 dnl Remove the given library from the symbol
7259 dnl
7260 dnl $1 = target (which could be the same as the source variable)
7261 dnl $2 = source (including '$')
7262 dnl $3 = library to remove
7263 define([CF_REMOVE_LIB],
7264 [
7265 # remove $3 library from $2
7266 $1=`echo "$2" | sed -e 's/-l$3[[        ]]//g' -e 's/-l$3[$]//'`
7267 ])dnl
7268 dnl ---------------------------------------------------------------------------
7269 dnl CF_RESTORE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:47:45
7270 dnl ---------------------
7271 dnl Restore flags saved in CF_SAVE_XTRA_FLAGS
7272 dnl $1 = name of current macro
7273 define([CF_RESTORE_XTRA_FLAGS],
7274 [
7275 LIBS="$cf_save_LIBS_$1"
7276 CFLAGS="$cf_save_CFLAGS_$1"
7277 CPPFLAGS="$cf_save_CPPFLAGS_$1"
7278 ])dnl
7279 dnl ---------------------------------------------------------------------------
7280 dnl CF_RPATH_HACK version: 13 updated: 2021/01/03 18:30:50
7281 dnl -------------
7282 AC_DEFUN([CF_RPATH_HACK],
7283 [AC_REQUIRE([AC_PROG_FGREP])dnl
7284 AC_REQUIRE([CF_LD_RPATH_OPT])dnl
7285
7286 AC_MSG_CHECKING(for updated LDFLAGS)
7287 if test -n "$LD_RPATH_OPT" ; then
7288         AC_MSG_RESULT(maybe)
7289
7290         AC_CHECK_PROGS(cf_ldd_prog,ldd,no)
7291         cf_rpath_list="/usr/lib /lib"
7292         if test "$cf_ldd_prog" != no
7293         then
7294                 cf_rpath_oops=
7295
7296 AC_TRY_LINK([#include <stdio.h>],
7297                 [printf("Hello");],
7298                 [cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
7299                  cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[[        ]]/%/%' -e 's%/[[^/]][[^/]]*$%%' |sort | uniq`])
7300
7301                 # If we passed the link-test, but get a "not found" on a given library,
7302                 # this could be due to inept reconfiguration of gcc to make it only
7303                 # partly honor /usr/local/lib (or whatever).  Sometimes this behavior
7304                 # is intentional, e.g., installing gcc in /usr/bin and suppressing the
7305                 # /usr/local libraries.
7306                 if test -n "$cf_rpath_oops"
7307                 then
7308                         for cf_rpath_src in $cf_rpath_oops
7309                         do
7310                                 for cf_rpath_dir in \
7311                                         /usr/local \
7312                                         /usr/pkg \
7313                                         /opt/sfw
7314                                 do
7315                                         if test -f "$cf_rpath_dir/lib/$cf_rpath_src"
7316                                         then
7317                                                 CF_VERBOSE(...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src)
7318                                                 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
7319                                                 break
7320                                         fi
7321                                 done
7322                         done
7323                 fi
7324         fi
7325
7326         CF_VERBOSE(...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS)
7327
7328         CF_RPATH_HACK_2(LDFLAGS)
7329         CF_RPATH_HACK_2(LIBS)
7330
7331         CF_VERBOSE(...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS)
7332 else
7333         AC_MSG_RESULT(no)
7334 fi
7335 AC_SUBST(EXTRA_LDFLAGS)
7336 ])dnl
7337 dnl ---------------------------------------------------------------------------
7338 dnl CF_RPATH_HACK_2 version: 8 updated: 2021/01/01 13:31:04
7339 dnl ---------------
7340 dnl Do one set of substitutions for CF_RPATH_HACK, adding an rpath option to
7341 dnl EXTRA_LDFLAGS for each -L option found.
7342 dnl
7343 dnl $cf_rpath_list contains a list of directories to ignore.
7344 dnl
7345 dnl $1 = variable name to update.  The LDFLAGS variable should be the only one,
7346 dnl      but LIBS often has misplaced -L options.
7347 AC_DEFUN([CF_RPATH_HACK_2],
7348 [
7349 CF_VERBOSE(...checking $1 [$]$1)
7350
7351 cf_rpath_dst=
7352 for cf_rpath_src in [$]$1
7353 do
7354         case "$cf_rpath_src" in
7355         (-L*)
7356
7357                 # check if this refers to a directory which we will ignore
7358                 cf_rpath_skip=no
7359                 if test -n "$cf_rpath_list"
7360                 then
7361                         for cf_rpath_item in $cf_rpath_list
7362                         do
7363                                 if test "x$cf_rpath_src" = "x-L$cf_rpath_item"
7364                                 then
7365                                         cf_rpath_skip=yes
7366                                         break
7367                                 fi
7368                         done
7369                 fi
7370
7371                 if test "$cf_rpath_skip" = no
7372                 then
7373                         # transform the option
7374                         if test "$LD_RPATH_OPT" = "-R " ; then
7375                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"`
7376                         else
7377                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"`
7378                         fi
7379
7380                         # if we have not already added this, add it now
7381                         cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"`
7382                         if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS"
7383                         then
7384                                 CF_VERBOSE(...Filter $cf_rpath_src ->$cf_rpath_tmp)
7385                                 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
7386                         fi
7387                 fi
7388                 ;;
7389         esac
7390         cf_rpath_dst="$cf_rpath_dst $cf_rpath_src"
7391 done
7392 $1=$cf_rpath_dst
7393
7394 CF_VERBOSE(...checked $1 [$]$1)
7395 AC_SUBST(EXTRA_LDFLAGS)
7396 ])dnl
7397 dnl ---------------------------------------------------------------------------
7398 dnl CF_SAVE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:46:44
7399 dnl ------------------
7400 dnl Use this macro to save CFLAGS/CPPFLAGS/LIBS before checks against X headers
7401 dnl and libraries which do not update those variables.
7402 dnl
7403 dnl $1 = name of current macro
7404 define([CF_SAVE_XTRA_FLAGS],
7405 [
7406 cf_save_LIBS_$1="$LIBS"
7407 cf_save_CFLAGS_$1="$CFLAGS"
7408 cf_save_CPPFLAGS_$1="$CPPFLAGS"
7409 LIBS="$LIBS ${X_PRE_LIBS} ${X_LIBS} ${X_EXTRA_LIBS}"
7410 for cf_X_CFLAGS in $X_CFLAGS
7411 do
7412         case "x$cf_X_CFLAGS" in
7413         x-[[IUD]]*)
7414                 CPPFLAGS="$CPPFLAGS $cf_X_CFLAGS"
7415                 ;;
7416         *)
7417                 CFLAGS="$CFLAGS $cf_X_CFLAGS"
7418                 ;;
7419         esac
7420 done
7421 ])dnl
7422 dnl ---------------------------------------------------------------------------
7423 dnl CF_SHARED_OPTS version: 110 updated: 2024/03/12 19:44:02
7424 dnl --------------
7425 dnl --------------
7426 dnl Attempt to determine the appropriate CC/LD options for creating a shared
7427 dnl library.
7428 dnl
7429 dnl Notes:
7430 dnl a) ${LOCAL_LDFLAGS} is used to link executables that will run within
7431 dnl the build-tree, i.e., by making use of the libraries that are compiled in
7432 dnl $rel_builddir/lib We avoid compiling-in a $rel_builddir/lib path for the
7433 dnl shared library since that can lead to unexpected results at runtime.
7434 dnl b) ${LOCAL_LDFLAGS2} has the same intention but assumes that the shared
7435 dnl libraries are compiled in ../../lib
7436 dnl
7437 dnl The variable 'cf_cv_do_symlinks' is used to control whether we configure
7438 dnl to install symbolic links to the rel/abi versions of shared libraries.
7439 dnl
7440 dnl The variable 'cf_cv_shlib_version' controls whether we use the rel or abi
7441 dnl version when making symbolic links.
7442 dnl
7443 dnl The variable 'cf_cv_shlib_version_infix' controls whether shared library
7444 dnl version numbers are infix (ex: libncurses.<ver>.dylib) or postfix
7445 dnl (ex: libncurses.so.<ver>).
7446 dnl
7447 dnl Some loaders leave 'so_locations' lying around.  It is nice to clean up.
7448 AC_DEFUN([CF_SHARED_OPTS],
7449 [
7450         AC_REQUIRE([CF_LD_RPATH_OPT])
7451
7452         RM_SHARED_OPTS=
7453         LOCAL_LDFLAGS=
7454         LOCAL_LDFLAGS2=
7455         LD_SHARED_OPTS=
7456         INSTALL_LIB="-m 644"
7457         : ${rel_builddir:=.}
7458
7459         shlibdir=$libdir
7460         AC_SUBST(shlibdir)
7461
7462         MAKE_DLLS="#"
7463         AC_SUBST(MAKE_DLLS)
7464
7465         cf_cv_do_symlinks=no
7466         cf_ld_rpath_opt=
7467         test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
7468
7469         AC_MSG_CHECKING(whether to use release or ABI version in shared library file names)
7470         AC_ARG_WITH(shlib-version,
7471         [[  --with-shlib-version[={rel|abi}] use release or ABI version in shared library file names]],
7472         [test -z "$withval" && withval=auto
7473         case "$withval" in
7474         (yes)
7475                 cf_cv_shlib_version=auto
7476                 ;;
7477         (rel|abi|auto)
7478                 cf_cv_shlib_version=$withval
7479                 ;;
7480         (*)
7481                 AC_MSG_RESULT($withval)
7482                 AC_MSG_ERROR([option value must be one of: rel, abi, or auto])
7483                 ;;
7484         esac
7485         ],[cf_cv_shlib_version=auto])
7486         AC_MSG_RESULT($cf_cv_shlib_version)
7487
7488         cf_cv_rm_so_locs=no
7489         cf_try_cflags=
7490
7491         # Some less-capable ports of gcc support only -fpic
7492         CC_SHARED_OPTS=
7493
7494         cf_try_fPIC=no
7495         if test "$GCC" = yes
7496         then
7497                 cf_try_fPIC=yes
7498         else
7499                 case "$cf_cv_system_name" in
7500                 (*linux*)       # e.g., PGI compiler
7501                         cf_try_fPIC=yes
7502                         ;;
7503                 esac
7504         fi
7505
7506         if test "$cf_try_fPIC" = yes
7507         then
7508                 AC_MSG_CHECKING(which $CC option to use)
7509                 cf_save_CFLAGS="$CFLAGS"
7510                 for CC_SHARED_OPTS in -fPIC -fpic ''
7511                 do
7512                         CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
7513                         AC_TRY_COMPILE([#include <stdio.h>],[int x = 1; (void)x],[break],[])
7514                 done
7515                 AC_MSG_RESULT($CC_SHARED_OPTS)
7516                 CFLAGS="$cf_save_CFLAGS"
7517         fi
7518
7519         cf_cv_shlib_version_infix=no
7520
7521         case "$cf_cv_system_name" in
7522         (aix4.[3-9]*|aix[[5-7]]*)
7523                 if test "$GCC" = yes; then
7524                         CC_SHARED_OPTS='-Wl,-brtl'
7525                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
7526                 else
7527                         CC_SHARED_OPTS='-brtl'
7528                         # as well as '-qpic=large -G' or perhaps "-bM:SRE -bnoentry -bexpall"
7529                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -G -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
7530                 fi
7531                 ;;
7532         (beos*)
7533                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -o $[@] -Xlinker -soname=`basename $[@]` -nostart -e 0'
7534                 ;;
7535         (cygwin*)
7536                 CC_SHARED_OPTS=
7537                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
7538                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
7539                 cf_cv_shlib_version=cygdll
7540                 cf_cv_shlib_version_infix=cygdll
7541                 shlibdir=$bindir
7542                 MAKE_DLLS=
7543                 cat >mk_shared_lib.sh <<-CF_EOF
7544                 #!$SHELL
7545                 SHARED_LIB=\[$]1
7546                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/cyg/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
7547                 shift
7548                 cat <<-EOF
7549                 Linking shared library
7550                 ** SHARED_LIB \[$]SHARED_LIB
7551                 ** IMPORT_LIB \[$]IMPORT_LIB
7552 EOF
7553                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
7554 CF_EOF
7555                 chmod +x mk_shared_lib.sh
7556                 ;;
7557         (msys*)
7558                 CC_SHARED_OPTS=
7559                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
7560                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
7561                 cf_cv_shlib_version=msysdll
7562                 cf_cv_shlib_version_infix=msysdll
7563                 shlibdir=$bindir
7564                 MAKE_DLLS=
7565                 cat >mk_shared_lib.sh <<-CF_EOF
7566                 #!$SHELL
7567                 SHARED_LIB=\[$]1
7568                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/msys-/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
7569                 shift
7570                 cat <<-EOF
7571                 Linking shared library
7572                 ** SHARED_LIB \[$]SHARED_LIB
7573                 ** IMPORT_LIB \[$]IMPORT_LIB
7574 EOF
7575                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
7576 CF_EOF
7577                 chmod +x mk_shared_lib.sh
7578                 ;;
7579         (darwin*)
7580                 cf_try_cflags="no-cpp-precomp"
7581                 CC_SHARED_OPTS="-dynamic"
7582                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $[@]` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $[@]'
7583                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
7584                 cf_cv_shlib_version_infix=yes
7585                 AC_CACHE_CHECK([if ld -search_paths_first works], cf_cv_ldflags_search_paths_first, [
7586                         cf_save_LDFLAGS=$LDFLAGS
7587                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
7588                         AC_TRY_LINK(, [int i;], cf_cv_ldflags_search_paths_first=yes, cf_cv_ldflags_search_paths_first=no)
7589                                 LDFLAGS=$cf_save_LDFLAGS])
7590                 if test "$cf_cv_ldflags_search_paths_first" = yes; then
7591                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
7592                 fi
7593                 ;;
7594         (haiku*)
7595                 CF_SHARED_SONAME
7596                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7597                 ;;
7598         (hpux[[7-8]]*)
7599                 # HP-UX 8.07 ld lacks "+b" option used for libdir search-list
7600                 if test "$GCC" != yes; then
7601                         CC_SHARED_OPTS='+Z'
7602                 fi
7603                 MK_SHARED_LIB='${LD} ${LDFLAGS} -b -o $[@]'
7604                 INSTALL_LIB="-m 555"
7605                 ;;
7606         (hpux*)
7607                 # (tested with gcc 2.7.2 -- I don't have c89)
7608                 if test "$GCC" = yes; then
7609                         LD_SHARED_OPTS='-Xlinker +b -Xlinker ${libdir}'
7610                 else
7611                         CC_SHARED_OPTS='+Z'
7612                         LD_SHARED_OPTS='-Wl,+b,${libdir}'
7613                 fi
7614                 MK_SHARED_LIB='${LD} ${LDFLAGS} +b ${libdir} -b -o $[@]'
7615                 # HP-UX shared libraries must be executable, and should be
7616                 # readonly to exploit a quirk in the memory manager.
7617                 INSTALL_LIB="-m 555"
7618                 ;;
7619         (interix*)
7620                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7621                 if test "$cf_cv_shlib_version" = rel; then
7622                         cf_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
7623                 else
7624                         cf_shared_soname='`basename $[@]`'
7625                 fi
7626                 CC_SHARED_OPTS=
7627                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-rpath,${RPATH_LIST} -Wl,-h,'$cf_shared_soname' -o $[@]'
7628                 ;;
7629         (irix*)
7630                 if test "$cf_cv_enable_rpath" = yes ; then
7631                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7632                 fi
7633                 # tested with IRIX 5.2 and 'cc'.
7634                 if test "$GCC" != yes; then
7635                         CC_SHARED_OPTS='-KPIC'
7636                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -rdata_shared -soname `basename $[@]` -o $[@]'
7637                 else
7638                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,`basename $[@]` -o $[@]'
7639                 fi
7640                 cf_cv_rm_so_locs=yes
7641                 ;;
7642         (linux*|gnu*|k*bsd*-gnu)
7643                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7644                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7645                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7646                 fi
7647                 if test "$cf_cv_enable_rpath" = yes ; then
7648                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7649                 fi
7650                 CF_SHARED_SONAME
7651                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7652                 ;;
7653         (mingw*msvc*)
7654                 cf_cv_shlib_version=msvcdll
7655                 cf_cv_shlib_version_infix=msvcdll
7656                 shlibdir=$bindir
7657                 MAKE_DLLS=
7658                 if test "$DFT_LWR_MODEL" = "shared" ; then
7659                         LOCAL_LDFLAGS="-link -dll"
7660                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7661                         EXTRA_LDFLAGS="-link -dll $EXTRA_LDFLAGS"
7662                 fi
7663                 CC_SHARED_OPTS=
7664                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ ${LD} [$]{CFLAGS}'
7665                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.lib"
7666                 cat >mk_shared_lib.sh <<-CF_EOF
7667                 #!$SHELL
7668                 SHARED_LIB=\[$]1
7669                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.lib/'\`
7670                 shift
7671                 my_ld=\[$]1
7672                 shift
7673                 cat <<-EOF
7674                 Linking shared library
7675                 ** SHARED LIB \$SHARED_LIB
7676                 ** IMPORT_LIB \$IMPORT_LIB
7677 EOF
7678                 args=\$(echo \[$]* | sed -E "s#-l(\w*)#\1.dll.lib#g" | sed -E "s#-L(\w*)#-LIBPATH:\1#g")
7679                 exec \$my_ld -DLL -IMPLIB:"\${IMPORT_LIB}" -OUT:"\${SHARED_LIB}" ${LDFLAGS} \$args
7680                 mv "\${IMPORT_LIB}" "\${IMPORT_LIB}"
7681 CF_EOF
7682                 chmod +x mk_shared_lib.sh
7683                 cat >mk_prog.sh <<-CF_EOF
7684                 #!$SHELL
7685                 shift
7686                 # Ignore first argument (compiler) and use LD (link.exe) unconditionally
7687                 LD="[$]LD"
7688                 clopts=()
7689                 ldopts=("/subsystem:console")
7690                 libs=()
7691                 isdll=0
7692                 while test \[$]# -gt 0; do
7693                         case "\[$]1" in
7694                                 -link)
7695                                         # ignore -link argument
7696                                         ;;
7697                                 -M[[TD]] | -M[[TD]]d)
7698                                         # ignore runtime-library option
7699                                         ;;
7700                                 -dll)
7701                                         isdll=1
7702                                         ;;
7703                                 -W* | -w*)
7704                                         # ignore warnings
7705                                         ;;
7706                                 -D*)
7707                                         clopts+=("\[$]1")
7708                                         ;;
7709                                 -I*)
7710                                         clopts+=("\[$]1")
7711                                         ;;
7712                                 -l*)
7713                                         libs+=("\`echo \"\[$]1\" | sed \"s/^-l//\"\`")
7714                                         ;;
7715                                 -L*)
7716                                         ldopts+=("\`echo \"\[$]1\" | sed \"s/^-L/-LIBPATH:/\"\`")
7717                                         ;;
7718                                 *.obj | *.o)
7719                                         ldopts+=("\[$]1")
7720                                         ;;
7721                                 -Wl,*)
7722                                         for linkarg in \`echo '\[$]1' | sed -e 's/-Wl,//' -e 's/,/ /'\`; do
7723                                                 ldopts+=("\[$]{linkarg}")
7724                                         done
7725                                         ;;
7726                                 *.lib)
7727                                         ldopts+=("\[$]1")
7728                                         ;;
7729                                 -o)
7730                                         shift
7731                                         ldopts+=("-out:\[$]1")
7732                                         ;;
7733                                 *)
7734                                         clopts+=("\[$]1")
7735                                         ldopts+=("\[$]1")
7736                                         ;;
7737                         esac
7738                         shift
7739                 done
7740                 if [[ "\$isdll" -ne 0 ]]; then
7741                         for lib in \[$]{libs[[*]]}; do
7742                                 ldopts+=("\[$]lib.dll.lib")
7743                         done
7744                 else
7745                         for lib in \[$]{libs[[*]]}; do
7746                                 ldopts+=("\[$]lib.lib")
7747                         done
7748                 fi
7749                 cat <<-EOF
7750                 Creating program
7751                 ** ld options:   "\[$]{ldopts[[@]]}"
7752 EOF
7753                 exec \[$]LD \[$]{ldopts[[@]]}
7754 CF_EOF
7755                 chmod +x mk_prog.sh
7756                 LINK_PROGS="$SHELL ${rel_builddir}/mk_prog.sh"
7757                 LINK_TESTS="$SHELL ${rel_builddir}/mk_prog.sh"
7758                 ;;
7759         (mingw*)
7760                 cf_cv_shlib_version=mingw
7761                 cf_cv_shlib_version_infix=mingw
7762                 shlibdir=$bindir
7763                 MAKE_DLLS=
7764                 if test "$DFT_LWR_MODEL" = "shared" ; then
7765                         LOCAL_LDFLAGS="-Wl,--enable-auto-import"
7766                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7767                         EXTRA_LDFLAGS="-Wl,--enable-auto-import $EXTRA_LDFLAGS"
7768                 fi
7769                 CC_SHARED_OPTS=
7770                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
7771                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
7772                 cat >mk_shared_lib.sh <<-CF_EOF
7773                 #!$SHELL
7774                 SHARED_LIB=\[$]1
7775                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
7776                 shift
7777                 cat <<-EOF
7778                 Linking shared library
7779                 ** SHARED_LIB \[$]SHARED_LIB
7780                 ** IMPORT_LIB \[$]IMPORT_LIB
7781 EOF
7782                 exec \[$]* ${LDFLAGS} -shared -Wl,--enable-auto-import,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
7783 CF_EOF
7784                 chmod +x mk_shared_lib.sh
7785                 ;;
7786         (openbsd[[2-9]].*|mirbsd*)
7787                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7788                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7789                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7790                 fi
7791                 if test "$cf_cv_enable_rpath" = yes ; then
7792                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7793                 fi
7794                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7795                 CF_SHARED_SONAME
7796                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7797                 ;;
7798         (nskJ*)
7799                 CC_SHARED_OPTS=
7800                 MK_SHARED_LIB='${LD} -Wshared -Weld=-export_all -o $[@]'
7801                 ;;
7802         (nskL*)
7803                 CC_SHARED_OPTS=
7804                 MK_SHARED_LIB='${LD} -Wshared -Wxld=-export_all -o $[@]'
7805                 ;;
7806         (nto-qnx*|openbsd*|freebsd[[12]].*)
7807                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7808                 MK_SHARED_LIB='${LD} ${LDFLAGS} -Bshareable -o $[@]'
7809                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7810                 ;;
7811         (dragonfly*|freebsd*)
7812                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7813                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
7814                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
7815                         LOCAL_LDFLAGS2="${cf_ld_rpath_opt}\${RPATH_LIST} $LOCAL_LDFLAGS"
7816                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7817                 fi
7818                 CF_SHARED_SONAME
7819                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7820                 ;;
7821         (netbsd*)
7822                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7823                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
7824                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
7825                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7826                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7827                         if test "$cf_cv_shlib_version" = auto; then
7828                         if test -f /usr/libexec/ld.elf_so; then
7829                                 cf_cv_shlib_version=abi
7830                         else
7831                                 cf_cv_shlib_version=rel
7832                         fi
7833                         fi
7834                         CF_SHARED_SONAME
7835                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $[@]'
7836                 else
7837                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -o $[@]'
7838                 fi
7839                 ;;
7840         (osf*|mls+*)
7841                 # tested with OSF/1 V3.2 and 'cc'
7842                 # tested with OSF/1 V3.2 and gcc 2.6.3 (but the c++ demo didn't
7843                 # link with shared libs).
7844                 MK_SHARED_LIB='${LD} ${LDFLAGS} -set_version ${REL_VERSION}:${ABI_VERSION} -expect_unresolved "*" -shared -soname `basename $[@]`'
7845                 case "$host_os" in
7846                 (osf4*)
7847                         MK_SHARED_LIB="${MK_SHARED_LIB} -msym"
7848                         ;;
7849                 esac
7850                 MK_SHARED_LIB="${MK_SHARED_LIB}"' -o $[@]'
7851                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7852                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7853                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7854                 fi
7855                 cf_cv_rm_so_locs=yes
7856                 ;;
7857         (sco3.2v5*)  # also uw2* and UW7: hops 13-Apr-98
7858                 # tested with osr5.0.5
7859                 if test "$GCC" != yes; then
7860                         CC_SHARED_OPTS='-belf -KPIC'
7861                 fi
7862                 MK_SHARED_LIB='${LD} ${LDFLAGS} -dy -G -h `basename $[@] .${REL_VERSION}`.${ABI_VERSION} -o [$]@'
7863                 if test "$cf_cv_enable_rpath" = yes ; then
7864                         # only way is to set LD_RUN_PATH but no switch for it
7865                         RUN_PATH=$libdir
7866                 fi
7867                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7868                 LINK_PROGS='LD_RUN_PATH=${libdir}'
7869                 LINK_TESTS='Pwd=`pwd`;LD_RUN_PATH=`dirname $${Pwd}`/lib'
7870                 ;;
7871         (sunos4*)
7872                 # tested with SunOS 4.1.1 and gcc 2.7.0
7873                 if test "$GCC" != yes; then
7874                         CC_SHARED_OPTS='-KPIC'
7875                 fi
7876                 MK_SHARED_LIB='${LD} ${LDFLAGS} -assert pure-text -o $[@]'
7877                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7878                 ;;
7879         (solaris2*)
7880                 # tested with SunOS 5.5.1 (solaris 2.5.1) and gcc 2.7.2
7881                 # tested with SunOS 5.10 (solaris 10) and gcc 3.4.3
7882                 if test "$DFT_LWR_MODEL" = "shared" ; then
7883                         LOCAL_LDFLAGS="-R\$(LOCAL_LIBDIR):\${libdir}"
7884                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7885                 fi
7886                 if test "$cf_cv_enable_rpath" = yes ; then
7887                         EXTRA_LDFLAGS="-R\${libdir} $EXTRA_LDFLAGS"
7888                 fi
7889                 CF_SHARED_SONAME
7890                 if test "$GCC" != yes; then
7891                         cf_save_CFLAGS="$CFLAGS"
7892                         for cf_shared_opts in -xcode=pic32 -xcode=pic13 -KPIC -Kpic -O
7893                         do
7894                                 CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
7895                                 AC_TRY_COMPILE([#include <stdio.h>],[printf("Hello\\n");],[break])
7896                         done
7897                         CFLAGS="$cf_save_CFLAGS"
7898                         CC_SHARED_OPTS=$cf_shared_opts
7899                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dy -G -h '$cf_cv_shared_soname' -o $[@]'
7900                 else
7901                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -dy -G -h '$cf_cv_shared_soname' -o $[@]'
7902                 fi
7903                 ;;
7904         (sysv5uw7*|unix_sv*)
7905                 # tested with UnixWare 7.1.0 (gcc 2.95.2 and cc)
7906                 if test "$GCC" != yes; then
7907                         CC_SHARED_OPTS='-KPIC'
7908                 fi
7909                 MK_SHARED_LIB='${LD} ${LDFLAGS} -d y -G -o [$]@'
7910                 ;;
7911         (*)
7912                 CC_SHARED_OPTS='unknown'
7913                 MK_SHARED_LIB='echo unknown'
7914                 ;;
7915         esac
7916
7917         # This works if the last tokens in $MK_SHARED_LIB are the -o target.
7918         case "$cf_cv_shlib_version" in
7919         (rel|abi)
7920                 case "$MK_SHARED_LIB" in
7921                 (*'-o $[@]')
7922                         test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
7923                         ;;
7924                 (*)
7925                         AC_MSG_WARN(ignored --with-shlib-version)
7926                         ;;
7927                 esac
7928                 ;;
7929         esac
7930
7931         if test -n "$cf_try_cflags"
7932         then
7933 cat > conftest.$ac_ext <<EOF
7934 #line __oline__ "${as_me:-configure}"
7935 #include <stdio.h>
7936 int main(int argc, char *argv[[]])
7937 {
7938         printf("hello\\n");
7939         return (argv[[argc-1]] == 0) ;
7940 }
7941 EOF
7942                 cf_save_CFLAGS="$CFLAGS"
7943                 for cf_opt in $cf_try_cflags
7944                 do
7945                         CFLAGS="$cf_save_CFLAGS -$cf_opt"
7946                         AC_MSG_CHECKING(if CFLAGS option -$cf_opt works)
7947                         if AC_TRY_EVAL(ac_compile); then
7948                                 AC_MSG_RESULT(yes)
7949                                 cf_save_CFLAGS="$CFLAGS"
7950                         else
7951                                 AC_MSG_RESULT(no)
7952                         fi
7953                 done
7954                 CFLAGS="$cf_save_CFLAGS"
7955         fi
7956
7957
7958         # RPATH_LIST is a colon-separated list of directories
7959         test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
7960         test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
7961
7962         test "$cf_cv_rm_so_locs" = yes && RM_SHARED_OPTS="$RM_SHARED_OPTS so_locations"
7963
7964         CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
7965         CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
7966
7967         AC_SUBST(CC_SHARED_OPTS)
7968         AC_SUBST(LD_RPATH_OPT)
7969         AC_SUBST(LD_SHARED_OPTS)
7970         AC_SUBST(MK_SHARED_LIB)
7971         AC_SUBST(RM_SHARED_OPTS)
7972
7973         AC_SUBST(LINK_PROGS)
7974         AC_SUBST(LINK_TESTS)
7975
7976         AC_SUBST(EXTRA_LDFLAGS)
7977         AC_SUBST(LOCAL_LDFLAGS)
7978         AC_SUBST(LOCAL_LDFLAGS2)
7979
7980         AC_SUBST(INSTALL_LIB)
7981         AC_SUBST(RPATH_LIST)
7982 ])dnl
7983 dnl ---------------------------------------------------------------------------
7984 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
7985 dnl ----------------
7986 dnl utility macro for CF_SHARED_OPTS, constructs "$cf_cv_shared_soname" for
7987 dnl substitution into MK_SHARED_LIB string for the "-soname" (or similar)
7988 dnl option.
7989 dnl
7990 dnl $1 is the default that should be used for "$cf_cv_shlib_version".
7991 dnl If missing, use "rel".
7992 define([CF_SHARED_SONAME],
7993 [
7994         test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=ifelse($1,,rel,$1)
7995         if test "$cf_cv_shlib_version" = rel; then
7996                 cf_cv_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
7997         else
7998                 cf_cv_shared_soname='`basename $[@]`'
7999         fi
8000 ])
8001 dnl ---------------------------------------------------------------------------
8002 dnl CF_SIGWINCH version: 7 updated: 2023/02/18 17:41:25
8003 dnl -----------
8004 dnl Use this macro after CF_XOPEN_SOURCE, but do not require it (not all
8005 dnl programs need this test).
8006 dnl
8007 dnl This is really a Mac OS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
8008 dnl forces SIGWINCH to be undefined (breaks xterm, ncurses).  Oddly, the struct
8009 dnl winsize declaration is left alone - we may revisit this if Apple choose to
8010 dnl break that part of the interface as well.
8011 AC_DEFUN([CF_SIGWINCH],
8012 [
8013 AC_CACHE_CHECK(if SIGWINCH is defined,cf_cv_define_sigwinch,[
8014         AC_TRY_COMPILE([
8015 #include <sys/types.h>
8016 #include <sys/signal.h>
8017 ],[int x = SIGWINCH; (void)x],
8018         [cf_cv_define_sigwinch=yes],
8019         [AC_TRY_COMPILE([
8020 #undef _XOPEN_SOURCE
8021 #undef _POSIX_SOURCE
8022 #undef _POSIX_C_SOURCE
8023 #include <sys/types.h>
8024 #include <sys/signal.h>
8025 ],[int x = SIGWINCH; (void)x],
8026         [cf_cv_define_sigwinch=maybe],
8027         [cf_cv_define_sigwinch=no])
8028 ])
8029 ])
8030
8031 if test "$cf_cv_define_sigwinch" = maybe ; then
8032 AC_CACHE_CHECK(for actual SIGWINCH definition,cf_cv_fixup_sigwinch,[
8033 cf_cv_fixup_sigwinch=unknown
8034 cf_sigwinch=32
8035 while test "$cf_sigwinch" != 1
8036 do
8037         AC_TRY_COMPILE([
8038 #undef _XOPEN_SOURCE
8039 #undef _POSIX_SOURCE
8040 #undef _POSIX_C_SOURCE
8041 #include <sys/types.h>
8042 #include <sys/signal.h>
8043 ],[
8044 #if SIGWINCH != $cf_sigwinch
8045 #error SIGWINCH is not $cf_sigwinch
8046 #endif
8047 int x = SIGWINCH; (void)x],
8048         [cf_cv_fixup_sigwinch=$cf_sigwinch
8049          break])
8050
8051 cf_sigwinch="`expr "$cf_sigwinch" - 1`"
8052 done
8053 ])
8054
8055         if test "$cf_cv_fixup_sigwinch" != unknown ; then
8056                 CPPFLAGS="$CPPFLAGS -DSIGWINCH=$cf_cv_fixup_sigwinch"
8057         fi
8058 fi
8059 ])dnl
8060 dnl ---------------------------------------------------------------------------
8061 dnl CF_SIG_ATOMIC_T version: 5 updated: 2020/03/10 18:53:47
8062 dnl ---------------
8063 dnl signal handler, but there are some gcc dependencies in that recommendation.
8064 dnl Try anyway.
8065 AC_DEFUN([CF_SIG_ATOMIC_T],
8066 [
8067 AC_MSG_CHECKING(for signal global datatype)
8068 AC_CACHE_VAL(cf_cv_sig_atomic_t,[
8069         for cf_type in \
8070                 "volatile sig_atomic_t" \
8071                 "sig_atomic_t" \
8072                 "int"
8073         do
8074         AC_TRY_COMPILE([
8075 #include <sys/types.h>
8076 #include <signal.h>
8077 #include <stdio.h>
8078
8079 extern $cf_type x;
8080 $cf_type x;
8081 static void handler(int sig)
8082 {
8083         (void)sig;
8084         x = 5;
8085 }],
8086                 [signal(SIGINT, handler);
8087                  x = 1],
8088                 [cf_cv_sig_atomic_t=$cf_type],
8089                 [cf_cv_sig_atomic_t=no])
8090                 test "$cf_cv_sig_atomic_t" != no && break
8091         done
8092         ])
8093 AC_MSG_RESULT($cf_cv_sig_atomic_t)
8094 test "$cf_cv_sig_atomic_t" != no && AC_DEFINE_UNQUOTED(SIG_ATOMIC_T, $cf_cv_sig_atomic_t,[Define to signal global datatype])
8095 ])dnl
8096 dnl ---------------------------------------------------------------------------
8097 dnl CF_SIZECHANGE version: 18 updated: 2021/09/04 06:35:04
8098 dnl -------------
8099 dnl Check for definitions & structures needed for window size-changing
8100 dnl
8101 dnl https://stackoverflow.com/questions/18878141/difference-between-structures-ttysize-and-winsize/50769952#50769952
8102 AC_DEFUN([CF_SIZECHANGE],
8103 [
8104 AC_REQUIRE([CF_STRUCT_TERMIOS])
8105 AC_CACHE_CHECK(declaration of size-change, cf_cv_sizechange,[
8106         cf_cv_sizechange=unknown
8107         cf_save_CPPFLAGS="$CPPFLAGS"
8108
8109 for cf_opts in "" "NEED_PTEM_H"
8110 do
8111
8112         CPPFLAGS="$cf_save_CPPFLAGS"
8113         if test -n "$cf_opts"
8114         then
8115                 CF_APPEND_TEXT(CPPFLAGS,-D$cf_opts)
8116         fi
8117         AC_TRY_COMPILE([#include <sys/types.h>
8118 #ifdef HAVE_TERMIOS_H
8119 #include <termios.h>
8120 #else
8121 #ifdef HAVE_TERMIO_H
8122 #include <termio.h>
8123 #endif
8124 #endif
8125
8126 #ifdef NEED_PTEM_H
8127 /* This is a workaround for SCO:  they neglected to define struct winsize in
8128  * termios.h -- it is only in termio.h and ptem.h
8129  */
8130 #include <sys/stream.h>
8131 #include <sys/ptem.h>
8132 #endif
8133
8134 #ifdef HAVE_SYS_IOCTL_H
8135 #include <sys/ioctl.h>
8136 #endif
8137 ],[
8138 #ifdef TIOCGSIZE
8139         struct ttysize win;     /* SunOS 3.0... */
8140         int y = win.ts_lines = 2;
8141         int x = win.ts_cols = 1;
8142         (void)y;
8143         (void)x;
8144 #else
8145 #ifdef TIOCGWINSZ
8146         struct winsize win;     /* everything else */
8147         int y = win.ws_row = 2;
8148         int x = win.ws_col = 1;
8149         (void)y;
8150         (void)x;
8151 #else
8152         no TIOCGSIZE or TIOCGWINSZ
8153 #endif /* TIOCGWINSZ */
8154 #endif /* TIOCGSIZE */
8155         ],
8156         [cf_cv_sizechange=yes],
8157         [cf_cv_sizechange=no])
8158
8159         CPPFLAGS="$cf_save_CPPFLAGS"
8160         if test "$cf_cv_sizechange" = yes ; then
8161                 echo "size-change succeeded ($cf_opts)" >&AC_FD_CC
8162                 test -n "$cf_opts" && cf_cv_sizechange="$cf_opts"
8163                 break
8164         fi
8165 done
8166 ])
8167 if test "$cf_cv_sizechange" != no ; then
8168         AC_DEFINE(HAVE_SIZECHANGE,1,[Define to 1 if sizechange declarations are provided])
8169         case "$cf_cv_sizechange" in
8170         (NEED*)
8171                 AC_DEFINE_UNQUOTED($cf_cv_sizechange )
8172                 ;;
8173         esac
8174 fi
8175 ])dnl
8176 dnl ---------------------------------------------------------------------------
8177 dnl CF_SRC_MODULES version: 34 updated: 2023/04/22 11:51:06
8178 dnl --------------
8179 dnl For each parameter, test if the source-directory exists, and if it contains
8180 dnl a 'modules' file.  If so, add to the list $cf_cv_src_modules which we'll
8181 dnl use in CF_LIB_RULES.
8182 dnl
8183 dnl This uses the configured value to make the lists SRC_SUBDIRS and
8184 dnl SUB_MAKEFILES which are used in the makefile-generation scheme.
8185 AC_DEFUN([CF_SRC_MODULES],
8186 [
8187 AC_REQUIRE([CF_CHECK_GNAT_VERSION])
8188 AC_MSG_CHECKING(for src modules)
8189
8190 # dependencies and linker-arguments for test-programs
8191 TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEPS"
8192 TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEP2"
8193 if test "$DFT_LWR_MODEL" = "libtool"; then
8194         TEST_ARGS="${TEST_DEPS}"
8195         TEST_ARG2="${TEST_DEP2}"
8196 else
8197         TEST_ARGS="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARGS"
8198         TEST_ARG2="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARG2"
8199 fi
8200
8201 PC_MODULES_TO_MAKE="ncurses${USE_ARG_SUFFIX}"
8202 cf_cv_src_modules=
8203 for cf_dir in $1
8204 do
8205         if test -f "$srcdir/$cf_dir/modules" ; then
8206
8207                 if test -z "$cf_cv_src_modules"; then
8208                         cf_cv_src_modules=$cf_dir
8209                 else
8210                         cf_cv_src_modules="$cf_cv_src_modules $cf_dir"
8211                 fi
8212
8213                 # Make the ncurses_cfg.h file record the library interface files as
8214                 # well.  These are header files that are the same name as their
8215                 # directory.  Ncurses is the only library that does not follow
8216                 # that pattern.
8217                 if test -f "$srcdir/${cf_dir}/${cf_dir}.h" ; then
8218                         CF_UPPER(cf_have_include,$cf_dir)
8219                         AC_DEFINE_UNQUOTED(HAVE_${cf_have_include}_H)
8220                         AC_DEFINE_UNQUOTED(HAVE_LIB${cf_have_include})
8221                         CF_MAP_LIB_BASENAME(TEST_ROOT,$cf_dir)
8222                         TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${TEST_ROOT}${DFT_DEP_SUFFIX} $TEST_DEPS"
8223                         TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${TEST_ROOT}${DFT_DEP_SUFFIX} $TEST_DEP2"
8224                         if test "$DFT_LWR_MODEL" = "libtool"; then
8225                                 TEST_ARGS="${TEST_DEPS}"
8226                                 TEST_ARG2="${TEST_DEP2}"
8227                         else
8228                                 TEST_ARGS="-l${TEST_ROOT}${USE_ARG_SUFFIX} $TEST_ARGS"
8229                                 TEST_ARG2="-l${TEST_ROOT}${USE_ARG_SUFFIX} $TEST_ARG2"
8230                         fi
8231                         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ${cf_dir}${USE_ARG_SUFFIX}"
8232                 fi
8233         fi
8234 done
8235 AC_MSG_RESULT($cf_cv_src_modules)
8236
8237 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS"
8238 TEST_ARG2="-L${LIB_2ND} $TEST_ARG2"
8239
8240 AC_SUBST(TEST_ARGS)
8241 AC_SUBST(TEST_DEPS)
8242
8243 AC_SUBST(TEST_ARG2)
8244 AC_SUBST(TEST_DEP2)
8245
8246 SRC_SUBDIRS=
8247 if test "x$cf_with_manpages" != xno ; then
8248         SRC_SUBDIRS="$SRC_SUBDIRS man"
8249 fi
8250 SRC_SUBDIRS="$SRC_SUBDIRS include"
8251 for cf_dir in $cf_cv_src_modules
8252 do
8253         SRC_SUBDIRS="$SRC_SUBDIRS $cf_dir"
8254 done
8255 if test "x$cf_with_tests" != "xno" ; then
8256         SRC_SUBDIRS="$SRC_SUBDIRS test"
8257 fi
8258 # always make this, to install the ncurses-config script
8259 SRC_SUBDIRS="$SRC_SUBDIRS misc"
8260 if test "$cf_with_cxx_binding" != no; then
8261         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ncurses++${USE_ARG_SUFFIX}"
8262         SRC_SUBDIRS="$SRC_SUBDIRS c++"
8263 fi
8264
8265 test "x$with_termlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TINFO_ARG_SUFFIX"
8266 test "x$with_ticlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TICS_ARG_SUFFIX"
8267
8268 AC_SUBST(PC_MODULES_TO_MAKE)
8269
8270 ADA_SUBDIRS=
8271 if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = xyes && test -f "$srcdir/Ada95/Makefile.in" ; then
8272         SRC_SUBDIRS="$SRC_SUBDIRS Ada95"
8273         ADA_SUBDIRS="gen src"
8274         if test "x$cf_with_tests" != "xno" ; then
8275                 ADA_SUBDIRS="$ADA_SUBDIRS samples"
8276         fi
8277 fi
8278
8279 SUB_MAKEFILES=
8280 for cf_dir in $SRC_SUBDIRS
8281 do
8282         SUB_MAKEFILES="$SUB_MAKEFILES $cf_dir/Makefile"
8283 done
8284
8285 if test -n "$ADA_SUBDIRS"; then
8286         for cf_dir in $ADA_SUBDIRS
8287         do
8288                 SUB_MAKEFILES="$SUB_MAKEFILES Ada95/$cf_dir/Makefile"
8289         done
8290         AC_SUBST(ADA_SUBDIRS)
8291 fi
8292 ])dnl
8293 dnl ---------------------------------------------------------------------------
8294 dnl CF_STDCPP_LIBRARY version: 12 updated: 2021/01/01 13:31:04
8295 dnl -----------------
8296 dnl Check for -lstdc++, which is GNU's standard C++ library.
8297 dnl If $CXXLIBS is set, add that to the libraries used for test-linking.
8298 dnl If -lstdc++ was not already added to $LIBS or $CXXLIBS, and is needed,
8299 dnl add it to $CXXLIBS.
8300 AC_DEFUN([CF_STDCPP_LIBRARY],
8301 [
8302 if test -n "$GXX" ; then
8303
8304         cf_save="$LIBS"
8305         LIBS="$LIBS $CXXLIBS"
8306         AC_MSG_CHECKING(if we already have C++ library)
8307         AC_TRY_LINK([
8308                         #include <iostream>],[
8309                         std::cout << "Hello World!" << std::endl;],
8310                 [cf_have_libstdcpp=yes],
8311                 [cf_have_libstdcpp=no])
8312         AC_MSG_RESULT($cf_have_libstdcpp)
8313         LIBS="$cf_save"
8314
8315         if test "$cf_have_libstdcpp" != yes
8316         then
8317                 case "$cf_cv_system_name" in
8318                 (os2*)
8319                         if test -z "`g++ -dM -E - < /dev/null | grep __KLIBC__`"; then
8320                                 cf_stdcpp_libname=stdcpp
8321                         else
8322                                 cf_stdcpp_libname=stdc++
8323                         fi
8324                         ;;
8325                 (*)
8326                         cf_stdcpp_libname=stdc++
8327                         ;;
8328                 esac
8329
8330                 AC_CACHE_CHECK(for library $cf_stdcpp_libname,cf_cv_libstdcpp,[
8331                         cf_save="$LIBS"
8332                         LIBS="$LIBS $CXXLIBS"
8333                         CF_ADD_LIB($cf_stdcpp_libname)
8334                 AC_TRY_LINK([
8335                                 #include <iostream>],[
8336                                 std::cout << "Hello World!" << std::endl;],
8337                         [cf_cv_libstdcpp=yes],
8338                         [cf_cv_libstdcpp=no])
8339                         LIBS="$cf_save"
8340                 ])
8341                 test "$cf_cv_libstdcpp" = yes && { CF_ADD_LIB($cf_stdcpp_libname,CXXLIBS) }
8342         fi
8343 fi
8344 ])dnl
8345 dnl ---------------------------------------------------------------------------
8346 dnl CF_STRIP_G_OPT version: 4 updated: 2021/01/02 09:31:20
8347 dnl --------------
8348 dnl     Remove "-g" option from the compiler options
8349 AC_DEFUN([CF_STRIP_G_OPT],
8350 [$1=`echo "${$1}" | CF__SED_TRIMBLANKS(-e 's%-g %%' -e 's%-g$%%')`])dnl
8351 dnl ---------------------------------------------------------------------------
8352 dnl CF_STRUCT_SIGACTION version: 6 updated: 2023/12/03 09:21:34
8353 dnl -------------------
8354 dnl Check if we need _POSIX_SOURCE defined to use struct sigaction.  We'll only
8355 dnl do this if we've found the sigaction function.
8356 AC_DEFUN([CF_STRUCT_SIGACTION],[
8357 AC_REQUIRE([CF_XOPEN_SOURCE])
8358
8359 if test "$ac_cv_func_sigaction" = yes; then
8360 AC_MSG_CHECKING(whether sigaction needs _POSIX_SOURCE)
8361 AC_TRY_COMPILE([
8362 #include <sys/types.h>
8363 #include <signal.h>],
8364         [struct sigaction act; (void)act],
8365         [sigact_bad=no],
8366         [
8367 AC_TRY_COMPILE([
8368 #define _POSIX_SOURCE
8369 #include <sys/types.h>
8370 #include <signal.h>],
8371         [struct sigaction act; (void)act],
8372         [sigact_bad=yes
8373          AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE])],
8374          [sigact_bad=unknown])])
8375 AC_MSG_RESULT($sigact_bad)
8376 fi
8377 ])dnl
8378 dnl ---------------------------------------------------------------------------
8379 dnl CF_STRUCT_TERMIOS version: 13 updated: 2023/12/03 19:38:54
8380 dnl -----------------
8381 dnl Some machines require _POSIX_SOURCE to completely define struct termios.
8382 AC_DEFUN([CF_STRUCT_TERMIOS],[
8383 AC_REQUIRE([CF_XOPEN_SOURCE])
8384
8385 AC_CHECK_HEADERS( \
8386 termio.h \
8387 termios.h \
8388 unistd.h \
8389 sys/ioctl.h \
8390 sys/termio.h \
8391 )
8392
8393 if test "$ac_cv_header_termios_h" = yes ; then
8394         case "$CFLAGS $CPPFLAGS" in
8395         (*-D_POSIX_SOURCE*)
8396                 termios_bad=dunno ;;
8397         (*)     termios_bad=maybe ;;
8398         esac
8399         if test "$termios_bad" = maybe ; then
8400         AC_MSG_CHECKING(whether termios.h needs _POSIX_SOURCE)
8401         AC_TRY_COMPILE([#include <termios.h>],
8402                 [struct termios foo; int x = (int)(foo.c_iflag = 1); (void)x],
8403                 termios_bad=no, [
8404                 AC_TRY_COMPILE([
8405 #define _POSIX_SOURCE
8406 #include <termios.h>],
8407                         [struct termios foo; int x = (int)(foo.c_iflag = 2); (void)x],
8408                         termios_bad=unknown,
8409                         termios_bad=yes AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE]))
8410                         ])
8411         AC_MSG_RESULT($termios_bad)
8412         fi
8413 fi
8414 ])dnl
8415 dnl ---------------------------------------------------------------------------
8416 dnl CF_SUBDIR_PATH version: 7 updated: 2014/12/04 04:33:06
8417 dnl --------------
8418 dnl Construct a search-list for a nonstandard header/lib-file
8419 dnl     $1 = the variable to return as result
8420 dnl     $2 = the package name
8421 dnl     $3 = the subdirectory, e.g., bin, include or lib
8422 AC_DEFUN([CF_SUBDIR_PATH],
8423 [
8424 $1=
8425
8426 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
8427
8428 for cf_subdir_prefix in \
8429         /usr \
8430         /usr/local \
8431         /usr/pkg \
8432         /opt \
8433         /opt/local \
8434         [$]HOME
8435 do
8436         CF_ADD_SUBDIR_PATH($1,$2,$3,$cf_subdir_prefix,$prefix)
8437 done
8438 ])dnl
8439 dnl ---------------------------------------------------------------------------
8440 dnl CF_SUBST_IF version: 2 updated: 2006/06/17 12:33:03
8441 dnl -----------
8442 dnl     Shorthand macro for substituting things that the user may override
8443 dnl     with an environment variable.
8444 dnl
8445 dnl     $1 = condition to pass to "test"
8446 dnl     $2 = environment variable
8447 dnl     $3 = value if the test succeeds
8448 dnl     $4 = value if the test fails
8449 AC_DEFUN([CF_SUBST_IF],
8450 [
8451 if test $1 ; then
8452         $2=$3
8453 ifelse($4,,,[else
8454         $2=$4])
8455 fi
8456 AC_SUBST($2)
8457 ])dnl
8458 dnl ---------------------------------------------------------------------------
8459 dnl CF_SUBST_NCURSES_VERSION version: 11 updated: 2023/01/07 16:32:06
8460 dnl ------------------------
8461 dnl Get the version-number for use in shared-library naming, etc.
8462 AC_DEFUN([CF_SUBST_NCURSES_VERSION],
8463 [AC_REQUIRE([AC_PROG_EGREP])dnl
8464
8465 NCURSES_MAJOR="`${EGREP-egrep} '^NCURSES_MAJOR[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
8466 NCURSES_MINOR="`${EGREP-egrep} '^NCURSES_MINOR[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
8467 NCURSES_PATCH="`${EGREP-egrep} '^NCURSES_PATCH[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
8468 cf_cv_abi_version=${NCURSES_MAJOR}
8469 cf_cv_abi_default=${NCURSES_MAJOR}
8470 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
8471 dnl Show the computed version, for logging
8472 cf_cv_timestamp=`date`
8473 AC_MSG_RESULT(Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_default ($cf_cv_timestamp))
8474 dnl We need these values in the generated headers
8475 AC_SUBST(NCURSES_MAJOR)
8476 AC_SUBST(NCURSES_MINOR)
8477 AC_SUBST(NCURSES_PATCH)
8478 dnl We need these values in the generated makefiles
8479 AC_SUBST(cf_cv_rel_version)
8480 AC_SUBST(cf_cv_abi_version)
8481 AC_SUBST(cf_cv_abi_default)
8482 AC_SUBST(cf_cv_builtin_bool)
8483 AC_SUBST(cf_cv_header_stdbool_h)
8484 AC_SUBST(cf_cv_type_of_bool)dnl
8485 ])dnl
8486 dnl ---------------------------------------------------------------------------
8487 dnl CF_SYS_TIME_SELECT version: 6 updated: 2015/04/18 08:56:57
8488 dnl ------------------
8489 dnl Check if we can include <sys/time.h> with <sys/select.h>; this breaks on
8490 dnl older SCO configurations.
8491 AC_DEFUN([CF_SYS_TIME_SELECT],
8492 [
8493 AC_MSG_CHECKING(if sys/time.h works with sys/select.h)
8494 AC_CACHE_VAL(cf_cv_sys_time_select,[
8495 AC_TRY_COMPILE([
8496 #include <sys/types.h>
8497 #ifdef HAVE_SYS_TIME_H
8498 #include <sys/time.h>
8499 #endif
8500 #ifdef HAVE_SYS_SELECT_H
8501 #include <sys/select.h>
8502 #endif
8503 ],[],[cf_cv_sys_time_select=yes],
8504          [cf_cv_sys_time_select=no])
8505          ])
8506 AC_MSG_RESULT($cf_cv_sys_time_select)
8507 test "$cf_cv_sys_time_select" = yes && AC_DEFINE(HAVE_SYS_TIME_SELECT,1,[Define to 1 if we can include <sys/time.h> with <sys/select.h>])
8508 ])dnl
8509 dnl ---------------------------------------------------------------------------
8510 dnl CF_TOP_BUILDDIR version: 2 updated: 2013/07/27 17:38:32
8511 dnl ---------------
8512 dnl Define a top_builddir symbol, for applications that need an absolute path.
8513 AC_DEFUN([CF_TOP_BUILDDIR],
8514 [
8515 top_builddir=ifelse($1,,`pwd`,$1)
8516 AC_SUBST(top_builddir)
8517 ])dnl
8518 dnl ---------------------------------------------------------------------------
8519 dnl CF_TRY_PKG_CONFIG version: 6 updated: 2020/12/31 10:54:15
8520 dnl -----------------
8521 dnl This is a simple wrapper to use for pkg-config, for libraries which may be
8522 dnl available in that form.
8523 dnl
8524 dnl $1 = package name, which may be a shell variable
8525 dnl $2 = extra logic to use, if any, after updating CFLAGS and LIBS
8526 dnl $3 = logic to use if pkg-config does not have the package
8527 AC_DEFUN([CF_TRY_PKG_CONFIG],[
8528 AC_REQUIRE([CF_PKG_CONFIG])
8529
8530 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$1"; then
8531         CF_VERBOSE(found package $1)
8532         cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$1" 2>/dev/null`"
8533         cf_pkgconfig_libs="`$PKG_CONFIG --libs   "$1" 2>/dev/null`"
8534         CF_VERBOSE(package $1 CFLAGS: $cf_pkgconfig_incs)
8535         CF_VERBOSE(package $1 LIBS: $cf_pkgconfig_libs)
8536         CF_ADD_CFLAGS($cf_pkgconfig_incs)
8537         CF_ADD_LIBS($cf_pkgconfig_libs)
8538         ifelse([$2],,:,[$2])
8539 else
8540         cf_pkgconfig_incs=
8541         cf_pkgconfig_libs=
8542         ifelse([$3],,:,[$3])
8543 fi
8544 ])
8545 dnl ---------------------------------------------------------------------------
8546 dnl CF_TRY_XOPEN_SOURCE version: 4 updated: 2022/09/10 15:16:16
8547 dnl -------------------
8548 dnl If _XOPEN_SOURCE is not defined in the compile environment, check if we
8549 dnl can define it successfully.
8550 AC_DEFUN([CF_TRY_XOPEN_SOURCE],[
8551 AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
8552         AC_TRY_COMPILE(CF__XOPEN_SOURCE_HEAD,CF__XOPEN_SOURCE_BODY,
8553         [cf_cv_xopen_source=no],
8554         [cf_save="$CPPFLAGS"
8555          CF_APPEND_TEXT(CPPFLAGS,-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE)
8556          AC_TRY_COMPILE(CF__XOPEN_SOURCE_HEAD,CF__XOPEN_SOURCE_BODY,
8557                 [cf_cv_xopen_source=no],
8558                 [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
8559                 CPPFLAGS="$cf_save"
8560         ])
8561 ])
8562
8563 if test "$cf_cv_xopen_source" != no ; then
8564         CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
8565         CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
8566         cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
8567         CF_APPEND_CFLAGS($cf_temp_xopen_source)
8568 fi
8569 ])
8570 dnl ---------------------------------------------------------------------------
8571 dnl CF_TYPEOF_CHTYPE version: 11 updated: 2023/01/05 17:57:59
8572 dnl ----------------
8573 dnl Determine the type we should use for chtype (and attr_t, which is treated
8574 dnl as the same thing).  We want around 32 bits, so on most machines want a
8575 dnl long, but on newer 64-bit machines, probably want an int.  If we're using
8576 dnl wide characters, we have to have a type compatible with that, as well.
8577 AC_DEFUN([CF_TYPEOF_CHTYPE],
8578 [
8579 AC_MSG_CHECKING([for type of chtype])
8580 AC_CACHE_VAL(cf_cv_typeof_chtype,[
8581                 AC_TRY_RUN([
8582 $ac_includes_default
8583 #define WANT_BITS 31
8584 int main(void)
8585 {
8586         FILE *fp = fopen("cf_test.out", "w");
8587         if (fp != 0) {
8588                 char *result = "long";
8589                 if (sizeof(unsigned long) > sizeof(unsigned int)) {
8590                         int n;
8591                         unsigned int x, y;
8592                         for (n = 0; n < WANT_BITS; n++) {
8593                                 x = (1 << n);
8594                                 y = (x >> n);
8595                                 if (y != 1 || x == 0) {
8596                                         x = 0;
8597                                         break;
8598                                 }
8599                         }
8600                         /*
8601                          * If x is nonzero, an int is big enough for the bits
8602                          * that we want.
8603                          */
8604                         result = (x != 0) ? "int" : "long";
8605                 }
8606                 fputs(result, fp);
8607                 fclose(fp);
8608         }
8609         ${cf_cv_main_return:-return}(0);
8610 }
8611                 ],
8612                 [cf_cv_typeof_chtype=`cat cf_test.out`],
8613                 [cf_cv_typeof_chtype=long],
8614                 [cf_cv_typeof_chtype=long])
8615                 rm -f cf_test.out
8616         ])
8617 AC_MSG_RESULT($cf_cv_typeof_chtype)
8618
8619 AC_SUBST(cf_cv_typeof_chtype)
8620 AC_DEFINE_UNQUOTED(TYPEOF_CHTYPE,$cf_cv_typeof_chtype,[Define to actual type if needed for chtype])
8621 ])dnl
8622 dnl ---------------------------------------------------------------------------
8623 dnl CF_TYPE_SIGACTION version: 5 updated: 2023/12/03 09:21:34
8624 dnl -----------------
8625 dnl
8626 AC_DEFUN([CF_TYPE_SIGACTION],
8627 [
8628 AC_MSG_CHECKING([for type sigaction_t])
8629 AC_CACHE_VAL(cf_cv_type_sigaction,[
8630         AC_TRY_COMPILE([
8631 #include <signal.h>],
8632                 [sigaction_t x; (void)x],
8633                 [cf_cv_type_sigaction=yes],
8634                 [cf_cv_type_sigaction=no])])
8635 AC_MSG_RESULT($cf_cv_type_sigaction)
8636 test "$cf_cv_type_sigaction" = yes && AC_DEFINE(HAVE_TYPE_SIGACTION,1,[Define to 1 if we have the sigaction_t type])
8637 ])dnl
8638 dnl ---------------------------------------------------------------------------
8639 dnl CF_UNSIGNED_LITERALS version: 3 updated: 2023/12/03 10:02:17
8640 dnl --------------------
8641 dnl Test if the compiler supports 'U' and 'L' suffixes.  Only old compilers
8642 dnl won't, but they're still there.
8643 AC_DEFUN([CF_UNSIGNED_LITERALS],
8644 [
8645 AC_MSG_CHECKING([if unsigned literals are legal])
8646 AC_CACHE_VAL(cf_cv_unsigned_literals,[
8647         AC_TRY_COMPILE([],[long x = 1L + 1UL + 1U + 1; (void)x],
8648                 [cf_cv_unsigned_literals=yes],
8649                 [cf_cv_unsigned_literals=no])
8650         ])
8651 AC_MSG_RESULT($cf_cv_unsigned_literals)
8652 ])dnl
8653 dnl ---------------------------------------------------------------------------
8654 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
8655 dnl --------
8656 dnl Make an uppercase version of a variable
8657 dnl $1=uppercase($2)
8658 AC_DEFUN([CF_UPPER],
8659 [
8660 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
8661 ])dnl
8662 dnl ---------------------------------------------------------------------------
8663 dnl CF_UTF8_LIB version: 10 updated: 2023/01/11 04:05:23
8664 dnl -----------
8665 dnl Check for multibyte support, and if not found, utf8 compatibility library
8666 AC_DEFUN([CF_UTF8_LIB],
8667 [
8668 AC_HAVE_HEADERS(wchar.h)
8669 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
8670         cf_save_LIBS="$LIBS"
8671         AC_TRY_LINK([
8672 $ac_includes_default
8673 #ifdef HAVE_WCHAR_H
8674 #include <wchar.h>
8675 #endif
8676 ],[putwc(0,0);],
8677         [cf_cv_utf8_lib=yes],
8678         [CF_FIND_LINKAGE([
8679 #include <libutf8.h>],[putwc(0,0);],utf8,
8680                 [cf_cv_utf8_lib=add-on],
8681                 [cf_cv_utf8_lib=no])
8682 ])])
8683
8684 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
8685 # ncurses/ncursesw:
8686 if test "$cf_cv_utf8_lib" = "add-on" ; then
8687         AC_DEFINE(HAVE_LIBUTF8_H,1,[Define to 1 if we should include libutf8.h])
8688         CF_ADD_INCDIR($cf_cv_header_path_utf8)
8689         CF_ADD_LIBDIR($cf_cv_library_path_utf8)
8690         CF_ADD_LIBS($cf_cv_library_file_utf8)
8691 fi
8692 ])dnl
8693 dnl ---------------------------------------------------------------------------
8694 dnl CF_VA_COPY version: 6 updated: 2018/12/04 18:14:25
8695 dnl ----------
8696 dnl check for va_copy, part of stdarg.h starting with ISO C 1999.
8697 dnl Also, workaround for glibc's __va_copy, by checking for both.
8698 dnl Finally, try to accommodate pre-ISO C 1999 headers.
8699 AC_DEFUN([CF_VA_COPY],[
8700 AC_CACHE_CHECK(for va_copy, cf_cv_have_va_copy,[
8701 AC_TRY_LINK([
8702 #include <stdarg.h>
8703 ],[
8704         static va_list dst;
8705         static va_list src;
8706         va_copy(dst, src)],
8707         cf_cv_have_va_copy=yes,
8708         cf_cv_have_va_copy=no)])
8709
8710 if test "$cf_cv_have_va_copy" = yes;
8711 then
8712         AC_DEFINE(HAVE_VA_COPY,1,[Define to 1 if we have va_copy])
8713 else # !cf_cv_have_va_copy
8714
8715 AC_CACHE_CHECK(for __va_copy, cf_cv_have___va_copy,[
8716 AC_TRY_LINK([
8717 #include <stdarg.h>
8718 ],[
8719         static va_list dst;
8720         static va_list src;
8721         __va_copy(dst, src)],
8722         cf_cv_have___va_copy=yes,
8723         cf_cv_have___va_copy=no)])
8724
8725 if test "$cf_cv_have___va_copy" = yes
8726 then
8727         AC_DEFINE(HAVE___VA_COPY,1,[Define to 1 if we have __va_copy])
8728 else # !cf_cv_have___va_copy
8729
8730 AC_CACHE_CHECK(for __builtin_va_copy, cf_cv_have___builtin_va_copy,[
8731 AC_TRY_LINK([
8732 #include <stdarg.h>
8733 ],[
8734         static va_list dst;
8735         static va_list src;
8736         __builtin_va_copy(dst, src)],
8737         cf_cv_have___builtin_va_copy=yes,
8738         cf_cv_have___builtin_va_copy=no)])
8739
8740 test "$cf_cv_have___builtin_va_copy" = yes &&
8741         AC_DEFINE(HAVE___BUILTIN_VA_COPY,1,[Define to 1 if we have __builtin_va_copy])
8742
8743 fi # cf_cv_have___va_copy
8744
8745 fi # cf_cv_have_va_copy
8746
8747 case "${cf_cv_have_va_copy}${cf_cv_have___va_copy}${cf_cv_have___builtin_va_copy}" in
8748 (*yes*)
8749         ;;
8750
8751 (*)
8752         AC_CACHE_CHECK(if we can simply copy va_list, cf_cv_pointer_va_list,[
8753 AC_TRY_LINK([
8754 #include <stdarg.h>
8755 ],[
8756         va_list dst;
8757         va_list src;
8758         dst = src],
8759         cf_cv_pointer_va_list=yes,
8760         cf_cv_pointer_va_list=no)])
8761
8762         if test "$cf_cv_pointer_va_list" = no
8763         then
8764                 AC_CACHE_CHECK(if we can copy va_list indirectly, cf_cv_array_va_list,[
8765 AC_TRY_LINK([
8766 #include <stdarg.h>
8767 ],[
8768         va_list dst;
8769         va_list src;
8770         *dst = *src],
8771                         cf_cv_array_va_list=yes,
8772                         cf_cv_array_va_list=no)])
8773                 test "$cf_cv_array_va_list" = yes && AC_DEFINE(ARRAY_VA_LIST,1,[Define to 1 if we can copy va_list indirectly])
8774         fi
8775         ;;
8776 esac
8777 ])
8778 dnl ---------------------------------------------------------------------------
8779 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
8780 dnl ----------
8781 dnl Use AC_VERBOSE w/o the warnings
8782 AC_DEFUN([CF_VERBOSE],
8783 [test -n "$verbose" && echo "   $1" 1>&AC_FD_MSG
8784 CF_MSG_LOG([$1])
8785 ])dnl
8786 dnl ---------------------------------------------------------------------------
8787 dnl CF_VERSION_INFO version: 8 updated: 2021/01/01 13:31:04
8788 dnl ---------------
8789 dnl Define several useful symbols derived from the VERSION file.  A separate
8790 dnl file is preferred to embedding the version numbers in various scripts.
8791 dnl (automake is a textbook-example of why the latter is a bad idea, but there
8792 dnl are others).
8793 dnl
8794 dnl The file contents are:
8795 dnl     libtool-version release-version patch-version
8796 dnl or
8797 dnl     release-version
8798 dnl where
8799 dnl     libtool-version (see ?) consists of 3 integers separated by '.'
8800 dnl     release-version consists of a major version and minor version
8801 dnl             separated by '.', optionally followed by a patch-version
8802 dnl             separated by '-'.  The minor version need not be an
8803 dnl             integer (but it is preferred).
8804 dnl     patch-version is an integer in the form yyyymmdd, so ifdef's and
8805 dnl             scripts can easily compare versions.
8806 dnl
8807 dnl If libtool is used, the first form is required, since CF_WITH_LIBTOOL
8808 dnl simply extracts the first field using 'cut -f1'.
8809 dnl
8810 dnl Optional parameters:
8811 dnl $1 = internal name for package
8812 dnl $2 = external name for package
8813 AC_DEFUN([CF_VERSION_INFO],
8814 [
8815 if test -f "$srcdir/VERSION" ; then
8816         AC_MSG_CHECKING(for package version)
8817
8818         # if there are not enough fields, cut returns the last one...
8819         cf_field1=`sed -e '2,$d' "$srcdir/VERSION" |cut -f1`
8820         cf_field2=`sed -e '2,$d' "$srcdir/VERSION" |cut -f2`
8821         cf_field3=`sed -e '2,$d' "$srcdir/VERSION" |cut -f3`
8822
8823         # this is how CF_BUNDLED_INTL uses $VERSION:
8824         VERSION="$cf_field1"
8825
8826         VERSION_MAJOR=`echo "$cf_field2" | sed -e 's/\..*//'`
8827         test -z "$VERSION_MAJOR" && AC_MSG_ERROR(missing major-version)
8828
8829         VERSION_MINOR=`echo "$cf_field2" | sed -e 's/^[[^.]]*\.//' -e 's/-.*//'`
8830         test -z "$VERSION_MINOR" && AC_MSG_ERROR(missing minor-version)
8831
8832         AC_MSG_RESULT(${VERSION_MAJOR}.${VERSION_MINOR})
8833
8834         AC_MSG_CHECKING(for package patch date)
8835         VERSION_PATCH=`echo "$cf_field3" | sed -e 's/^[[^-]]*-//'`
8836         case .$VERSION_PATCH in
8837         (.)
8838                 AC_MSG_ERROR(missing patch-date $VERSION_PATCH)
8839                 ;;
8840         (.[[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]])
8841                 ;;
8842         (*)
8843                 AC_MSG_ERROR(illegal patch-date $VERSION_PATCH)
8844                 ;;
8845         esac
8846         AC_MSG_RESULT($VERSION_PATCH)
8847 else
8848         AC_MSG_ERROR(did not find $srcdir/VERSION)
8849 fi
8850
8851 # show the actual data that we have for versions:
8852 CF_VERBOSE(ABI VERSION $VERSION)
8853 CF_VERBOSE(VERSION_MAJOR $VERSION_MAJOR)
8854 CF_VERBOSE(VERSION_MINOR $VERSION_MINOR)
8855 CF_VERBOSE(VERSION_PATCH $VERSION_PATCH)
8856
8857 AC_SUBST(VERSION)
8858 AC_SUBST(VERSION_MAJOR)
8859 AC_SUBST(VERSION_MINOR)
8860 AC_SUBST(VERSION_PATCH)
8861
8862 dnl if a package name is given, define its corresponding version info.  We
8863 dnl need the package name to ensure that the defined symbols are unique.
8864 ifelse($1,,,[
8865         cf_PACKAGE=$1
8866         PACKAGE=ifelse($2,,$1,$2)
8867         AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",[Define to the package-name])
8868         AC_SUBST(PACKAGE)
8869         CF_UPPER(cf_PACKAGE,$cf_PACKAGE)
8870         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_VERSION,"${VERSION_MAJOR}.${VERSION_MINOR}")
8871         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_PATCHDATE,${VERSION_PATCH})
8872 ])
8873 ])dnl
8874 dnl ---------------------------------------------------------------------------
8875 dnl CF_WCHAR_TYPE version: 5 updated: 2023/12/03 09:21:34
8876 dnl -------------
8877 dnl Check if type wide-character type $1 is declared, and if so, which header
8878 dnl file is needed.  The second parameter is used to set a shell variable when
8879 dnl the type is not found.  The first parameter sets a shell variable for the
8880 dnl opposite sense.
8881 AC_DEFUN([CF_WCHAR_TYPE],
8882 [
8883 # This is needed on Tru64 5.0 to declare $1
8884 AC_CACHE_CHECK(if we must include wchar.h to declare $1,cf_cv_$1,[
8885 AC_TRY_COMPILE([
8886 #include <stdlib.h>
8887 #include <stdarg.h>
8888 #include <stdio.h>
8889 #ifdef HAVE_LIBUTF8_H
8890 #include <libutf8.h>
8891 #endif],
8892         [$1 state; (void)state],
8893         [cf_cv_$1=no],
8894         [AC_TRY_COMPILE([
8895 #include <stdlib.h>
8896 #include <stdarg.h>
8897 #include <stdio.h>
8898 #include <wchar.h>
8899 #ifdef HAVE_LIBUTF8_H
8900 #include <libutf8.h>
8901 #endif],
8902         [$1 value; (void) value],
8903         [cf_cv_$1=yes],
8904         [cf_cv_$1=unknown])])])
8905
8906 if test "$cf_cv_$1" = yes ; then
8907         AC_DEFINE(NEED_WCHAR_H,1,[Define to 1 if we must include wchar.h])
8908         NEED_WCHAR_H=1
8909 fi
8910
8911 ifelse([$2],,,[
8912 # if we do not find $1 in either place, use substitution to provide a fallback.
8913 if test "$cf_cv_$1" = unknown ; then
8914         $2=1
8915 fi
8916 ])
8917 ifelse($3,,,[
8918 # if we find $1 in either place, use substitution to provide a fallback.
8919 if test "$cf_cv_$1" != unknown ; then
8920         $3=1
8921 fi
8922 ])
8923 ])dnl
8924 dnl ---------------------------------------------------------------------------
8925 dnl CF_WEAK_SYMBOLS version: 1 updated: 2008/08/16 19:18:06
8926 dnl ---------------
8927 dnl Check for compiler-support for weak symbols.
8928 dnl This works with "recent" gcc.
8929 AC_DEFUN([CF_WEAK_SYMBOLS],[
8930 AC_CACHE_CHECK(if $CC supports weak symbols,cf_cv_weak_symbols,[
8931
8932 AC_TRY_COMPILE([
8933 #include <stdio.h>],
8934 [
8935 #if defined(__GNUC__)
8936 #  if defined __USE_ISOC99
8937 #    define _cat_pragma(exp)    _Pragma(#exp)
8938 #    define _weak_pragma(exp)   _cat_pragma(weak name)
8939 #  else
8940 #    define _weak_pragma(exp)
8941 #  endif
8942 #  define _declare(name)        __extension__ extern __typeof__(name) name
8943 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
8944 #endif
8945
8946 weak_symbol(fopen);
8947 ],[cf_cv_weak_symbols=yes],[cf_cv_weak_symbols=no])
8948 ])
8949 ])dnl
8950 dnl ---------------------------------------------------------------------------
8951 dnl CF_WITH_ABI_ALTERED version: 1 updated: 2023/01/07 16:32:06
8952 dnl -------------------
8953 dnl Provide a way to override the displayed ABI version, e.g., in filenames.
8954 dnl Check this option after using the ABI version in configuration decisions.
8955 AC_DEFUN([CF_WITH_ABI_ALTERED],[
8956 AC_REQUIRE([CF_WITH_ABI_VERSION])
8957 AC_REQUIRE([CF_ABI_DEFAULTS])
8958 AC_ARG_WITH(abi-altered,
8959 [  --with-abi-altered=XXX  override visible ABI version, for packaging],[
8960         CF_NUMBER_SYNTAX($withval,ABI altered)
8961         if test "$cf_cv_abi_version" != "$withval"
8962         then
8963                 AC_MSG_WARN(altering visible ABI from $cf_cv_abi_version to $withval)
8964                 cf_cv_abi_version=$withval
8965         fi
8966 ])dnl
8967 ])dnl
8968 dnl ---------------------------------------------------------------------------
8969 dnl CF_WITH_ABI_VERSION version: 5 updated: 2023/01/07 16:32:06
8970 dnl -------------------
8971 dnl Allow library's ABI to be overridden.  Generally this happens when a
8972 dnl packager has incremented the ABI past that used in the original package,
8973 dnl and wishes to keep doing this.
8974 dnl
8975 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
8976 dnl symbol.
8977 AC_DEFUN([CF_WITH_ABI_VERSION],[
8978 test -z "$cf_cv_abi_version" && cf_cv_abi_version=0
8979 AC_ARG_WITH(abi-version,
8980 [  --with-abi-version=XXX  override derived ABI version],[
8981         if test "x$cf_cv_abi_version" != "x$withval"
8982         then
8983                 AC_MSG_WARN(overriding ABI version $cf_cv_abi_version to $withval)
8984                 case "$cf_cv_rel_version" in
8985                 (5.*)
8986                         cf_cv_rel_version=$withval.0
8987                         ;;
8988                 (6.*)
8989                         cf_cv_rel_version=$withval.9    # FIXME: should be 10 as of 6.0 release
8990                         ;;
8991                 esac
8992         fi
8993         cf_cv_abi_version=$withval])
8994         CF_NUMBER_SYNTAX($cf_cv_abi_version,ABI version)
8995 ifelse($1,,,[
8996 $1_ABI=$cf_cv_abi_version
8997 ])
8998 cf_cv_abi_default=$cf_cv_abi_version
8999 ])dnl
9000 dnl ---------------------------------------------------------------------------
9001 dnl CF_WITH_ADA_COMPILER version: 3 updated: 2023/10/28 11:59:01
9002 dnl --------------------
9003 dnl Command-line option to specify the Ada95 compiler.
9004 AC_DEFUN([CF_WITH_ADA_COMPILER],[
9005 AC_MSG_CHECKING(for Ada95 compiler)
9006 AC_ARG_WITH(ada-compiler,
9007         [[  --with-ada-compiler[=CMD] use CMD as Ada95 compiler (default: gnatmake)]],
9008         [cf_ada_compiler=$withval],
9009         [cf_ada_compiler=gnatmake])
9010 AC_SUBST(cf_ada_compiler)
9011 AC_MSG_RESULT($cf_ada_compiler)
9012 ])dnl
9013 dnl ---------------------------------------------------------------------------
9014 dnl CF_WITH_ADA_INCLUDE version: 3 updated: 2023/10/28 11:59:01
9015 dnl -------------------
9016 dnl Command-line option to specify where Ada includes will install.
9017 AC_DEFUN([CF_WITH_ADA_INCLUDE],[
9018 AC_MSG_CHECKING(for Ada95 include directory)
9019 CF_WITH_PATH(ada-include,
9020    [  --with-ada-include=DIR  find Ada95 includes in DIR],
9021    ADA_INCLUDE,
9022    PREFIX/share/ada/adainclude,
9023    [$]prefix/share/ada/adainclude)
9024 AC_SUBST(ADA_INCLUDE)
9025 AC_MSG_RESULT($ADA_INCLUDE)
9026 ])dnl
9027 dnl ---------------------------------------------------------------------------
9028 dnl CF_WITH_ADA_LIBNAME version: 3 updated: 2023/11/22 20:48:30
9029 dnl -------------------
9030 dnl CF_WITH_ADA_LIBNAME
9031 dnl -------------------
9032 dnl Command-line option to specify how to name the resulting Ada library.
9033 dnl $1 = default value
9034 AC_DEFUN([CF_WITH_ADA_LIBNAME],[
9035 AC_MSG_CHECKING(for Ada95 curses library name)
9036 AC_ARG_WITH(ada-libname,
9037    [[  --with-ada-libname[=XXX]  use XXX as Ada95 library name]],
9038    ADA_LIBNAME=[$]withval,
9039    ADA_LIBNAME=$1)
9040 case "x$ADA_LIBNAME" in
9041 (x|xyes|xno)
9042         ADA_LIBNAME=$1
9043         ;;
9044 esac
9045 AC_SUBST(ADA_LIBNAME)
9046 AC_MSG_RESULT($ADA_LIBNAME)
9047 ])dnl
9048 dnl ---------------------------------------------------------------------------
9049 dnl CF_WITH_ADA_OBJECTS version: 3 updated: 2023/10/28 11:59:01
9050 dnl -------------------
9051 dnl Command-line option to specify where Ada objects will install.
9052 AC_DEFUN([CF_WITH_ADA_OBJECTS],[
9053 AC_MSG_CHECKING(for Ada95 object directory)
9054 CF_WITH_PATH(ada-objects,
9055    [  --with-ada-objects=DIR  find Ada95 objects in DIR],
9056    ADA_OBJECTS,
9057    PREFIX/lib/ada/adalib,
9058    [$]prefix/lib/ada/adalib)
9059 AC_SUBST(ADA_OBJECTS)
9060 AC_MSG_RESULT($ADA_OBJECTS)
9061 ])dnl
9062 dnl ---------------------------------------------------------------------------
9063 dnl CF_WITH_ADA_SHAREDLIB version: 6 updated: 2023/10/28 11:59:01
9064 dnl ---------------------
9065 dnl Command-line option to specify if an Ada95 shared library should be built,
9066 dnl and optionally what its soname should be.
9067 AC_DEFUN([CF_WITH_ADA_SHAREDLIB],[
9068 AC_REQUIRE([CF_GNAT_PROJECTS])
9069 AC_MSG_CHECKING(whether to build an Ada95 shared library)
9070 AC_ARG_WITH(ada-sharedlib,
9071         [  --with-ada-sharedlib    build Ada95 shared library; requires GNAT project support],
9072         [with_ada_sharedlib=$withval],
9073         [with_ada_sharedlib=no])
9074 cf_ada_sharedlib_warn=no
9075
9076 if test "x$with_ada_sharedlib" != xno
9077 then
9078         if test "x$cf_gnat_projects" != xyes
9079         then
9080                 with_ada_sharedlib=no
9081                 cf_ada_sharedlib_warn=yes
9082         fi
9083 fi
9084
9085 AC_MSG_RESULT($with_ada_sharedlib)
9086 if test "x$cf_ada_sharedlib_warn" != xno
9087 then
9088         AC_MSG_WARN(disabling Ada95 shared library since GNAT projects are not supported)
9089 fi
9090
9091 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
9092 MAKE_ADA_SHAREDLIB="#"
9093
9094 if test "x$with_ada_sharedlib" != xno
9095 then
9096         MAKE_ADA_SHAREDLIB=
9097         if test "x$with_ada_sharedlib" != xyes
9098         then
9099                 ADA_SHAREDLIB="$with_ada_sharedlib"
9100         fi
9101 fi
9102
9103 AC_SUBST(ADA_SHAREDLIB)
9104 AC_SUBST(MAKE_ADA_SHAREDLIB)
9105 ])dnl
9106 dnl ---------------------------------------------------------------------------
9107 dnl CF_WITH_DBMALLOC version: 7 updated: 2010/06/21 17:26:47
9108 dnl ----------------
9109 dnl Configure-option for dbmalloc.  The optional parameter is used to override
9110 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
9111 AC_DEFUN([CF_WITH_DBMALLOC],[
9112 CF_NO_LEAKS_OPTION(dbmalloc,
9113         [  --with-dbmalloc         test: use Conor Cahill's dbmalloc library],
9114         [USE_DBMALLOC])
9115
9116 if test "$with_dbmalloc" = yes ; then
9117         AC_CHECK_HEADER(dbmalloc.h,
9118                 [AC_CHECK_LIB(dbmalloc,[debug_malloc]ifelse([$1],,[],[,$1]))])
9119 fi
9120 ])dnl
9121 dnl ---------------------------------------------------------------------------
9122 dnl CF_WITH_DMALLOC version: 7 updated: 2010/06/21 17:26:47
9123 dnl ---------------
9124 dnl Configure-option for dmalloc.  The optional parameter is used to override
9125 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
9126 AC_DEFUN([CF_WITH_DMALLOC],[
9127 CF_NO_LEAKS_OPTION(dmalloc,
9128         [  --with-dmalloc          test: use Gray Watson's dmalloc library],
9129         [USE_DMALLOC])
9130
9131 if test "$with_dmalloc" = yes ; then
9132         AC_CHECK_HEADER(dmalloc.h,
9133                 [AC_CHECK_LIB(dmalloc,[dmalloc_debug]ifelse([$1],,[],[,$1]))])
9134 fi
9135 ])dnl
9136 dnl ---------------------------------------------------------------------------
9137 dnl CF_WITH_EXPORT_SYMS version: 5 updated: 2023/11/22 20:48:30
9138 dnl -------------------
9139 dnl Use this with libtool to specify the list of symbols that may be exported.
9140 dnl The input file contains one symbol per line; comments work with "#".
9141 dnl
9142 dnl $1 = basename of the ".sym" file (default $PACKAGE)
9143 AC_DEFUN([CF_WITH_EXPORT_SYMS],
9144 [
9145 AC_MSG_CHECKING(if exported-symbols file should be used)
9146 AC_ARG_WITH(export-syms,
9147         [[  --with-export-syms[=SYM-FILE] limit symbols exported by libtool to those listed in SYM-FILE]],
9148         [with_export_syms=$withval],
9149         [with_export_syms=no])
9150 if test "x$with_export_syms" = xyes
9151 then
9152         with_export_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).sym'
9153         AC_SUBST(PACKAGE)
9154 fi
9155 AC_MSG_RESULT($with_export_syms)
9156 if test "x$with_export_syms" != xno
9157 then
9158         EXPORT_SYMS="-export-symbols $with_export_syms"
9159         AC_SUBST(EXPORT_SYMS)
9160 fi
9161 ])dnl
9162 dnl ---------------------------------------------------------------------------
9163 dnl CF_WITH_GPM version: 10 updated: 2017/04/29 18:32:18
9164 dnl -----------
9165 dnl
9166 dnl The option parameter (if neither yes/no) is assumed to be the name of
9167 dnl the gpm library, e.g., for dynamic loading.
9168 AC_DEFUN([CF_WITH_GPM],
9169 [
9170 AC_MSG_CHECKING(if you want to link with the GPM mouse library)
9171 AC_ARG_WITH(gpm,
9172         [  --with-gpm              use Alessandro Rubini's GPM library],
9173         [with_gpm=$withval],
9174         [with_gpm=maybe])
9175 AC_MSG_RESULT($with_gpm)
9176
9177 if test "$with_gpm" != no ; then
9178         AC_CHECK_HEADER(gpm.h,[
9179                 AC_DEFINE(HAVE_GPM_H,1,[Define to 1 if we have gpm.h header])
9180                 if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
9181                         CF_VERBOSE(assuming we really have GPM library)
9182                         AC_DEFINE(HAVE_LIBGPM,1,[Define to 1 if we have the gpm library])
9183                         with_gpm=yes
9184                 else
9185                         AC_CHECK_LIB(gpm,Gpm_Open,[with_gpm=yes],[
9186                                 if test "$with_gpm" = maybe; then
9187                                         AC_MSG_WARN(Cannot link with GPM library)
9188                                         with_gpm=no
9189                                 else
9190                                         AC_MSG_ERROR(Cannot link with GPM library)
9191                                 fi
9192                         ])
9193                 fi
9194         ],[
9195                 test "$with_gpm" != maybe && AC_MSG_WARN(Cannot find GPM header)
9196                 with_gpm=no
9197         ])
9198 fi
9199 ])
9200 dnl ---------------------------------------------------------------------------
9201 dnl CF_WITH_LIBTOOL version: 36 updated: 2021/01/01 13:31:04
9202 dnl ---------------
9203 dnl Provide a configure option to incorporate libtool.  Define several useful
9204 dnl symbols for the makefile rules.
9205 dnl
9206 dnl The reference to AC_PROG_LIBTOOL does not normally work, since it uses
9207 dnl macros from libtool.m4 which is in the aclocal directory of automake.
9208 dnl Following is a simple script which turns on the AC_PROG_LIBTOOL macro.
9209 dnl But that still does not work properly since the macro is expanded outside
9210 dnl the CF_WITH_LIBTOOL macro:
9211 dnl
9212 dnl     #!/bin/sh
9213 dnl     ACLOCAL=`aclocal --print-ac-dir`
9214 dnl     if test -z "$ACLOCAL" ; then
9215 dnl             echo cannot find aclocal directory
9216 dnl             exit 1
9217 dnl     elif test ! -f $ACLOCAL/libtool.m4 ; then
9218 dnl             echo cannot find libtool.m4 file
9219 dnl             exit 1
9220 dnl     fi
9221 dnl
9222 dnl     LOCAL=aclocal.m4
9223 dnl     ORIG=aclocal.m4.orig
9224 dnl
9225 dnl     trap "mv $ORIG $LOCAL" 0 1 2 3 15
9226 dnl     rm -f $ORIG
9227 dnl     mv $LOCAL $ORIG
9228 dnl
9229 dnl     # sed the LIBTOOL= assignment to omit the current directory?
9230 dnl     sed -e 's/^LIBTOOL=.*/LIBTOOL=${LIBTOOL:-libtool}/' $ACLOCAL/libtool.m4 >>$LOCAL
9231 dnl     cat $ORIG >>$LOCAL
9232 dnl
9233 dnl     autoconf-257 $*
9234 dnl
9235 AC_DEFUN([CF_WITH_LIBTOOL],
9236 [
9237 AC_REQUIRE([CF_DISABLE_LIBTOOL_VERSION])
9238 ifdef([AC_PROG_LIBTOOL],,[
9239 LIBTOOL=
9240 ])
9241 # common library maintenance symbols that are convenient for libtool scripts:
9242 LIB_CREATE='${AR} -cr'
9243 LIB_OBJECT='${OBJECTS}'
9244 LIB_SUFFIX=.a
9245 LIB_PREP="$RANLIB"
9246
9247 # symbols used to prop libtool up to enable it to determine what it should be
9248 # doing:
9249 LIB_CLEAN=
9250 LIB_COMPILE=
9251 LIB_LINK='${CC}'
9252 LIB_INSTALL=
9253 LIB_UNINSTALL=
9254
9255 AC_MSG_CHECKING(if you want to build libraries with libtool)
9256 AC_ARG_WITH(libtool,
9257         [  --with-libtool          generate libraries with libtool],
9258         [with_libtool=$withval],
9259         [with_libtool=no])
9260 AC_MSG_RESULT($with_libtool)
9261 if test "$with_libtool" != "no"; then
9262 ifdef([AC_PROG_LIBTOOL],[
9263         # missing_content_AC_PROG_LIBTOOL{{
9264         AC_PROG_LIBTOOL
9265         # missing_content_AC_PROG_LIBTOOL}}
9266 ],[
9267         if test "$with_libtool" != "yes" ; then
9268                 CF_PATH_SYNTAX(with_libtool)
9269                 LIBTOOL=$with_libtool
9270         else
9271                 AC_CHECK_TOOLS(LIBTOOL,[libtool glibtool],none)
9272                 CF_LIBTOOL_VERSION
9273                 if test -z "$cf_cv_libtool_version" && test "$LIBTOOL" = libtool
9274                 then
9275                         CF_FORGET_TOOL(LIBTOOL)
9276                         AC_CHECK_TOOLS(LIBTOOL,[glibtool],none)
9277                         CF_LIBTOOL_VERSION
9278                 fi
9279         fi
9280         if test -z "$LIBTOOL" ; then
9281                 AC_MSG_ERROR(Cannot find libtool)
9282         fi
9283 ])dnl
9284         LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${libdir} ${LIBTOOL_VERSION} `cut -f1 ${top_srcdir}/VERSION` ${LIBTOOL_OPTS} ${LT_UNDEF} $(LIBS) -o'
9285         LIB_OBJECT='${OBJECTS:.o=.lo}'
9286         LIB_SUFFIX=.la
9287         LIB_CLEAN='${LIBTOOL} --mode=clean'
9288         LIB_COMPILE='${LIBTOOL} --mode=compile'
9289         LIB_LINK='${LIBTOOL} --mode=link ${CC} ${LIBTOOL_OPTS}'
9290         LIB_INSTALL='${LIBTOOL} --mode=install'
9291         LIB_UNINSTALL='${LIBTOOL} --mode=uninstall'
9292         LIB_PREP=:
9293
9294         CF_CHECK_LIBTOOL_VERSION
9295
9296         # special hack to add -no-undefined (which libtool should do for itself)
9297         LT_UNDEF=
9298         case "$cf_cv_system_name" in
9299         (cygwin*|msys*|mingw32*|os2*|uwin*|aix[[4-7]])
9300                 LT_UNDEF=-no-undefined
9301                 ;;
9302         esac
9303         AC_SUBST([LT_UNDEF])
9304
9305         # special hack to add --tag option for C++ compiler
9306         case "$cf_cv_libtool_version" in
9307         (1.[[5-9]]*|[[2-9]].[[0-9.a-z]]*)
9308                 LIBTOOL_CXX="$LIBTOOL --tag=CXX"
9309                 LIBTOOL="$LIBTOOL --tag=CC"
9310                 ;;
9311         (*)
9312                 LIBTOOL_CXX="$LIBTOOL"
9313                 ;;
9314         esac
9315 else
9316         LIBTOOL=""
9317         LIBTOOL_CXX=""
9318 fi
9319
9320 test -z "$LIBTOOL" && ECHO_LT=
9321
9322 AC_SUBST(LIBTOOL)
9323 AC_SUBST(LIBTOOL_CXX)
9324 AC_SUBST(LIBTOOL_OPTS)
9325
9326 AC_SUBST(LIB_CREATE)
9327 AC_SUBST(LIB_OBJECT)
9328 AC_SUBST(LIB_SUFFIX)
9329 AC_SUBST(LIB_PREP)
9330
9331 AC_SUBST(LIB_CLEAN)
9332 AC_SUBST(LIB_COMPILE)
9333 AC_SUBST(LIB_LINK)
9334 AC_SUBST(LIB_INSTALL)
9335 AC_SUBST(LIB_UNINSTALL)
9336
9337 ])dnl
9338 dnl ---------------------------------------------------------------------------
9339 dnl CF_WITH_LIBTOOL_OPTS version: 6 updated: 2023/11/22 20:48:30
9340 dnl --------------------
9341 dnl Allow user to pass additional libtool options into the library creation
9342 dnl and link steps.  The main use for this is to do something like
9343 dnl     ./configure --with-libtool-opts=-static
9344 dnl to get the same behavior as automake-flavored
9345 dnl     ./configure --enable-static
9346 AC_DEFUN([CF_WITH_LIBTOOL_OPTS],[
9347 AC_MSG_CHECKING(for additional libtool options)
9348 AC_ARG_WITH(libtool-opts,
9349         [[  --with-libtool-opts[=XXX] give libtool additional options XXX]],
9350         [with_libtool_opts=$withval],
9351         [with_libtool_opts=no])
9352 AC_MSG_RESULT($with_libtool_opts)
9353
9354 case .$with_libtool_opts in
9355 (.yes|.no|.)
9356         ;;
9357 (*)
9358         LIBTOOL_OPTS="$LIBTOOL_OPTS $with_libtool_opts"
9359         ;;
9360 esac
9361
9362 AC_SUBST(LIBTOOL_OPTS)
9363 ])dnl
9364 dnl ---------------------------------------------------------------------------
9365 dnl CF_WITH_LIB_BASENAME version: 2 updated: 2023/11/22 20:48:30
9366 dnl --------------------
9367 dnl Allow for overriding the basename of a library, i.e., the part to which
9368 dnl prefixes/suffixes are attached.
9369 dnl
9370 dnl $1 = variable to set
9371 dnl $2 = option name
9372 dnl $3 = default basename for library, if omitted use $2
9373 AC_DEFUN([CF_WITH_LIB_BASENAME],
9374 [
9375 AC_MSG_CHECKING(for desired basename for $2 library)
9376 AC_ARG_WITH($2-libname,
9377         [[  --with-$2-libname[=XXX] override ifelse($3,,$2,$3) basename of library]],
9378         [with_lib_basename=$withval],
9379         [with_lib_basename=ifelse($3,,$2,$3)])
9380 $1="$with_lib_basename"
9381
9382 case "x[$]$1" in
9383 (x|xno|xnone|xyes)
9384         $1=ifelse($3,,$2,$3)
9385         ;;
9386 (*)
9387         ;;
9388 esac
9389
9390 AC_MSG_RESULT([$]$1)
9391 AC_SUBST($1)
9392 ])dnl
9393 dnl ---------------------------------------------------------------------------
9394 dnl CF_WITH_LIB_PREFIX version: 2 updated: 2021/01/01 16:53:59
9395 dnl ------------------
9396 dnl Allow the library-prefix to be overridden.  OS/2 EMX originally had no
9397 dnl "lib" prefix, e.g., because it used the dll naming convention.
9398 dnl
9399 dnl $1 = variable to set
9400 AC_DEFUN([CF_WITH_LIB_PREFIX],
9401 [
9402 AC_MSG_CHECKING(if you want to have a library-prefix)
9403 AC_ARG_WITH(lib-prefix,
9404         [  --with-lib-prefix       override library-prefix],
9405         [with_lib_prefix=$withval],
9406         [with_lib_prefix=auto])
9407 AC_MSG_RESULT($with_lib_prefix)
9408
9409 if test "$with_lib_prefix" = auto
9410 then
9411         CF_LIB_PREFIX($1)
9412 elif test "$with_lib_prefix" = no
9413 then
9414         LIB_PREFIX=
9415 else
9416         LIB_PREFIX=$with_lib_prefix
9417 fi
9418 ])dnl
9419 dnl ---------------------------------------------------------------------------
9420 dnl CF_WITH_PATH version: 12 updated: 2021/09/04 06:35:04
9421 dnl ------------
9422 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
9423 dnl defaulting to yes/no.
9424 dnl
9425 dnl $1 = option name
9426 dnl $2 = help-text
9427 dnl $3 = environment variable to set
9428 dnl $4 = default value, shown in the help-message, must be a constant
9429 dnl $5 = default value, if it is an expression & cannot be in the help-message
9430 dnl
9431 AC_DEFUN([CF_WITH_PATH],
9432 [AC_ARG_WITH($1,[$2 ](default: ifelse([$4],,empty,[$4])),,
9433 ifelse([$4],,[withval="${$3}"],[withval="${$3:-ifelse([$5],,[$4],[$5])}"]))dnl
9434 if ifelse([$5],,true,[test -n "$5"]) ; then
9435 CF_PATH_SYNTAX(withval)
9436 fi
9437 eval $3="$withval"
9438 AC_SUBST($3)dnl
9439 ])dnl
9440 dnl ---------------------------------------------------------------------------
9441 dnl CF_WITH_PATHLIST version: 13 updated: 2021/09/04 06:35:04
9442 dnl ----------------
9443 dnl Process an option specifying a list of colon-separated paths.
9444 dnl
9445 dnl $1 = option name
9446 dnl $2 = help-text
9447 dnl $3 = environment variable to set
9448 dnl $4 = default value, shown in the help-message, must be a constant
9449 dnl $5 = default value, if it is an expression & cannot be in the help-message
9450 dnl $6 = flag to tell if we want to define or substitute
9451 dnl
9452 AC_DEFUN([CF_WITH_PATHLIST],[
9453 AC_REQUIRE([CF_PATHSEP])
9454 AC_ARG_WITH($1,[$2 ](default: ifelse($4,,empty,$4)),,
9455 ifelse($4,,[withval=${$3}],[withval=${$3:-ifelse($5,,$4,$5)}]))dnl
9456
9457 IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${PATH_SEPARATOR}"
9458 cf_dst_path=
9459 for cf_src_path in $withval
9460 do
9461   CF_PATH_SYNTAX(cf_src_path)
9462   test -n "$cf_dst_path" && cf_dst_path="${cf_dst_path}$PATH_SEPARATOR"
9463   cf_dst_path="${cf_dst_path}${cf_src_path}"
9464 done
9465 IFS="$ac_save_ifs"
9466
9467 ifelse($6,define,[
9468 # Strip single quotes from the value, e.g., when it was supplied as a literal
9469 # for $4 or $5.
9470 case "$cf_dst_path" in
9471 (\'*)
9472   cf_dst_path="`echo "$cf_dst_path" |sed -e s/\'// -e s/\'\$//`"
9473   ;;
9474 esac
9475 cf_dst_path=`echo "$cf_dst_path" | sed -e 's/\\\\/\\\\\\\\/g'`
9476 ])
9477
9478 # This may use the prefix/exec_prefix symbols which will only yield "NONE"
9479 # so we have to check/work around.  We do prefer the result of "eval"...
9480 eval cf_dst_eval="$cf_dst_path"
9481 case "x$cf_dst_eval" in
9482 (xNONE*)
9483         $3=$cf_dst_path
9484         ;;
9485 (*)
9486         $3="$cf_dst_eval"
9487         ;;
9488 esac
9489 AC_SUBST($3)dnl
9490
9491 ])dnl
9492 dnl ---------------------------------------------------------------------------
9493 dnl CF_WITH_PATH_PROG version: 1 updated: 2019/06/30 19:44:43
9494 dnl -----------------
9495 dnl Check for a given program, like CF_PATH_PROG, but allow override using a
9496 dnl "--with-xxx" option.
9497 dnl
9498 dnl Parameters:
9499 dnl             $1 = environment variable to set/update
9500 dnl             $2 = program name
9501 dnl             $3 = help-text
9502 dnl             $4 = $PATH
9503 AC_DEFUN([CF_WITH_PATH_PROG],[
9504 AC_ARG_WITH($2-path,
9505         [  --with-$2-path=XXX     specify path of $2 ifelse($3,,,$3)],
9506         [AC_MSG_CHECKING(for $2 program ifelse($3,,,$3))
9507                 $1=$withval
9508                 AC_MSG_RESULT([$]$1)
9509                 CF_PATH_SYNTAX($1)
9510         ],
9511         [CF_PATH_PROG($1,$2,,ifelse($4,,,$4))
9512                 if test -z "[$]$1"
9513                 then
9514                         AC_MSG_WARN(no $2 program found ifelse($3,,,$3))
9515                 fi
9516         ])
9517 ])
9518 dnl ---------------------------------------------------------------------------
9519 dnl CF_WITH_PCRE2 version: 6 updated: 2021/08/11 20:35:34
9520 dnl -------------
9521 dnl Add PCRE2 (Perl-compatible regular expressions v2) to the build if it is
9522 dnl available and the user requests it.  Assume the application will otherwise
9523 dnl use the POSIX interface.
9524 dnl
9525 dnl TODO allow $withval to specify package location
9526 AC_DEFUN([CF_WITH_PCRE2],
9527 [
9528 AC_REQUIRE([CF_PKG_CONFIG])
9529
9530 AC_MSG_CHECKING(if you want to use PCRE2 for regular-expressions)
9531 AC_ARG_WITH(pcre2,
9532         [  --with-pcre2            use PCRE2 for regular-expressions])
9533 test -z "$with_pcre2" && with_pcre2=no
9534 AC_MSG_RESULT($with_pcre2)
9535
9536 if test "x$with_pcre2" != xno ; then
9537         cf_with_pcre2_ok=no
9538         for cf_with_pcre2 in libpcre2 libpcre2-posix libpcre
9539         do
9540                 CF_TRY_PKG_CONFIG($cf_with_pcre2,[cf_with_pcre2_ok=yes; break])
9541         done
9542         cf_with_pcre2_ok=yes || AC_MSG_ERROR(Cannot find PCRE2 library)
9543
9544         AC_DEFINE(HAVE_LIB_PCRE2,1,[Define to 1 if we can/should compile with the PCRE2 library])
9545
9546         # if pkgconfig gave no results, look for the libraries directly
9547         case "$LIBS" in
9548         (*pcre2-posix*|*pcreposix*)
9549                 ;;
9550         (*)
9551                 AC_CHECK_LIB(pcre2-posix,regcomp,[
9552                         CF_ADD_LIB(pcre2-posix)],
9553                         [AC_CHECK_LIB(pcreposix,regcomp,[
9554                          CF_ADD_LIB(pcreposix)
9555                         ],[AC_MSG_ERROR(Cannot find PCRE2 POSIX library)])])
9556                 ;;
9557         esac
9558
9559         # either way, check for the library header files
9560         AC_CHECK_HEADERS(pcre2posix.h pcreposix.h)
9561         AC_CHECK_FUNCS(PCRE2regcomp)
9562 fi
9563 ])dnl
9564 dnl ---------------------------------------------------------------------------
9565 dnl CF_WITH_PKG_CONFIG_LIBDIR version: 23 updated: 2023/11/22 20:48:30
9566 dnl -------------------------
9567 dnl Allow the choice of the pkg-config library directory to be overridden.
9568 dnl
9569 dnl pkg-config uses a search-list built from these colon-separated lists of
9570 dnl directories:
9571 dnl a) $PKG_CONFIG_PATH (tested first, added if set)
9572 dnl b) $PKG_CONFIG_LIBDIR (tested second, added if set)
9573 dnl c) builtin-list (added if $PKG_CONFIG_LIBDIR is not set)
9574 dnl
9575 dnl pkgconf (used with some systems such as FreeBSD in place of pkg-config)
9576 dnl optionally ignores $PKG_CONFIG_LIBDIR.  Very old versions of pkg-config,
9577 dnl e.g., Solaris 10 also do not recognize $PKG_CONFIG_LIBDIR.
9578 AC_DEFUN([CF_WITH_PKG_CONFIG_LIBDIR],[
9579
9580 case "$PKG_CONFIG" in
9581 (no|none|yes)
9582         AC_MSG_CHECKING(for pkg-config library directory)
9583         ;;
9584 (*)
9585         AC_MSG_CHECKING(for $PKG_CONFIG library directory)
9586         ;;
9587 esac
9588
9589 # if $PKG_CONFIG_LIBDIR is set, try to use that
9590 if test -n "$PKG_CONFIG_PATH"; then
9591         cf_search_path=`echo "$PKG_CONFIG_PATH" | sed -e 's/:/ /g' -e 's,^[[    ]]*,,' -e 's,[[         ]]*$,,'`
9592 elif test -n "$PKG_CONFIG_LIBDIR"; then
9593         cf_search_path=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/:/ /g' -e 's,^[[  ]]*,,' -e 's,[[         ]]*$,,'`
9594 else
9595         cf_search_path=auto
9596 fi
9597
9598 # if the option is used, let that override.  otherwise default to "libdir"
9599 AC_ARG_WITH(pkg-config-libdir,
9600         [[  --with-pkg-config-libdir[=XXX] use given directory for installing pc-files]],
9601         [cf_search_path=$withval],
9602         [test "x$PKG_CONFIG" != xnone && test -z "$cf_search_path" && cf_search_path=libdir])
9603
9604 case "x$cf_search_path" in
9605 (xlibdir)
9606         PKG_CONFIG_LIBDIR='${libdir}/pkgconfig'
9607         AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
9608         cf_search_path=
9609         ;;
9610 (x)
9611         ;;
9612 (x/*\ *)
9613         PKG_CONFIG_LIBDIR=
9614         ;;
9615 (x/*)
9616         PKG_CONFIG_LIBDIR="$cf_search_path"
9617         AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
9618         cf_search_path=
9619         ;;
9620 (xyes|xauto)
9621         AC_MSG_RESULT(auto)
9622         cf_search_path=
9623         # Look for the library directory using the same prefix as the executable
9624         AC_MSG_CHECKING(for search-list)
9625         if test "x$PKG_CONFIG" != xnone
9626         then
9627                 # works for pkg-config since version 0.24 (2009)
9628                 # works for pkgconf since version 0.8.3 (2012)
9629                 for cf_pkg_program in \
9630                         `echo "$PKG_CONFIG" | sed -e 's,^.*/,,'` \
9631                         pkg-config \
9632                         pkgconf
9633                 do
9634                         cf_search_path=`"$PKG_CONFIG" --variable=pc_path "$cf_pkg_program" 2>/dev/null | tr : ' '`
9635                         test -n "$cf_search_path" && break
9636                 done
9637
9638                 # works for pkg-config since import in 2005 of original 2001 HP code.
9639                 test -z "$cf_search_path" && \
9640                 cf_search_path=`
9641                 "$PKG_CONFIG" --debug --exists no-such-package 2>&1 | $AWK "\
9642 /^Scanning directory (#[1-9][0-9]* )?'.*'$/{ \
9643         sub(\"^[[^']]*'\",\"\"); \
9644         sub(\"'.*\",\"\"); \
9645         printf \" %s\", \\[$]0; } \
9646 { next; } \
9647 "`
9648         fi
9649
9650         AC_MSG_RESULT($cf_search_path)
9651         ;;
9652 (*)
9653         AC_MSG_ERROR(Unexpected option value: $cf_search_path)
9654         ;;
9655 esac
9656
9657 if test -n "$cf_search_path"
9658 then
9659         AC_MSG_CHECKING(for first directory)
9660         cf_pkg_config_path=none
9661         for cf_config in $cf_search_path
9662         do
9663                 if test -d "$cf_config"
9664                 then
9665                         cf_pkg_config_path=$cf_config
9666                         break
9667                 fi
9668         done
9669         AC_MSG_RESULT($cf_pkg_config_path)
9670
9671         if test "x$cf_pkg_config_path" != xnone ; then
9672                 # limit this to the first directory found
9673                 PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
9674         fi
9675
9676         if test -z "$PKG_CONFIG_LIBDIR" && test -n "$cf_search_path"
9677         then
9678                 AC_MSG_CHECKING(for workaround)
9679                 if test "$prefix" = "NONE" ; then
9680                         cf_prefix="$ac_default_prefix"
9681                 else
9682                         cf_prefix="$prefix"
9683                 fi
9684                 eval cf_libdir=$libdir
9685                 cf_libdir=`echo "$cf_libdir" | sed -e "s,^NONE,$cf_prefix,"`
9686                 cf_backup=
9687                 for cf_config in $cf_search_path
9688                 do
9689                         case $cf_config in
9690                         $cf_libdir/pkgconfig)
9691                                 PKG_CONFIG_LIBDIR=$cf_libdir/pkgconfig
9692                                 break
9693                                 ;;
9694                         *)
9695                                 test -z "$cf_backup" && cf_backup=$cf_config
9696                                 ;;
9697                         esac
9698                 done
9699                 test -z "$PKG_CONFIG_LIBDIR" && PKG_CONFIG_LIBDIR=$cf_backup
9700                 AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
9701         fi
9702 fi
9703
9704 AC_SUBST(PKG_CONFIG_LIBDIR)
9705 ])dnl
9706 dnl ---------------------------------------------------------------------------
9707 dnl CF_WITH_PTHREAD version: 7 updated: 2015/04/18 08:56:57
9708 dnl ---------------
9709 dnl Check for POSIX thread library.
9710 AC_DEFUN([CF_WITH_PTHREAD],
9711 [
9712 AC_MSG_CHECKING(if you want to link with the pthread library)
9713 AC_ARG_WITH(pthread,
9714         [  --with-pthread          use POSIX thread library],
9715         [with_pthread=$withval],
9716         [with_pthread=no])
9717 AC_MSG_RESULT($with_pthread)
9718
9719 if test "$with_pthread" != no ; then
9720         AC_CHECK_HEADER(pthread.h,[
9721         AC_DEFINE(HAVE_PTHREADS_H,1,[Define to 1 if we have pthreads.h header])
9722
9723         for cf_lib_pthread in pthread c_r
9724         do
9725             AC_MSG_CHECKING(if we can link with the $cf_lib_pthread library)
9726             cf_save_LIBS="$LIBS"
9727             CF_ADD_LIB($cf_lib_pthread)
9728             AC_TRY_LINK([
9729 #include <pthread.h>
9730 ],[
9731                 int rc = pthread_create(0,0,0,0);
9732                 int r2 = pthread_mutexattr_settype(0, 0);
9733 ],[with_pthread=yes],[with_pthread=no])
9734             LIBS="$cf_save_LIBS"
9735             AC_MSG_RESULT($with_pthread)
9736             test "$with_pthread" = yes && break
9737         done
9738
9739         if test "$with_pthread" = yes ; then
9740             CF_ADD_LIB($cf_lib_pthread)
9741             AC_DEFINE(HAVE_LIBPTHREADS,1,[Define to 1 if we have pthreads library])
9742         else
9743             AC_MSG_ERROR(Cannot link with pthread library)
9744         fi
9745         ])
9746 fi
9747 ])
9748 dnl ---------------------------------------------------------------------------
9749 dnl CF_WITH_REL_VERSION version: 2 updated: 2023/05/06 18:18:18
9750 dnl -------------------
9751 dnl Allow library's release-version to be overridden.  Generally this happens when a
9752 dnl packager has incremented the release-version past that used in the original package,
9753 dnl and wishes to keep doing this.
9754 dnl
9755 dnl $1 is the package name, if any, to derive corresponding {package}_MAJOR
9756 dnl and {package}_MINOR symbols
9757 dnl symbol.
9758 AC_DEFUN([CF_WITH_REL_VERSION],[
9759 test -z "$cf_cv_rel_version" && cf_cv_rel_version=0.0
9760 AC_ARG_WITH(rel-version,
9761 [  --with-rel-version=XXX  override derived release version],
9762 [AC_MSG_WARN(overriding release version $cf_cv_rel_version to $withval)
9763  cf_cv_rel_version=$withval])
9764 ifelse($1,,[
9765  CF_NUMBER_SYNTAX($cf_cv_rel_version,Release version)
9766 ],[
9767  $1_MAJOR=`echo "$cf_cv_rel_version" | sed -e 's/\..*//'`
9768  $1_MINOR=`echo "$cf_cv_rel_version" | sed -e 's/^[[^.]]*//' -e 's/^\.//' -e 's/\..*//'`
9769  test -n "$1_MINOR" || $1_MINOR=0
9770  CF_NUMBER_SYNTAX([$]$1_MAJOR,Release major-version)
9771  CF_NUMBER_SYNTAX([$]$1_MINOR,Release minor-version)
9772 ])
9773 ])dnl
9774 dnl ---------------------------------------------------------------------------
9775 dnl CF_WITH_SYSMOUSE version: 3 updated: 2012/10/06 17:56:13
9776 dnl ----------------
9777 dnl If we can compile with sysmouse, make it available unless it is not wanted.
9778 AC_DEFUN([CF_WITH_SYSMOUSE],[
9779 # not everyone has "test -c"
9780 if test -c /dev/sysmouse 2>/dev/null ; then
9781 AC_MSG_CHECKING(if you want to use sysmouse)
9782 AC_ARG_WITH(sysmouse,
9783         [  --with-sysmouse         use sysmouse (FreeBSD console)],
9784         [cf_with_sysmouse=$withval],
9785         [cf_with_sysmouse=maybe])
9786         if test "$cf_with_sysmouse" != no ; then
9787         AC_TRY_COMPILE([
9788 #include <osreldate.h>
9789 #if (__FreeBSD_version >= 400017)
9790 #include <sys/consio.h>
9791 #include <sys/fbio.h>
9792 #else
9793 #include <machine/console.h>
9794 #endif
9795 ],[
9796         struct mouse_info the_mouse;
9797         ioctl(0, CONS_MOUSECTL, &the_mouse);
9798 ],[cf_with_sysmouse=yes],[cf_with_sysmouse=no])
9799         fi
9800 AC_MSG_RESULT($cf_with_sysmouse)
9801 test "$cf_with_sysmouse" = yes && AC_DEFINE(USE_SYSMOUSE,1,[Define to 1 if we can/should use the sysmouse interface])
9802 fi
9803 ])dnl
9804 dnl ---------------------------------------------------------------------------
9805 dnl CF_WITH_SYSTYPE version: 1 updated: 2013/01/26 16:26:12
9806 dnl ---------------
9807 dnl For testing, override the derived host system-type which is used to decide
9808 dnl things such as the linker commands used to build shared libraries.  This is
9809 dnl normally chosen automatically based on the type of system which you are
9810 dnl building on.  We use it for testing the configure script.
9811 dnl
9812 dnl This is different from the --host option: it is used only for testing parts
9813 dnl of the configure script which would not be reachable with --host since that
9814 dnl relies on the build environment being real, rather than mocked up.
9815 AC_DEFUN([CF_WITH_SYSTYPE],[
9816 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
9817 AC_ARG_WITH(system-type,
9818         [  --with-system-type=XXX  test: override derived host system-type],
9819 [AC_MSG_WARN(overriding system type to $withval)
9820         cf_cv_system_name=$withval
9821         host_os=$withval
9822 ])
9823 ])dnl
9824 dnl ---------------------------------------------------------------------------
9825 dnl CF_WITH_TYPE version: 2 updated: 2023/11/25 16:11:47
9826 dnl ------------
9827 dnl Accept a TYPE for substitution:
9828 dnl $1 = name of type
9829 dnl $2 = help/usage message
9830 dnl $3 = symbol to set
9831 dnl $4 = default value
9832 AC_DEFUN([CF_WITH_TYPE],[
9833 AC_MSG_CHECKING(for type of $1)
9834 AC_ARG_WITH([$1], [$2],
9835         [$3="$withval"],
9836         [$3=$4])
9837 AC_MSG_RESULT([$]$3)
9838 case x[$]$3 in
9839 (x|xyes|xno)
9840         AC_MSG_ERROR(expected a type name for $1)
9841         ;;
9842 esac
9843 AC_SUBST($3)
9844 ])dnl
9845 dnl ---------------------------------------------------------------------------
9846 dnl CF_WITH_VALGRIND version: 1 updated: 2006/12/14 18:00:21
9847 dnl ----------------
9848 AC_DEFUN([CF_WITH_VALGRIND],[
9849 CF_NO_LEAKS_OPTION(valgrind,
9850         [  --with-valgrind         test: use valgrind],
9851         [USE_VALGRIND])
9852 ])dnl
9853 dnl ---------------------------------------------------------------------------
9854 dnl CF_WITH_VERSIONED_SYMS version: 13 updated: 2023/12/03 09:24:04
9855 dnl ----------------------
9856 dnl Use this when building shared library with ELF, to markup symbols with the
9857 dnl version identifier from the given input file.  Generally that identifier is
9858 dnl the same as the SONAME at which the symbol was first introduced.
9859 dnl
9860 dnl $1 = basename of the ".map" file (default $PACKAGE)
9861 AC_DEFUN([CF_WITH_VERSIONED_SYMS],
9862 [AC_REQUIRE([AC_PROG_FGREP])dnl
9863 AC_REQUIRE([AC_PROG_EGREP])dnl
9864
9865 AC_MSG_CHECKING(if versioned-symbols file should be used)
9866 AC_ARG_WITH(versioned-syms,
9867         [[  --with-versioned-syms[=MAP-FILE] version ELF shared library symbols per MAP-FILE]],
9868         [with_versioned_syms=$withval],
9869         [with_versioned_syms=no])
9870 case "x$with_versioned_syms" in
9871 (xyes)
9872         with_versioned_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).map'
9873         AC_SUBST(PACKAGE)
9874         ;;
9875 (xno)
9876         ;;
9877 (x/*)
9878         test -f "$with_versioned_syms" || AC_MSG_ERROR(expected a filename: $with_versioned_syms)
9879         ;;
9880 (*)
9881         test -f "$with_versioned_syms" || AC_MSG_ERROR(expected a filename: $with_versioned_syms)
9882         with_versioned_syms=`pwd`/"$with_versioned_syms"
9883         ;;
9884 esac
9885 AC_MSG_RESULT($with_versioned_syms)
9886
9887 RESULTING_SYMS=
9888 VERSIONED_SYMS=
9889 WILDCARD_SYMS=
9890
9891 if test "x$with_versioned_syms" != xno
9892 then
9893         RESULTING_SYMS=$with_versioned_syms
9894         case "x$MK_SHARED_LIB" in
9895         (*-Wl,*)
9896                 VERSIONED_SYMS="-Wl,--version-script,\${RESULTING_SYMS}"
9897                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-Wl,%\\[$]{VERSIONED_SYMS} -Wl,%"`
9898                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
9899                 ;;
9900         (*-dy\ *)
9901                 VERSIONED_SYMS="-Wl,-M,\${RESULTING_SYMS}"
9902                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-dy%\\[$]{VERSIONED_SYMS} -dy%"`
9903                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
9904                 ;;
9905         (*)
9906                 AC_MSG_WARN(this system does not support versioned-symbols)
9907                 ;;
9908         esac
9909
9910         # Linux ld can selectively override scope, e.g., of symbols beginning with
9911         # "_" by first declaring some as global, and then using a wildcard to
9912         # declare the others as local.  Some other loaders cannot do this.  Check
9913         # by constructing a (very) simple shared library and inspecting its
9914         # symbols.
9915         if test "x$VERSIONED_SYMS" != "x"
9916         then
9917                 AC_MSG_CHECKING(if wildcards can be used to selectively omit symbols)
9918                 WILDCARD_SYMS=no
9919
9920                 # make sources
9921                 rm -f conftest.*
9922
9923                 cat >conftest.ver <<EOF
9924 module_1.0 {
9925 global:
9926         globalf1;
9927 local:
9928         localf1;
9929 };
9930 module_2.0 {
9931 global:
9932         globalf2;
9933 local:
9934         localf2;
9935         _*;
9936 } module_1.0;
9937 submodule_1.0 {
9938 global:
9939         subglobalf1;
9940         _ismissing;
9941 local:
9942         sublocalf1;
9943 };
9944 submodule_2.0 {
9945 global:
9946         subglobalf2;
9947 local:
9948         sublocalf2;
9949         _*;
9950 } submodule_1.0;
9951 EOF
9952                 cat >conftest.$ac_ext <<EOF
9953 #line __oline__ "configure"
9954 extern int _ismissing(void);    int _ismissing(void)  { return 1; }
9955 extern int _localf1(void);      int _localf1(void)    { return 1; }
9956 extern int _localf2(void);      int _localf2(void)    { return 2; }
9957 extern int globalf1(void);      int globalf1(void)    { return 1; }
9958 extern int globalf2(void);      int globalf2(void)    { return 2; }
9959 extern int _sublocalf1(void);   int _sublocalf1(void) { return 1; }
9960 extern int _sublocalf2(void);   int _sublocalf2(void) { return 2; }
9961 extern int subglobalf1(void);   int subglobalf1(void) { return 1; }
9962 extern int subglobalf2(void);   int subglobalf2(void) { return 2; }
9963 EOF
9964                 cat >conftest.mk <<EOF
9965 CC=${CC}
9966 CFLAGS=${CFLAGS}
9967 CPPFLAGS=${CPPFLAGS}
9968 LDFLAGS=${LDFLAGS}
9969 LIBS=${LIBS}
9970 VERSIONED_SYMS=${VERSIONED_SYMS}
9971 RESULTING_SYMS=conftest.ver
9972 MK_SHARED_LIB=${MK_SHARED_LIB}
9973 conftest.so: conftest.$ac_cv_objext
9974                 \$(MK_SHARED_LIB) conftest.$ac_cv_objext
9975 EOF
9976
9977                 # compile source, make library
9978                 if make -f conftest.mk 2>&AC_FD_CC >/dev/null
9979                 then
9980                         # test for missing symbol in either Data or Text section
9981                         cf_missing="`nm -P conftest.so 2>&AC_FD_CC |${FGREP-fgrep} _ismissing | ${EGREP-egrep} '[[      ]][[DT]][[      ]]'`"
9982                         test -n "$cf_missing" && WILDCARD_SYMS=yes
9983                 fi
9984                 AC_MSG_RESULT($WILDCARD_SYMS)
9985                 rm -f conftest.*
9986         fi
9987 fi
9988 AC_SUBST(RESULTING_SYMS)
9989 AC_SUBST(VERSIONED_SYMS)
9990 AC_SUBST(WILDCARD_SYMS)
9991 ])dnl
9992 dnl ---------------------------------------------------------------------------
9993 dnl CF_WITH_X11_RGB version: 3 updated: 2023/10/28 11:59:01
9994 dnl ---------------
9995 dnl Handle configure option "--with-x11-rgb", setting these shell
9996 dnl variables:
9997 dnl
9998 dnl $RGB_PATH is the option value, used for finding the X11 rgb file.
9999 dnl $no_x11_rgb is a "#" (comment) if "--without-x11-rgb" is given.
10000 dnl
10001 dnl Most Linux's use this:
10002 dnl     /usr/share/X11/rgb.txt
10003 dnl Debian uses this:
10004 dnl     /etc/X11/rgb.txt
10005 dnl DragonFlyBSD ports uses this:
10006 dnl     /usr/pkg/lib/X11/rgb.txt
10007 dnl FreeBSD ports use these:
10008 dnl     /usr/local/lib/X11/rgb.txt
10009 dnl     /usr/local/share/X11/rgb.txt
10010 dnl Mandriva has these:
10011 dnl     /usr/lib/X11/rgb.txt
10012 dnl     /usr/lib64/X11/rgb.txt
10013 dnl NetBSD has these
10014 dnl     /usr/X11R7/lib/X11/rgb.txt
10015 dnl OpenSolaris uses
10016 dnl     32-bit:
10017 dnl     /usr/X11/etc/X11/rgb.txt
10018 dnl     /usr/X11/share/X11/rgb.txt
10019 dnl     /usr/X11/lib/X11/rgb.txt
10020 dnl OSX uses
10021 dnl             /opt/local/share/X11/rgb.txt (MacPorts)
10022 dnl             /opt/X11/share/X11/rgb.txt (non-ports)
10023 dnl     64-bit:
10024 dnl     /usr/X11/etc/X11/rgb.txt
10025 dnl     /usr/X11/share/X11/rgb.txt (perhaps)
10026 dnl     /usr/X11/lib/amd64/X11/rgb.txt
10027 dnl Solaris10 uses (in this order):
10028 dnl     /usr/openwin/lib/X11/rgb.txt
10029 dnl     /usr/X11/lib/X11/rgb.txt
10030 AC_DEFUN([CF_WITH_X11_RGB],[
10031 AC_MSG_CHECKING(for X11 rgb file)
10032 AC_ARG_WITH(x11-rgb,
10033         [  --with-x11-rgb=FILE     obtain X11 color definitions from FILE (default: EPREFIX/lib/X11/rgb.txt)],
10034         [RGB_PATH=$withval],
10035         [RGB_PATH=auto])
10036
10037 if test "x[$]RGB_PATH" = xauto
10038 then
10039         RGB_PATH='${exec_prefix}/lib/X11/rgb.txt'
10040         for cf_path in \
10041                 /opt/local/share/X11/rgb.txt \
10042                 /opt/X11/share/X11/rgb.txt \
10043                 /usr/share/X11/rgb.txt \
10044                 /usr/X11/share/X11/rgb.txt \
10045                 /usr/X11/lib/X11/rgb.txt \
10046                 /usr/lib/X11/rgb.txt \
10047                 /etc/X11/rgb.txt \
10048                 /usr/pkg/lib/X11/rgb.txt \
10049                 /usr/X11R7/lib/X11/rgb.txt \
10050                 /usr/X11R6/lib/X11/rgb.txt \
10051                 /usr/X11R5/lib/X11/rgb.txt \
10052                 /usr/X11R4/lib/X11/rgb.txt \
10053                 /usr/local/lib/X11/rgb.txt \
10054                 /usr/local/share/X11/rgb.txt \
10055                 /usr/lib64/X11/rgb.txt
10056         do
10057                 if test -f "$cf_path" ; then
10058                         RGB_PATH="$cf_path"
10059                         break
10060                 fi
10061         done
10062 else
10063         cf_path=$RGB_PATH
10064         CF_PATH_SYNTAX(cf_path)
10065 fi
10066
10067 AC_MSG_RESULT($RGB_PATH)
10068 AC_SUBST(RGB_PATH)
10069 AC_DEFINE_UNQUOTED(RGB_PATH,"$cf_path",[Define to the full pathname of rgb.txt])
10070
10071 no_x11_rgb=
10072 if test "$RGB_PATH" = no
10073 then
10074         no_x11_rgb="#"
10075 fi
10076 AC_SUBST(no_x11_rgb)
10077 ])dnl
10078 dnl ---------------------------------------------------------------------------
10079 dnl CF_XOPEN_SOURCE version: 67 updated: 2023/09/06 18:55:27
10080 dnl ---------------
10081 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
10082 dnl or adapt to the vendor's definitions to get equivalent functionality,
10083 dnl without losing the common non-POSIX features.
10084 dnl
10085 dnl Parameters:
10086 dnl     $1 is the nominal value for _XOPEN_SOURCE
10087 dnl     $2 is the nominal value for _POSIX_C_SOURCE
10088 dnl
10089 dnl The default case prefers _XOPEN_SOURCE over _POSIX_C_SOURCE if the
10090 dnl implementation predefines it, because X/Open and most implementations agree
10091 dnl that the latter is a legacy or "aligned" value.
10092 dnl
10093 dnl Because _XOPEN_SOURCE is preferred, if defining _POSIX_C_SOURCE turns
10094 dnl that off, then refrain from setting _POSIX_C_SOURCE explicitly.
10095 dnl
10096 dnl References:
10097 dnl https://pubs.opengroup.org/onlinepubs/007904975/functions/xsh_chap02_02.html
10098 dnl https://docs.oracle.com/cd/E19253-01/816-5175/standards-5/index.html
10099 dnl https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
10100 AC_DEFUN([CF_XOPEN_SOURCE],[
10101 AC_REQUIRE([AC_CANONICAL_HOST])
10102 AC_REQUIRE([CF_POSIX_VISIBLE])
10103
10104 if test "$cf_cv_posix_visible" = no; then
10105
10106 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
10107 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
10108 cf_xopen_source=
10109
10110 case "$host_os" in
10111 (aix[[4-7]]*)
10112         cf_xopen_source="-D_ALL_SOURCE"
10113         ;;
10114 (darwin[[0-8]].*)
10115         cf_xopen_source="-D_APPLE_C_SOURCE"
10116         ;;
10117 (darwin*)
10118         cf_xopen_source="-D_DARWIN_C_SOURCE"
10119         cf_XOPEN_SOURCE=
10120         ;;
10121 (freebsd*|dragonfly*|midnightbsd*)
10122         # 5.x headers associate
10123         #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
10124         #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
10125         cf_POSIX_C_SOURCE=200112L
10126         cf_XOPEN_SOURCE=600
10127         cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
10128         ;;
10129 (hpux11*)
10130         cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
10131         ;;
10132 (hpux*)
10133         cf_xopen_source="-D_HPUX_SOURCE"
10134         ;;
10135 (irix[[56]].*)
10136         cf_xopen_source="-D_SGI_SOURCE"
10137         cf_XOPEN_SOURCE=
10138         ;;
10139 (linux*gnu|linux*gnuabi64|linux*gnuabin32|linux*gnueabi|linux*gnueabihf|linux*gnux32|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin|msys|mingw*|linux*uclibc)
10140         CF_GNU_SOURCE($cf_XOPEN_SOURCE)
10141         ;;
10142 (minix*)
10143         cf_xopen_source="-D_NETBSD_SOURCE" # POSIX.1-2001 features are ifdef'd with this...
10144         ;;
10145 (mirbsd*)
10146         # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types
10147         cf_XOPEN_SOURCE=
10148         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
10149         ;;
10150 (netbsd*)
10151         cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
10152         ;;
10153 (openbsd[[6-9]]*)
10154         # OpenBSD 6.x has broken locale support, both compile-time and runtime.
10155         # see https://www.mail-archive.com/bugs@openbsd.org/msg13200.html
10156         # Abusing the conformance level is a workaround.
10157         AC_MSG_WARN(this system does not provide usable locale support)
10158         cf_xopen_source="-D_BSD_SOURCE"
10159         cf_XOPEN_SOURCE=700
10160         ;;
10161 (openbsd[[4-5]]*)
10162         # setting _XOPEN_SOURCE lower than 500 breaks g++ compile with wchar.h, needed for ncursesw
10163         cf_xopen_source="-D_BSD_SOURCE"
10164         cf_XOPEN_SOURCE=600
10165         ;;
10166 (openbsd*)
10167         # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
10168         ;;
10169 (osf[[45]]*)
10170         cf_xopen_source="-D_OSF_SOURCE"
10171         ;;
10172 (nto-qnx*)
10173         cf_xopen_source="-D_QNX_SOURCE"
10174         ;;
10175 (sco*)
10176         # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
10177         ;;
10178 (solaris2.*)
10179         cf_xopen_source="-D__EXTENSIONS__"
10180         cf_cv_xopen_source=broken
10181         ;;
10182 (sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2)
10183         cf_XOPEN_SOURCE=
10184         cf_POSIX_C_SOURCE=
10185         ;;
10186 (*)
10187         CF_TRY_XOPEN_SOURCE
10188         cf_save_xopen_cppflags="$CPPFLAGS"
10189         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
10190         # Some of these niche implementations use copy/paste, double-check...
10191         if test "$cf_cv_xopen_source" = no ; then
10192                 CF_VERBOSE(checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE)
10193                 AC_TRY_COMPILE(CF__XOPEN_SOURCE_HEAD,CF__XOPEN_SOURCE_BODY,,[
10194                         AC_MSG_WARN(_POSIX_C_SOURCE definition is not usable)
10195                         CPPFLAGS="$cf_save_xopen_cppflags"])
10196         fi
10197         ;;
10198 esac
10199
10200 if test -n "$cf_xopen_source" ; then
10201         CF_APPEND_CFLAGS($cf_xopen_source,true)
10202 fi
10203
10204 dnl In anything but the default case, we may have system-specific setting
10205 dnl which is still not guaranteed to provide all of the entrypoints that
10206 dnl _XOPEN_SOURCE would yield.
10207 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
10208         AC_MSG_CHECKING(if _XOPEN_SOURCE really is set)
10209         AC_TRY_COMPILE([#include <stdlib.h>],[
10210 #ifndef _XOPEN_SOURCE
10211 #error _XOPEN_SOURCE is not defined
10212 #endif],
10213         [cf_XOPEN_SOURCE_set=yes],
10214         [cf_XOPEN_SOURCE_set=no])
10215         AC_MSG_RESULT($cf_XOPEN_SOURCE_set)
10216         if test "$cf_XOPEN_SOURCE_set" = yes
10217         then
10218                 AC_TRY_COMPILE([#include <stdlib.h>],[
10219 #if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
10220 #error (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
10221 #endif],
10222                 [cf_XOPEN_SOURCE_set_ok=yes],
10223                 [cf_XOPEN_SOURCE_set_ok=no])
10224                 if test "$cf_XOPEN_SOURCE_set_ok" = no
10225                 then
10226                         AC_MSG_WARN(_XOPEN_SOURCE is lower than requested)
10227                 fi
10228         else
10229                 CF_TRY_XOPEN_SOURCE
10230         fi
10231 fi
10232 fi # cf_cv_posix_visible
10233 ])
10234 dnl ---------------------------------------------------------------------------
10235 dnl CF__SED_TRIMBLANKS version: 1 updated: 2021/01/02 09:31:20
10236 dnl ------------------
10237 dnl Trim something using sed, then trim extra whitespace
10238 dnl $1 = extra parameters, e.g., in CF_STRIP_G_OPT
10239 define([CF__SED_TRIMBLANKS],[sed ifelse($1,,,[$1] )-e 's%[[     ]]% %g' -e 's% [[ ]]*% %g' -e 's%^ %%' -e 's% [$]%%'])dnl
10240 dnl ---------------------------------------------------------------------------
10241 dnl CF__XOPEN_SOURCE_BODY version: 2 updated: 2023/02/18 17:41:25
10242 dnl ---------------------
10243 dnl body of test when test-compiling for _XOPEN_SOURCE check
10244 define([CF__XOPEN_SOURCE_BODY],
10245 [
10246 #ifndef _XOPEN_SOURCE
10247 #error _XOPEN_SOURCE is not defined
10248 #endif
10249 ])
10250 dnl ---------------------------------------------------------------------------
10251 dnl CF__XOPEN_SOURCE_HEAD version: 2 updated: 2023/02/18 17:41:25
10252 dnl ---------------------
10253 dnl headers to include when test-compiling for _XOPEN_SOURCE check
10254 define([CF__XOPEN_SOURCE_HEAD],
10255 [
10256 $ac_includes_default
10257 ])