]> ncurses.scripts.mit.edu Git - ncurses.git/blob - aclocal.m4
ncurses 6.2 - patch 20210313
[ncurses.git] / aclocal.m4
1 dnl***************************************************************************
2 dnl Copyright 2018-2020,2021 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.951 2021/03/06 00:13:35 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: 6 updated: 2021/01/01 16:53:59
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([#include <langinfo.h>],
58         [char* cs = nl_langinfo(CODESET); (void)cs],
59         am_cv_langinfo_codeset=yes,
60         am_cv_langinfo_codeset=no)
61         ])
62         if test "$am_cv_langinfo_codeset" = yes; then
63                 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
64                 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
65         fi
66 ])dnl
67 dnl ---------------------------------------------------------------------------
68 dnl CF_ABI_DEFAULTS version: 2 updated: 2015/06/06 13:49:58
69 dnl ---------------
70 dnl Provide configure-script defaults for different ncurses ABIs.
71 AC_DEFUN([CF_ABI_DEFAULTS],[
72 AC_REQUIRE([CF_NCURSES_WITH_ABI_VERSION])
73 case x$cf_cv_abi_version in
74 (x[[6789]])
75         cf_dft_ext_colors=yes
76         cf_dft_ext_const=yes
77         cf_dft_ext_mouse=yes
78         cf_dft_ext_putwin=yes
79         cf_dft_ext_spfuncs=yes
80         cf_dft_filter_syms=yes
81         cf_dft_chtype=uint32_t
82         cf_dft_mmask_t=uint32_t
83         cf_dft_interop=yes
84         cf_dft_tparm_arg=intptr_t
85         cf_dft_with_lp64=yes
86         ;;
87 (*)
88         cf_dft_ext_colors=no
89         cf_dft_ext_const=no
90         cf_dft_ext_mouse=no
91         cf_dft_ext_putwin=no
92         cf_dft_ext_spfuncs=no
93         cf_dft_filter_syms=no
94         cf_dft_chtype=auto
95         cf_dft_mmask_t=auto
96         cf_dft_interop=no
97         cf_dft_tparm_arg=long
98         cf_dft_with_lp64=no
99         ;;
100 esac
101 ])dnl
102 dnl ---------------------------------------------------------------------------
103 dnl CF_ACVERSION_CHECK version: 5 updated: 2014/06/04 19:11:49
104 dnl ------------------
105 dnl Conditionally generate script according to whether we're using a given autoconf.
106 dnl
107 dnl $1 = version to compare against
108 dnl $2 = code to use if AC_ACVERSION is at least as high as $1.
109 dnl $3 = code to use if AC_ACVERSION is older than $1.
110 define([CF_ACVERSION_CHECK],
111 [
112 ifdef([AC_ACVERSION], ,[ifdef([AC_AUTOCONF_VERSION],[m4_copy([AC_AUTOCONF_VERSION],[AC_ACVERSION])],[m4_copy([m4_PACKAGE_VERSION],[AC_ACVERSION])])])dnl
113 ifdef([m4_version_compare],
114 [m4_if(m4_version_compare(m4_defn([AC_ACVERSION]), [$1]), -1, [$3], [$2])],
115 [CF_ACVERSION_COMPARE(
116 AC_PREREQ_CANON(AC_PREREQ_SPLIT([$1])),
117 AC_PREREQ_CANON(AC_PREREQ_SPLIT(AC_ACVERSION)), AC_ACVERSION, [$2], [$3])])])dnl
118 dnl ---------------------------------------------------------------------------
119 dnl CF_ACVERSION_COMPARE version: 3 updated: 2012/10/03 18:39:53
120 dnl --------------------
121 dnl CF_ACVERSION_COMPARE(MAJOR1, MINOR1, TERNARY1,
122 dnl                      MAJOR2, MINOR2, TERNARY2,
123 dnl                      PRINTABLE2, not FOUND, FOUND)
124 define([CF_ACVERSION_COMPARE],
125 [ifelse(builtin([eval], [$2 < $5]), 1,
126 [ifelse([$8], , ,[$8])],
127 [ifelse([$9], , ,[$9])])])dnl
128 dnl ---------------------------------------------------------------------------
129 dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
130 dnl -------------------
131 dnl Construct the list of include-options for the C programs in the Ada95
132 dnl binding.
133 AC_DEFUN([CF_ADA_INCLUDE_DIRS],
134 [
135 ACPPFLAGS="-I. -I../include -I../../include $ACPPFLAGS"
136 if test "$srcdir" != "."; then
137         ACPPFLAGS="-I\${srcdir}/../../include $ACPPFLAGS"
138 fi
139 if test "$GCC" != yes; then
140         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
141 elif test "$includedir" != "/usr/include"; then
142         if test "$includedir" = '${prefix}/include' ; then
143                 if test x$prefix != x/usr ; then
144                         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
145                 fi
146         else
147                 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
148         fi
149 fi
150 AC_SUBST(ACPPFLAGS)
151 ])dnl
152 dnl ---------------------------------------------------------------------------
153 dnl CF_ADD_ADAFLAGS version: 1 updated: 2010/06/19 15:22:18
154 dnl ---------------
155 dnl Add to $ADAFLAGS, which is substituted into makefile and scripts.
156 AC_DEFUN([CF_ADD_ADAFLAGS],[
157         ADAFLAGS="$ADAFLAGS $1"
158         AC_SUBST(ADAFLAGS)
159 ])dnl
160 dnl ---------------------------------------------------------------------------
161 dnl CF_ADD_CFLAGS version: 15 updated: 2020/12/31 10:54:15
162 dnl -------------
163 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
164 dnl $1 = flags to add
165 dnl $2 = if given makes this macro verbose.
166 dnl
167 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
168 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
169 dnl confused by the quotes (which require backslashes to keep them usable).
170 AC_DEFUN([CF_ADD_CFLAGS],
171 [
172 cf_fix_cppflags=no
173 cf_new_cflags=
174 cf_new_cppflags=
175 cf_new_extra_cppflags=
176
177 for cf_add_cflags in $1
178 do
179 case "$cf_fix_cppflags" in
180 (no)
181         case "$cf_add_cflags" in
182         (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
183                 case "$cf_add_cflags" in
184                 (-D*)
185                         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
186
187                         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
188                                 && test -z "${cf_tst_cflags}" \
189                                 && cf_fix_cppflags=yes
190
191                         if test "$cf_fix_cppflags" = yes ; then
192                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
193                                 continue
194                         elif test "${cf_tst_cflags}" = "\"'" ; then
195                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
196                                 continue
197                         fi
198                         ;;
199                 esac
200                 case "$CPPFLAGS" in
201                 (*$cf_add_cflags)
202                         ;;
203                 (*)
204                         case "$cf_add_cflags" in
205                         (-D*)
206                                 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
207                                 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
208                                 ;;
209                         esac
210                         CF_APPEND_TEXT(cf_new_cppflags,$cf_add_cflags)
211                         ;;
212                 esac
213                 ;;
214         (*)
215                 CF_APPEND_TEXT(cf_new_cflags,$cf_add_cflags)
216                 ;;
217         esac
218         ;;
219 (yes)
220         CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
221
222         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[[^"]]*"'\''//'`
223
224         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
225                 && test -z "${cf_tst_cflags}" \
226                 && cf_fix_cppflags=no
227         ;;
228 esac
229 done
230
231 if test -n "$cf_new_cflags" ; then
232         ifelse([$2],,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])
233         CF_APPEND_TEXT(CFLAGS,$cf_new_cflags)
234 fi
235
236 if test -n "$cf_new_cppflags" ; then
237         ifelse([$2],,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])
238         CF_APPEND_TEXT(CPPFLAGS,$cf_new_cppflags)
239 fi
240
241 if test -n "$cf_new_extra_cppflags" ; then
242         ifelse([$2],,,[CF_VERBOSE(add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags)])
243         CF_APPEND_TEXT(EXTRA_CPPFLAGS,$cf_new_extra_cppflags)
244 fi
245
246 AC_SUBST(EXTRA_CPPFLAGS)
247
248 ])dnl
249 dnl ---------------------------------------------------------------------------
250 dnl CF_ADD_CXXFLAGS version: 1 updated: 2020/04/04 16:16:13
251 dnl ---------------
252 dnl Copy non-preprocessor flags to $CXXFLAGS, preprocessor flags to $CPPFLAGS
253 dnl The second parameter if given makes this macro verbose.
254 dnl
255 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
256 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
257 dnl confused by the quotes (which require backslashes to keep them usable).
258 AC_DEFUN([CF_ADD_CXXFLAGS],
259 [
260 cf_save_CXXFLAGS="$CFLAGS"
261 CFLAGS="$CXXFLAGS"
262 CF_ADD_CFLAGS($1 ifelse($2,,,[,$2]))
263 CXXFLAGS="$CFLAGS"
264 CFLAGS="$cf_save_CXXFLAGS"
265 ])dnl
266 dnl ---------------------------------------------------------------------------
267 dnl CF_ADD_INCDIR version: 16 updated: 2020/12/31 20:19:42
268 dnl -------------
269 dnl Add an include-directory to $CPPFLAGS.  Don't add /usr/include, since it's
270 dnl redundant.  We don't normally need to add -I/usr/local/include for gcc,
271 dnl but old versions (and some misinstalled ones) need that.  To make things
272 dnl worse, gcc 3.x may give error messages if -I/usr/local/include is added to
273 dnl the include-path).
274 AC_DEFUN([CF_ADD_INCDIR],
275 [
276 if test -n "$1" ; then
277   for cf_add_incdir in $1
278   do
279         while test "$cf_add_incdir" != /usr/include
280         do
281           if test -d "$cf_add_incdir"
282           then
283                 cf_have_incdir=no
284                 if test -n "$CFLAGS$CPPFLAGS" ; then
285                   # a loop is needed to ensure we can add subdirs of existing dirs
286                   for cf_test_incdir in $CFLAGS $CPPFLAGS ; do
287                         if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then
288                           cf_have_incdir=yes; break
289                         fi
290                   done
291                 fi
292
293                 if test "$cf_have_incdir" = no ; then
294                   if test "$cf_add_incdir" = /usr/local/include ; then
295                         if test "$GCC" = yes
296                         then
297                           cf_save_CPPFLAGS=$CPPFLAGS
298                           CF_APPEND_TEXT(CPPFLAGS,-I$cf_add_incdir)
299                           AC_TRY_COMPILE([#include <stdio.h>],
300                                   [printf("Hello")],
301                                   [],
302                                   [cf_have_incdir=yes])
303                           CPPFLAGS=$cf_save_CPPFLAGS
304                         fi
305                   fi
306                 fi
307
308                 if test "$cf_have_incdir" = no ; then
309                   CF_VERBOSE(adding $cf_add_incdir to include-path)
310                   ifelse([$2],,CPPFLAGS,[$2])="$ifelse([$2],,CPPFLAGS,[$2]) -I$cf_add_incdir"
311
312                   cf_top_incdir=`echo "$cf_add_incdir" | sed -e 's%/include/.*$%/include%'`
313                   test "$cf_top_incdir" = "$cf_add_incdir" && break
314                   cf_add_incdir="$cf_top_incdir"
315                 else
316                   break
317                 fi
318           else
319                 break
320           fi
321         done
322   done
323 fi
324 ])dnl
325 dnl ---------------------------------------------------------------------------
326 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
327 dnl ----------
328 dnl Add a library, used to enforce consistency.
329 dnl
330 dnl $1 = library to add, without the "-l"
331 dnl $2 = variable to update (default $LIBS)
332 AC_DEFUN([CF_ADD_LIB],[CF_ADD_LIBS(-l$1,ifelse($2,,LIBS,[$2]))])dnl
333 dnl ---------------------------------------------------------------------------
334 dnl CF_ADD_LIBDIR version: 11 updated: 2020/12/31 20:19:42
335 dnl -------------
336 dnl     Adds to the library-path
337 dnl
338 dnl     Some machines have trouble with multiple -L options.
339 dnl
340 dnl $1 is the (list of) directory(s) to add
341 dnl $2 is the optional name of the variable to update (default LDFLAGS)
342 dnl
343 AC_DEFUN([CF_ADD_LIBDIR],
344 [
345 if test -n "$1" ; then
346         for cf_add_libdir in $1
347         do
348                 if test "$cf_add_libdir" = /usr/lib ; then
349                         :
350                 elif test -d "$cf_add_libdir"
351                 then
352                         cf_have_libdir=no
353                         if test -n "$LDFLAGS$LIBS" ; then
354                                 # a loop is needed to ensure we can add subdirs of existing dirs
355                                 for cf_test_libdir in $LDFLAGS $LIBS ; do
356                                         if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then
357                                                 cf_have_libdir=yes; break
358                                         fi
359                                 done
360                         fi
361                         if test "$cf_have_libdir" = no ; then
362                                 CF_VERBOSE(adding $cf_add_libdir to library-path)
363                                 ifelse([$2],,LDFLAGS,[$2])="-L$cf_add_libdir $ifelse([$2],,LDFLAGS,[$2])"
364                         fi
365                 fi
366         done
367 fi
368 ])dnl
369 dnl ---------------------------------------------------------------------------
370 dnl CF_ADD_LIBS version: 3 updated: 2019/11/02 16:47:33
371 dnl -----------
372 dnl Add one or more libraries, used to enforce consistency.  Libraries are
373 dnl prepended to an existing list, since their dependencies are assumed to
374 dnl already exist in the list.
375 dnl
376 dnl $1 = libraries to add, with the "-l", etc.
377 dnl $2 = variable to update (default $LIBS)
378 AC_DEFUN([CF_ADD_LIBS],[
379 cf_add_libs="[$]ifelse($2,,LIBS,[$2])"
380 # reverse order
381 cf_add_0lib=
382 for cf_add_1lib in $1; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done
383 # filter duplicates
384 for cf_add_1lib in $cf_add_0lib; do
385         for cf_add_2lib in $cf_add_libs; do
386                 if test "x$cf_add_1lib" = "x$cf_add_2lib"; then
387                         cf_add_1lib=
388                         break
389                 fi
390         done
391         test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs"
392 done
393 ifelse($2,,LIBS,[$2])="$cf_add_libs"
394 ])dnl
395 dnl ---------------------------------------------------------------------------
396 dnl CF_ADD_SUBDIR_PATH version: 5 updated: 2020/12/31 20:19:42
397 dnl ------------------
398 dnl Append to a search-list for a nonstandard header/lib-file
399 dnl     $1 = the variable to return as result
400 dnl     $2 = the package name
401 dnl     $3 = the subdirectory, e.g., bin, include or lib
402 dnl $4 = the directory under which we will test for subdirectories
403 dnl $5 = a directory that we do not want $4 to match
404 AC_DEFUN([CF_ADD_SUBDIR_PATH],
405 [
406 test "x$4" != "x$5" && \
407 test -d "$4" && \
408 ifelse([$5],NONE,,[{ test -z "$5" || test "x$5" = xNONE || test "x$4" != "x$5"; } &&]) {
409         test -n "$verbose" && echo "    ... testing for $3-directories under $4"
410         test -d "$4/$3" &&          $1="[$]$1 $4/$3"
411         test -d "$4/$3/$2" &&       $1="[$]$1 $4/$3/$2"
412         test -d "$4/$3/$2/$3" &&    $1="[$]$1 $4/$3/$2/$3"
413         test -d "$4/$2/$3" &&       $1="[$]$1 $4/$2/$3"
414         test -d "$4/$2/$3/$2" &&    $1="[$]$1 $4/$2/$3/$2"
415 }
416 ])dnl
417 dnl ---------------------------------------------------------------------------
418 dnl CF_APPEND_TEXT version: 1 updated: 2017/02/25 18:58:55
419 dnl --------------
420 dnl use this macro for appending text without introducing an extra blank at
421 dnl the beginning
422 define([CF_APPEND_TEXT],
423 [
424         test -n "[$]$1" && $1="[$]$1 "
425         $1="[$]{$1}$2"
426 ])dnl
427 dnl ---------------------------------------------------------------------------
428 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
429 dnl --------------
430 dnl Allow user to disable a normally-on option.
431 AC_DEFUN([CF_ARG_DISABLE],
432 [CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
433 dnl ---------------------------------------------------------------------------
434 dnl CF_ARG_ENABLE version: 3 updated: 1999/03/30 17:24:31
435 dnl -------------
436 dnl Allow user to enable a normally-off option.
437 AC_DEFUN([CF_ARG_ENABLE],
438 [CF_ARG_OPTION($1,[$2],[$3],[$4],no)])dnl
439 dnl ---------------------------------------------------------------------------
440 dnl CF_ARG_OPTION version: 5 updated: 2015/05/10 19:52:14
441 dnl -------------
442 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
443 dnl values.
444 dnl
445 dnl Parameters:
446 dnl $1 = option name
447 dnl $2 = help-string
448 dnl $3 = action to perform if option is not default
449 dnl $4 = action if perform if option is default
450 dnl $5 = default option value (either 'yes' or 'no')
451 AC_DEFUN([CF_ARG_OPTION],
452 [AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
453         if test "$enableval" != "$5" ; then
454 ifelse([$3],,[    :]dnl
455 ,[    $3]) ifelse([$4],,,[
456         else
457                 $4])
458         fi],[enableval=$5 ifelse([$4],,,[
459         $4
460 ])dnl
461 ])])dnl
462 dnl ---------------------------------------------------------------------------
463 dnl CF_AR_FLAGS version: 9 updated: 2021/01/01 13:31:04
464 dnl -----------
465 dnl Check for suitable "ar" (archiver) options for updating an archive.
466 dnl
467 dnl In particular, handle some obsolete cases where the "-" might be omitted,
468 dnl as well as a workaround for breakage of make's archive rules by the GNU
469 dnl binutils "ar" program.
470 AC_DEFUN([CF_AR_FLAGS],[
471 AC_REQUIRE([CF_PROG_AR])
472
473 AC_CACHE_CHECK(for options to update archives, cf_cv_ar_flags,[
474         case "$cf_cv_system_name" in
475         (*-msvc*)
476                 cf_cv_ar_flags=''
477                 cat >mk_static_lib.sh <<-EOF
478                 #!$SHELL
479                 MSVC_BIN="[$]AR"
480                 out="\[$]1"
481                 shift
482                 exec \[$]MSVC_BIN -out:"\[$]out" \[$]@
483                 EOF
484                 chmod +x mk_static_lib.sh
485                 AR=`pwd`/mk_static_lib.sh
486                 ;;
487         (*)
488                 cf_cv_ar_flags=unknown
489                 for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
490                 do
491
492                         # check if $ARFLAGS already contains this choice
493                         if test "x$ARFLAGS" != "x" ; then
494                                 cf_check_ar_flags=`echo "x$ARFLAGS" | sed -e "s/$cf_ar_flags\$//" -e "s/$cf_ar_flags / /"`
495                                 if test "x$ARFLAGS" != "$cf_check_ar_flags" ; then
496                                         cf_cv_ar_flags=
497                                         break
498                                 fi
499                         fi
500
501                         rm -f "conftest.$ac_cv_objext"
502                         rm -f conftest.a
503
504                         cat >"conftest.$ac_ext" <<EOF
505 #line __oline__ "configure"
506 int     testdata[[3]] = { 123, 456, 789 };
507 EOF
508                         if AC_TRY_EVAL(ac_compile) ; then
509                                 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&AC_FD_CC
510                                 $AR $ARFLAGS "$cf_ar_flags" conftest.a "conftest.$ac_cv_objext" 2>&AC_FD_CC 1>/dev/null
511                                 if test -f conftest.a ; then
512                                         cf_cv_ar_flags="$cf_ar_flags"
513                                         break
514                                 fi
515                         else
516                                 CF_VERBOSE(cannot compile test-program)
517                                 break
518                         fi
519                 done
520                 rm -f conftest.a "conftest.$ac_ext" "conftest.$ac_cv_objext"
521                 ;;
522         esac
523 ])
524
525 if test -n "$ARFLAGS" ; then
526         if test -n "$cf_cv_ar_flags" ; then
527                 ARFLAGS="$ARFLAGS $cf_cv_ar_flags"
528         fi
529 else
530         ARFLAGS=$cf_cv_ar_flags
531 fi
532
533 AC_SUBST(ARFLAGS)
534 ])
535 dnl ---------------------------------------------------------------------------
536 dnl CF_AWK_BIG_PRINTF version: 5 updated: 2015/04/17 21:13:04
537 dnl -----------------
538 dnl Check if awk can handle big strings using printf.  Some older versions of
539 dnl awk choke on large strings passed via "%s".
540 dnl
541 dnl $1 = desired string size
542 dnl $2 = variable to set with result
543 AC_DEFUN([CF_AWK_BIG_PRINTF],
544 [
545         case x$AWK in
546         (x)
547                 eval $2=no
548                 ;;
549         (*)
550                 if ( ${AWK} 'BEGIN { xx = "x"; while (length(xx) < $1) { xx = xx "x"; }; printf("%s\n", xx); }' 2>/dev/null \
551                         | $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
552                         eval $2=yes
553                 else
554                         eval $2=no
555                 fi
556                 ;;
557         esac
558 ])dnl
559 dnl ---------------------------------------------------------------------------
560 dnl CF_BOOL_DECL version: 8 updated: 2004/01/30 15:51:18
561 dnl ------------
562 dnl Test if 'bool' is a builtin type in the configured C++ compiler.  Some
563 dnl older compilers (e.g., gcc 2.5.8) don't support 'bool' directly; gcc
564 dnl 2.6.3 does, in anticipation of the ANSI C++ standard.
565 dnl
566 dnl Treat the configuration-variable specially here, since we're directly
567 dnl substituting its value (i.e., 1/0).
568 dnl
569 dnl $1 is the shell variable to store the result in, if not $cv_cv_builtin_bool
570 AC_DEFUN([CF_BOOL_DECL],
571 [
572 AC_MSG_CHECKING(if we should include stdbool.h)
573
574 AC_CACHE_VAL(cf_cv_header_stdbool_h,[
575         AC_TRY_COMPILE([],[bool foo = false],
576                 [cf_cv_header_stdbool_h=0],
577                 [AC_TRY_COMPILE([
578 #ifndef __BEOS__
579 #include <stdbool.h>
580 #endif
581 ],[bool foo = false],
582                         [cf_cv_header_stdbool_h=1],
583                         [cf_cv_header_stdbool_h=0])])])
584
585 if test "$cf_cv_header_stdbool_h" = 1
586 then    AC_MSG_RESULT(yes)
587 else    AC_MSG_RESULT(no)
588 fi
589
590 AC_MSG_CHECKING([for builtin bool type])
591
592 AC_CACHE_VAL(ifelse($1,,cf_cv_builtin_bool,[$1]),[
593         AC_TRY_COMPILE([
594 #include <stdio.h>
595 #include <sys/types.h>
596 ],[bool x = false],
597                 [ifelse($1,,cf_cv_builtin_bool,[$1])=1],
598                 [ifelse($1,,cf_cv_builtin_bool,[$1])=0])
599         ])
600
601 if test "$ifelse($1,,cf_cv_builtin_bool,[$1])" = 1
602 then    AC_MSG_RESULT(yes)
603 else    AC_MSG_RESULT(no)
604 fi
605 ])dnl
606 dnl ---------------------------------------------------------------------------
607 dnl CF_BOOL_SIZE version: 17 updated: 2020/10/24 19:48:55
608 dnl ------------
609 dnl Test for the size of 'bool' in the configured C++ compiler (e.g., a type).
610 dnl Don't bother looking for bool.h, since it's been deprecated.
611 dnl
612 dnl If the current compiler is C rather than C++, we get the bool definition
613 dnl from <stdbool.h>.
614 AC_DEFUN([CF_BOOL_SIZE],
615 [
616 AC_CHECK_SIZEOF(bool,,[
617 #include <stdlib.h>
618 #include <stdio.h>
619
620 #if defined(__cplusplus)
621
622 #ifdef HAVE_GXX_BUILTIN_H
623 #include <g++/builtin.h>
624 #elif HAVE_GPP_BUILTIN_H
625 #include <gpp/builtin.h>
626 #elif HAVE_BUILTIN_H
627 #include <builtin.h>
628 #endif
629
630 #else
631
632 #if $cf_cv_header_stdbool_h
633 #include <stdbool.h>
634 #endif
635
636 #endif
637 ])
638
639 AC_CACHE_CHECK(for type of bool, cf_cv_type_of_bool,[
640         rm -f cf_test.out
641         AC_TRY_RUN([
642 #include <stdlib.h>
643 #include <stdio.h>
644
645 #if defined(__cplusplus)
646
647 #ifdef HAVE_GXX_BUILTIN_H
648 #include <g++/builtin.h>
649 #elif HAVE_GPP_BUILTIN_H
650 #include <gpp/builtin.h>
651 #elif HAVE_BUILTIN_H
652 #include <builtin.h>
653 #endif
654
655 #else
656
657 #if $cf_cv_header_stdbool_h
658 #include <stdbool.h>
659 #endif
660
661 #endif
662
663 int main(void)
664 {
665         FILE *fp = fopen("cf_test.out", "w");
666         if (fp != 0) {
667                 bool x = true;
668                 if ((bool)(-x) >= 0)
669                         fputs("unsigned ", fp);
670                 if (sizeof(x) == sizeof(int))       fputs("int",  fp);
671                 else if (sizeof(x) == sizeof(char)) fputs("char", fp);
672                 else if (sizeof(x) == sizeof(short))fputs("short",fp);
673                 else if (sizeof(x) == sizeof(long)) fputs("long", fp);
674                 fclose(fp);
675         }
676         ${cf_cv_main_return:-return}(0);
677 }
678                 ],
679                 [cf_cv_type_of_bool=`cat cf_test.out`
680                  if test -z "$cf_cv_type_of_bool"; then
681                    cf_cv_type_of_bool=unknown
682                  fi],
683                 [cf_cv_type_of_bool=unknown],
684                 [
685                 case x$ac_cv_sizeof_bool in
686                 (x1) cf_cv_type_of_bool="unsigned char";;
687                 (x2) cf_cv_type_of_bool="unsigned short";;
688                 (x4) cf_cv_type_of_bool="unsigned int";;
689                 (x8) cf_cv_type_of_bool="unsigned long";;
690                 (*)  cf_cv_type_of_bool=unknown;;
691                 esac
692                 ])
693         rm -f cf_test.out
694 ])
695
696 if test "$cf_cv_type_of_bool" = unknown ; then
697         case .$NCURSES_BOOL in
698         (.auto|.) NCURSES_BOOL=unsigned;;
699         esac
700         AC_MSG_WARN(Assuming $NCURSES_BOOL for type of bool)
701         cf_cv_type_of_bool=$NCURSES_BOOL
702 fi
703 ])dnl
704 dnl ---------------------------------------------------------------------------
705 dnl CF_BUILD_CC version: 9 updated: 2021/01/02 09:31:20
706 dnl -----------
707 dnl If we're cross-compiling, allow the user to override the tools and their
708 dnl options.  The configure script is oriented toward identifying the host
709 dnl compiler, etc., but we need a build compiler to generate parts of the
710 dnl source.
711 dnl
712 dnl $1 = default for $CPPFLAGS
713 dnl $2 = default for $LIBS
714 AC_DEFUN([CF_BUILD_CC],[
715 CF_ACVERSION_CHECK(2.52,,
716         [AC_REQUIRE([CF_PROG_EXT])])
717 if test "$cross_compiling" = yes ; then
718
719         # defaults that we might want to override
720         : ${BUILD_CFLAGS:=''}
721         : ${BUILD_CPPFLAGS:='ifelse([$1],,,[$1])'}
722         : ${BUILD_LDFLAGS:=''}
723         : ${BUILD_LIBS:='ifelse([$2],,,[$2])'}
724         : ${BUILD_EXEEXT:='$x'}
725         : ${BUILD_OBJEXT:='o'}
726
727         AC_ARG_WITH(build-cc,
728                 [  --with-build-cc=XXX     the build C compiler ($BUILD_CC)],
729                 [BUILD_CC="$withval"],
730                 [AC_CHECK_PROGS(BUILD_CC, [gcc clang c99 c89 cc cl],none)])
731         AC_MSG_CHECKING(for native build C compiler)
732         AC_MSG_RESULT($BUILD_CC)
733
734         AC_MSG_CHECKING(for native build C preprocessor)
735         AC_ARG_WITH(build-cpp,
736                 [  --with-build-cpp=XXX    the build C preprocessor ($BUILD_CPP)],
737                 [BUILD_CPP="$withval"],
738                 [BUILD_CPP='${BUILD_CC} -E'])
739         AC_MSG_RESULT($BUILD_CPP)
740
741         AC_MSG_CHECKING(for native build C flags)
742         AC_ARG_WITH(build-cflags,
743                 [  --with-build-cflags=XXX the build C compiler-flags ($BUILD_CFLAGS)],
744                 [BUILD_CFLAGS="$withval"])
745         AC_MSG_RESULT($BUILD_CFLAGS)
746
747         AC_MSG_CHECKING(for native build C preprocessor-flags)
748         AC_ARG_WITH(build-cppflags,
749                 [  --with-build-cppflags=XXX the build C preprocessor-flags ($BUILD_CPPFLAGS)],
750                 [BUILD_CPPFLAGS="$withval"])
751         AC_MSG_RESULT($BUILD_CPPFLAGS)
752
753         AC_MSG_CHECKING(for native build linker-flags)
754         AC_ARG_WITH(build-ldflags,
755                 [  --with-build-ldflags=XXX the build linker-flags ($BUILD_LDFLAGS)],
756                 [BUILD_LDFLAGS="$withval"])
757         AC_MSG_RESULT($BUILD_LDFLAGS)
758
759         AC_MSG_CHECKING(for native build linker-libraries)
760         AC_ARG_WITH(build-libs,
761                 [  --with-build-libs=XXX   the build libraries (${BUILD_LIBS})],
762                 [BUILD_LIBS="$withval"])
763         AC_MSG_RESULT($BUILD_LIBS)
764
765         # this assumes we're on Unix.
766         BUILD_EXEEXT=
767         BUILD_OBJEXT=o
768
769         : ${BUILD_CC:='${CC}'}
770
771         if { test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}'; } ; then
772                 AC_MSG_ERROR([Cross-build requires two compilers.
773 Use --with-build-cc to specify the native compiler.])
774         fi
775
776 else
777         : ${BUILD_CC:='${CC}'}
778         : ${BUILD_CPP:='${CPP}'}
779         : ${BUILD_CFLAGS:='${CFLAGS}'}
780         : ${BUILD_CPPFLAGS:='${CPPFLAGS}'}
781         : ${BUILD_LDFLAGS:='${LDFLAGS}'}
782         : ${BUILD_LIBS:='${LIBS}'}
783         : ${BUILD_EXEEXT:='$x'}
784         : ${BUILD_OBJEXT:='o'}
785 fi
786
787 AC_SUBST(BUILD_CC)
788 AC_SUBST(BUILD_CPP)
789 AC_SUBST(BUILD_CFLAGS)
790 AC_SUBST(BUILD_CPPFLAGS)
791 AC_SUBST(BUILD_LDFLAGS)
792 AC_SUBST(BUILD_LIBS)
793 AC_SUBST(BUILD_EXEEXT)
794 AC_SUBST(BUILD_OBJEXT)
795 ])dnl
796 dnl ---------------------------------------------------------------------------
797 dnl CF_CC_ENV_FLAGS version: 10 updated: 2020/12/31 18:40:20
798 dnl ---------------
799 dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
800 dnl into CC.  This will not help with broken scripts that wrap the compiler
801 dnl with options, but eliminates a more common category of user confusion.
802 dnl
803 dnl In particular, it addresses the problem of being able to run the C
804 dnl preprocessor in a consistent manner.
805 dnl
806 dnl Caveat: this also disallows blanks in the pathname for the compiler, but
807 dnl the nuisance of having inconsistent settings for compiler and preprocessor
808 dnl outweighs that limitation.
809 AC_DEFUN([CF_CC_ENV_FLAGS],
810 [
811 # This should have been defined by AC_PROG_CC
812 : "${CC:=cc}"
813
814 AC_MSG_CHECKING(\$CFLAGS variable)
815 case "x$CFLAGS" in
816 (*-[[IUD]]*)
817         AC_MSG_RESULT(broken)
818         AC_MSG_WARN(your environment uses the CFLAGS variable to hold CPPFLAGS options)
819         cf_flags="$CFLAGS"
820         CFLAGS=
821         for cf_arg in $cf_flags
822         do
823                 CF_ADD_CFLAGS($cf_arg)
824         done
825         ;;
826 (*)
827         AC_MSG_RESULT(ok)
828         ;;
829 esac
830
831 AC_MSG_CHECKING(\$CC variable)
832 case "$CC" in
833 (*[[\ \ ]]-*)
834         AC_MSG_RESULT(broken)
835         AC_MSG_WARN(your environment uses the CC variable to hold CFLAGS/CPPFLAGS options)
836         # humor him...
837         cf_prog=`echo "$CC" | sed -e 's/        / /g' -e 's/[[ ]]* / /g' -e 's/[[ ]]*[[ ]]-[[^ ]].*//'`
838         cf_flags=`echo "$CC" | ${AWK:-awk} -v prog="$cf_prog" '{ printf("%s", [substr]([$]0,1+length(prog))); }'`
839         CC="$cf_prog"
840         for cf_arg in $cf_flags
841         do
842                 case "x$cf_arg" in
843                 (x-[[IUDfgOW]]*)
844                         CF_ADD_CFLAGS($cf_arg)
845                         ;;
846                 (*)
847                         CC="$CC $cf_arg"
848                         ;;
849                 esac
850         done
851         CF_VERBOSE(resulting CC: '$CC')
852         CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
853         CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
854         ;;
855 (*)
856         AC_MSG_RESULT(ok)
857         ;;
858 esac
859 ])dnl
860 dnl ---------------------------------------------------------------------------
861 dnl CF_CFG_DEFAULTS version: 16 updated: 2021/01/04 19:33:05
862 dnl ---------------
863 dnl Determine the default configuration into which we'll install ncurses.  This
864 dnl can be overridden by the user's command-line options.  There's two items to
865 dnl look for:
866 dnl     1. the prefix (e.g., /usr)
867 dnl     2. the header files (e.g., /usr/include/ncurses)
868 dnl We'll look for a previous installation of ncurses and use the same defaults.
869 dnl
870 dnl We don't use AC_PREFIX_DEFAULT, because it gets evaluated too soon, and
871 dnl we don't use AC_PREFIX_PROGRAM, because we cannot distinguish ncurses's
872 dnl programs from a vendor's.
873 AC_DEFUN([CF_CFG_DEFAULTS],
874 [AC_REQUIRE([AC_PROG_FGREP])dnl
875
876 AC_MSG_CHECKING(for prefix)
877 if test "x$prefix" = "xNONE" ; then
878         case "$cf_cv_system_name" in
879                 # non-vendor systems don't have a conflict
880         (openbsd*|freebsd*|mirbsd*|linux*|cygwin*|msys*|k*bsd*-gnu|mingw*)
881                 prefix=/usr
882                 ;;
883         (*)     prefix=$ac_default_prefix
884                 ;;
885         esac
886 fi
887 AC_MSG_RESULT($prefix)
888
889 if test "x$prefix" = "xNONE" ; then
890 AC_MSG_CHECKING(for default include-directory)
891 test -n "$verbose" && echo 1>&AC_FD_MSG
892 for cf_symbol in \
893         "$includedir" \
894         "$includedir/ncurses" \
895         "$prefix/include" \
896         "$prefix/include/ncurses" \
897         /usr/local/include \
898         /usr/local/include/ncurses \
899         /usr/include \
900         /usr/include/ncurses
901 do
902         cf_dir=`eval echo "$cf_symbol"`
903         if test -f "$cf_dir/curses.h" ; then
904         if ( ${FGREP-fgrep} NCURSES_VERSION "$cf_dir/curses.h" >/dev/null 2>&1 ) ; then
905                 includedir="$cf_symbol"
906                 test -n "$verbose"  && echo $ECHO_N "   found " 1>&AC_FD_MSG
907                 break
908         fi
909         fi
910         test -n "$verbose"  && echo "   tested $cf_dir" 1>&AC_FD_MSG
911 done
912 AC_MSG_RESULT($includedir)
913 fi
914 ])dnl
915 dnl ---------------------------------------------------------------------------
916 dnl CF_CGETENT version: 6 updated: 2017/01/21 11:06:25
917 dnl ----------
918 dnl Check if the terminal-capability database functions are available.  If not,
919 dnl ncurses has a much-reduced version.
920 AC_DEFUN([CF_CGETENT],[
921 AC_CACHE_CHECK(for terminal-capability database functions,cf_cv_cgetent,[
922 AC_TRY_LINK([
923 #include <stdlib.h>],[
924         char temp[128];
925         char *buf = temp;
926         char *db_array = temp;
927         cgetent(&buf, &db_array, "vt100");
928         cgetcap(buf, "tc", '=');
929         cgetmatch(buf, "tc");
930         ],
931         [cf_cv_cgetent=yes],
932         [cf_cv_cgetent=no])
933 ])
934
935 if test "$cf_cv_cgetent" = yes
936 then
937         AC_DEFINE(HAVE_BSD_CGETENT,1,[Define to 1 if we have BSD cgetent])
938 AC_CACHE_CHECK(if cgetent uses const parameter,cf_cv_cgetent_const,[
939 AC_TRY_LINK([
940 #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers"
941 #include <stdlib.h>],[
942         char temp[128];
943         char *buf = temp;
944 #ifndef _NETBSD_SOURCE                  /* given, since April 2004 in stdlib.h */
945         const char *db_array = temp;
946         cgetent(&buf, &db_array, "vt100");
947 #endif
948         cgetcap(buf, "tc", '=');
949         cgetmatch(buf, "tc");
950         ],
951         [cf_cv_cgetent_const=yes],
952         [cf_cv_cgetent_const=no])
953 ])
954         if test "$cf_cv_cgetent_const" = yes
955         then
956                 AC_DEFINE_UNQUOTED(CGETENT_CONST,const,[Define to const if needed for some BSD cgetent variations])
957         fi
958 fi
959 ])dnl
960 dnl ---------------------------------------------------------------------------
961 dnl CF_CHECK_CACHE version: 13 updated: 2020/12/31 10:54:15
962 dnl --------------
963 dnl Check if we're accidentally using a cache from a different machine.
964 dnl Derive the system name, as a check for reusing the autoconf cache.
965 dnl
966 dnl If we've packaged config.guess and config.sub, run that (since it does a
967 dnl better job than uname).  Normally we'll use AC_CANONICAL_HOST, but allow
968 dnl an extra parameter that we may override, e.g., for AC_CANONICAL_SYSTEM
969 dnl which is useful in cross-compiles.
970 dnl
971 dnl Note: we would use $ac_config_sub, but that is one of the places where
972 dnl autoconf 2.5x broke compatibility with autoconf 2.13
973 AC_DEFUN([CF_CHECK_CACHE],
974 [
975 if test -f "$srcdir/config.guess" || test -f "$ac_aux_dir/config.guess" ; then
976         ifelse([$1],,[AC_CANONICAL_HOST],[$1])
977         system_name="$host_os"
978 else
979         system_name="`(uname -s -r) 2>/dev/null`"
980         if test -z "$system_name" ; then
981                 system_name="`(hostname) 2>/dev/null`"
982         fi
983 fi
984 test -n "$system_name" && AC_DEFINE_UNQUOTED(SYSTEM_NAME,"$system_name",[Define to the system name.])
985 AC_CACHE_VAL(cf_cv_system_name,[cf_cv_system_name="$system_name"])
986
987 test -z "$system_name" && system_name="$cf_cv_system_name"
988 test -n "$cf_cv_system_name" && AC_MSG_RESULT(Configuring for $cf_cv_system_name)
989
990 if test ".$system_name" != ".$cf_cv_system_name" ; then
991         AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
992         AC_MSG_ERROR("Please remove config.cache and try again.")
993 fi
994 ])dnl
995 dnl ---------------------------------------------------------------------------
996 dnl CF_CHECK_ENVIRON version: 3 updated: 2010/05/26 16:44:57
997 dnl ----------------
998 dnl Check for data that is usually declared in <unistd.h>, e.g., the 'environ'
999 dnl variable.  Define a DECL_xxx symbol if we must declare it ourselves.
1000 dnl
1001 dnl $1 = the name to check
1002 dnl $2 = the assumed type
1003 AC_DEFUN([CF_CHECK_ENVIRON],
1004 [
1005 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1006     AC_TRY_COMPILE([
1007 #ifdef HAVE_STDLIB_H
1008 #include <stdlib.h>
1009 #endif
1010 #include <unistd.h> ],
1011     ifelse([$2],,int,[$2]) x = (ifelse([$2],,int,[$2])) $1,
1012     [cf_cv_dcl_$1=yes],
1013     [cf_cv_dcl_$1=no])
1014 ])
1015
1016 if test "$cf_cv_dcl_$1" = no ; then
1017     CF_UPPER(cf_result,decl_$1)
1018     AC_DEFINE_UNQUOTED($cf_result)
1019 fi
1020
1021 # It's possible (for near-UNIX clones) that the data doesn't exist
1022 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1023 ])dnl
1024 dnl ---------------------------------------------------------------------------
1025 dnl CF_CHECK_ERRNO version: 13 updated: 2020/03/10 18:53:47
1026 dnl --------------
1027 dnl Check for data that is usually declared in <stdio.h> or <errno.h>, e.g.,
1028 dnl the 'errno' variable.  Define a DECL_xxx symbol if we must declare it
1029 dnl ourselves.
1030 dnl
1031 dnl $1 = the name to check
1032 dnl $2 = the assumed type
1033 AC_DEFUN([CF_CHECK_ERRNO],
1034 [
1035 AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[
1036         AC_TRY_COMPILE([
1037 #ifdef HAVE_STDLIB_H
1038 #include <stdlib.h>
1039 #endif
1040 #include <stdio.h>
1041 #include <sys/types.h>
1042 #include <errno.h> ],
1043         ifelse([$2],,int,[$2]) x = (ifelse([$2],,int,[$2])) $1; (void)x,
1044         [cf_cv_dcl_$1=yes],
1045         [cf_cv_dcl_$1=no])
1046 ])
1047
1048 if test "$cf_cv_dcl_$1" = no ; then
1049         CF_UPPER(cf_result,decl_$1)
1050         AC_DEFINE_UNQUOTED($cf_result)
1051 fi
1052
1053 # It's possible (for near-UNIX clones) that the data doesn't exist
1054 CF_CHECK_EXTERN_DATA($1,ifelse([$2],,int,[$2]))
1055 ])dnl
1056 dnl ---------------------------------------------------------------------------
1057 dnl CF_CHECK_EXTERN_DATA version: 4 updated: 2015/04/18 08:56:57
1058 dnl --------------------
1059 dnl Check for existence of external data in the current set of libraries.  If
1060 dnl we can modify it, it's real enough.
1061 dnl $1 = the name to check
1062 dnl $2 = its type
1063 AC_DEFUN([CF_CHECK_EXTERN_DATA],
1064 [
1065 AC_CACHE_CHECK(if external $1 exists, cf_cv_have_$1,[
1066         AC_TRY_LINK([
1067 #undef $1
1068 extern $2 $1;
1069 ],
1070         [$1 = 2],
1071         [cf_cv_have_$1=yes],
1072         [cf_cv_have_$1=no])
1073 ])
1074
1075 if test "$cf_cv_have_$1" = yes ; then
1076         CF_UPPER(cf_result,have_$1)
1077         AC_DEFINE_UNQUOTED($cf_result)
1078 fi
1079
1080 ])dnl
1081 dnl ---------------------------------------------------------------------------
1082 dnl CF_CHECK_FVISIBILITY version: 2 updated: 2020/04/04 16:16:13
1083 dnl --------------------
1084 dnl Check whether the compiler understands -fvisibility=hidden
1085 dnl
1086 dnl $1 = compiler
1087 dnl $2 = compiler-flags variable name
1088 dnl $3 = cache variable to set
1089 AC_DEFUN([CF_CHECK_FVISIBILITY],[
1090 AC_CACHE_CHECK(if $1 -fvisibility=hidden option works,$3,[
1091     cf_save_cflags="[$]$2"
1092     $2="[$]$2 -fvisibility=hidden"
1093     AC_TRY_LINK([
1094 __attribute__ ((visibility("default"))) int somefunc() {return 42;}
1095         ],[
1096         if (somefunc()) return 1;
1097 ],
1098     [$3=yes],
1099     [$3=no])
1100     $2=$cf_save_cflags
1101 ])
1102 ])dnl
1103 dnl ---------------------------------------------------------------------------
1104 dnl CF_CHECK_GETENV version: 2 updated: 2021/01/02 17:09:14
1105 dnl ---------------
1106 dnl Check if repeated getenv calls return the same pointer, e.g., it does not
1107 dnl discard the previous pointer when returning a new one.
1108 AC_DEFUN([CF_CHECK_GETENV],
1109 [
1110 AC_REQUIRE([CF_CHECK_ENVIRON])
1111 AC_CHECK_FUNC( getenv, ,, AC_MSG_ERROR(getenv not found) )
1112 AC_CHECK_FUNCS( putenv setenv strdup )
1113 AC_CACHE_CHECK(if getenv returns consistent values,cf_cv_consistent_getenv,[
1114 AC_TRY_RUN([
1115 #include <stdlib.h>
1116 #include <unistd.h>
1117 #include <stdio.h>
1118 #include <string.h>
1119 #include <sys/types.h>
1120
1121 #if defined(HAVE_ENVIRON) && defined(DECL_ENVIRON) && !defined(environ)
1122 extern char **environ;  /* POSIX, but some systems are not... */
1123 #endif
1124
1125 #if defined(HAVE_STRDUP)
1126 #define str_alloc(s) strdup(s)
1127 #else
1128 #define str_alloc(s) strcpy(malloc(strlen(s) + 1, s))
1129 #endif
1130
1131 static void set_value(const char *name, const char *value)
1132 {
1133 #if defined(HAVE_SETENV)
1134         setenv(name, value, 1);
1135 #elif defined(HAVE_PUTENV)
1136         char buffer[1024];
1137         sprintf(buffer, "%s=%s", name, value);
1138         putenv(str_alloc(buffer));
1139 #else
1140 #error neither putenv/setenv found
1141 #endif
1142 }
1143 int main(void)
1144 {
1145         int pass;
1146         size_t numenv, limit, j;
1147         char **mynames;
1148         char **myvalues;
1149         char **mypointer;
1150         char *equals;
1151         for (numenv = 0; environ[numenv]; ++numenv) ;
1152         limit = numenv + 10;
1153         mynames = (char **) calloc(limit + 1, sizeof(char *));
1154         myvalues = (char **) calloc(limit + 1, sizeof(char *));
1155         mypointer = (char **) calloc(limit + 1, sizeof(char *));
1156 #if defined(HAVE_ENVIRON)
1157         for (j = 0; environ[j]; ++j) {
1158                 mynames[j] = str_alloc(environ[j]);
1159                 equals = strchr(mynames[j], '=');
1160                 if (equals != 0) {
1161                         *equals++ = '\\0';
1162                         myvalues[j] = str_alloc(equals);
1163                 } else {
1164                         myvalues[j] = str_alloc("");
1165                 }
1166         }
1167 #endif
1168         for (j = numenv; j < limit; ++j) {
1169                 char name[80];
1170                 char value[80];
1171                 size_t found;
1172                 size_t k = 0;
1173                 do {
1174                         size_t jk;
1175                         found = 0;
1176                         sprintf(name, "TERM%lu", (unsigned long) k);
1177                         for (jk = 0; jk < j; ++jk) {
1178                                 if (!strcmp(name, mynames[jk])) {
1179                                         found = 1;
1180                                         ++k;
1181                                         break;
1182                                 }
1183                         }
1184                 } while (found);
1185                 sprintf(value, "%lu:%p", (unsigned long) k, &mynames[j]);
1186                 set_value(name, value);
1187                 mynames[j] = str_alloc(name);
1188                 myvalues[j] = str_alloc(value);
1189         }
1190         for (pass = 0; pass < 3; ++pass) {
1191                 for (j = 0; j < limit; ++j) {
1192                         char *value = getenv(mynames[j]);
1193                         if (pass) {
1194                                 if (value == 0) {
1195                                         fprintf(stderr, "getenv returned null for %s\\n", mynames[j]);
1196                                         ${cf_cv_main_return:-return}(1);
1197                                 } else if (value != mypointer[j]) {
1198                                         fprintf(stderr, "getenv returned different pointer for %s\\n", mynames[j]);
1199                                         ${cf_cv_main_return:-return}(1);
1200                                 } else if (strcmp(value, myvalues[j])) {
1201                                         fprintf(stderr, "getenv returned different value for %s\\n", mynames[j]);
1202                                         ${cf_cv_main_return:-return}(1);
1203                                 }
1204                         } else {
1205                                 size_t k;
1206                                 mypointer[j] = value;
1207                                 for (k = 0; k < j; ++k) {
1208                                         if (mypointer[j] == mypointer[k]) {
1209                                                 fprintf(stderr, "getenv returned same pointer for %s and %s\\n", mynames[j], mynames[k]);
1210                                                 ${cf_cv_main_return:-return}(1);
1211                                         }
1212                                 }
1213                         }
1214                 }
1215         }
1216         ${cf_cv_main_return:-return}(0);
1217 }
1218 ],
1219 [cf_cv_consistent_getenv=yes],
1220 [cf_cv_consistent_getenv=no],
1221 [cf_cv_consistent_getenv=unknown])
1222 ])
1223
1224 if test "x$cf_cv_consistent_getenv" = xno
1225 then
1226         AC_DEFINE(HAVE_CONSISTENT_GETENV,1,[Define to 1 if getenv repeatably returns the same value for a given name])
1227 fi
1228 ])dnl
1229 dnl ---------------------------------------------------------------------------
1230 dnl CF_CHECK_GNAT_VERSION version: 4 updated: 2021/01/01 13:31:04
1231 dnl ---------------------
1232 AC_DEFUN([CF_CHECK_GNAT_VERSION],
1233 [
1234 AC_REQUIRE([CF_GNAT_VERSION])
1235 case "$cf_cv_gnat_version" in
1236 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
1237         cf_cv_prog_gnat_correct=yes
1238         ;;
1239 (*)
1240         AC_MSG_WARN(Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding.)
1241         cf_cv_prog_gnat_correct=no
1242         ;;
1243 esac
1244 ])
1245 dnl ---------------------------------------------------------------------------
1246 dnl CF_CHECK_GPM_WGETCH version: 6 updated: 2021/01/04 18:48:01
1247 dnl -------------------
1248 dnl Check if GPM is already linked with curses.  If so - and if the linkage
1249 dnl is not "weak" - warn about this because it can create problems linking
1250 dnl applications with ncurses.
1251 AC_DEFUN([CF_CHECK_GPM_WGETCH],[
1252 AC_REQUIRE([AC_PROG_EGREP])dnl
1253
1254 AC_CHECK_LIB(gpm,Gpm_Wgetch,[
1255
1256 AC_CACHE_CHECK(if GPM is weakly bound to curses library, cf_cv_check_gpm_wgetch,[
1257 cf_cv_check_gpm_wgetch=unknown
1258 if test "$cross_compiling" != yes ; then
1259
1260 cat >conftest.$ac_ext <<CF_EOF
1261 #include <gpm.h>
1262 int main(void)
1263 {
1264         Gpm_Wgetch();
1265         ${cf_cv_main_return:-return}(0);
1266 }
1267 CF_EOF
1268
1269         cf_save_LIBS="$LIBS"
1270         # This only works if we can look at the symbol table.  If a shared
1271         # library is stripped for install, we cannot use that.  So we're forced
1272         # to rely on the static library, noting that some packagers may not
1273         # include it.
1274         LIBS="-static -lgpm -dynamic $LIBS"
1275         if AC_TRY_EVAL(ac_compile) ; then
1276                 if AC_TRY_EVAL(ac_link) ; then
1277                         cf_cv_check_gpm_wgetch="`nm \"conftest$ac_exeext\" | ${EGREP-egrep} '\<wgetch\>' | ${EGREP-egrep} '\<[[vVwW]]\>'`"
1278                         test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
1279                         test -z "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=no
1280                 fi
1281         fi
1282         rm -rf ./conftest*
1283         LIBS="$cf_save_LIBS"
1284 fi
1285 ])
1286
1287 if test "$cf_cv_check_gpm_wgetch" != yes ; then
1288         AC_MSG_WARN(GPM library is already linked with curses - read the FAQ)
1289 fi
1290 ])])dnl
1291 dnl ---------------------------------------------------------------------------
1292 dnl CF_CHECK_LIBTOOL_VERSION version: 1 updated: 2013/04/06 18:03:09
1293 dnl ------------------------
1294 dnl Show the version of libtool
1295 dnl
1296 dnl Save the version in a cache variable - this is not entirely a good thing,
1297 dnl but the version string from libtool is very ugly, and for bug reports it
1298 dnl might be useful to have the original string.
1299 AC_DEFUN([CF_CHECK_LIBTOOL_VERSION],[
1300 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
1301 then
1302         AC_MSG_CHECKING(version of $LIBTOOL)
1303         CF_LIBTOOL_VERSION
1304         AC_MSG_RESULT($cf_cv_libtool_version)
1305         if test -z "$cf_cv_libtool_version" ; then
1306                 AC_MSG_ERROR(This is not GNU libtool)
1307         fi
1308 else
1309         AC_MSG_ERROR(GNU libtool has not been found)
1310 fi
1311 ])dnl
1312 dnl ---------------------------------------------------------------------------
1313 dnl CF_CHECK_WCHAR_H version: 3 updated: 2021/01/01 13:31:04
1314 dnl ----------------
1315 dnl Check if wchar.h can be used, i.e., without defining _XOPEN_SOURCE_EXTENDED
1316 AC_DEFUN([CF_CHECK_WCHAR_H],[
1317 AC_CHECK_HEADERS( \
1318 wchar.h \
1319 wctype.h \
1320 )
1321 AC_CACHE_CHECK(if wchar.h can be used as is,cf_cv_wchar_h_okay,[
1322 AC_TRY_COMPILE(
1323 [
1324 #include <stdlib.h>
1325 #ifdef HAVE_WCHAR_H
1326 #include <wchar.h>
1327 #endif
1328 #ifdef HAVE_WCTYPE_H
1329 #include <wctype.h>
1330 #endif
1331 ],[
1332         wint_t foo = 0;
1333         int bar = iswpunct(foo)],
1334         [cf_cv_wchar_h_okay=yes],
1335         [cf_cv_wchar_h_okay=no])])
1336
1337 if test "$cf_cv_wchar_h_okay" = no
1338 then
1339         CF_PREDEFINE(_XOPEN_SOURCE_EXTENDED)
1340 fi
1341 ])dnl
1342 dnl ---------------------------------------------------------------------------
1343 dnl CF_CHECK_WCWIDTH_GRAPHICS version: 2 updated: 2021/01/02 17:09:14
1344 dnl -------------------------
1345 dnl Most "modern" terminal emulators are based to some degree on VT100, and
1346 dnl should support line-drawing.  Even with Unicode.  There is a problem.
1347 dnl
1348 dnl While most of the VT100 graphics characters were incorporated into Unicode,
1349 dnl all of those were combined into a page of useful graphics characters.
1350 dnl
1351 dnl So far, so good.
1352 dnl
1353 dnl However, while they are useful, there are other considerations.  CJK
1354 dnl is (because of poor device resolution) often rendered as double-width
1355 dnl characters.  So... for these generally-useful characters, what should
1356 dnl be the width (to make them consistent with adjacent characters)?
1357 dnl
1358 dnl The obvious choice would have been to make this locale-dependent, and use
1359 dnl wcwidth() to tell applications what the actual width is.  That was too
1360 dnl obvious.  Instead, we have a slew of "ambiguous-width" characters.
1361 dnl See for example
1362 dnl             http://www.unicode.org/reports/tr11/tr11-29.html
1363 dnl             http://www.cl.cam.ac.uk/~mgk25/ucs/scw-proposal.html
1364 dnl
1365 dnl The EastAsianWidth-6.2.0.txt file from the Unicode organization lists
1366 dnl more than 22,000 characters, with 1281 of those as ambiguous-width.  For
1367 dnl instance, it lists half (44/96) of the Latin-1 characters as
1368 dnl ambiguous-width.  Also, all of the box-characters at 0x2500 are ambiguous.
1369 dnl
1370 dnl What this means for the implementor is that on some systems wcwidth() can
1371 dnl give bad advice.  On Solaris, some of the ambiguous widths are returned as
1372 dnl 1 (the Latin-1 characters), while others are returned as 2 (line-drawing
1373 dnl characters).  These do not necessarily match the behavior of the terminal
1374 dnl emulator.  xterm, for instance, does an optional startup check to find if
1375 dnl this problem (or similar) exists with the system's locale tables, rejecting
1376 dnl them if they are too unreliable.
1377 AC_DEFUN([CF_CHECK_WCWIDTH_GRAPHICS],[
1378 AC_CACHE_CHECK(if wcwidth agrees graphics are single-width, cf_cv_wcwidth_graphics,[
1379 cat >conftest.in <<CF_EOF
1380 -       VT100 symbols
1381 0x250c  upper left corner
1382 0x2514  lower left corner
1383 0x2510  upper right corner
1384 0x2518  lower right corner
1385 0x251c  tee pointing left
1386 0x2524  tee pointing right
1387 0x2534  tee pointing up
1388 0x252c  tee pointing down
1389 0x2500  horizontal line
1390 0x2502  vertical line
1391 0x253c  large plus or crossover
1392 0x23ba  scan line 1
1393 0x23bd  scan line 9
1394 0x25c6  diamond
1395 0x2592  checker board (stipple)
1396 0x00b0  degree symbol
1397 0x00b1  plus/minus
1398 0x00b7  bullet
1399 -       Teletype 5410v1 symbols
1400 0x2190  arrow pointing left
1401 0x2192  arrow pointing right
1402 0x2193  arrow pointing down
1403 0x2191  arrow pointing up
1404 0x2592  board of squares
1405 0x2603  lantern symbol
1406 0x25ae  solid square block
1407 -       these defaults were invented for ncurses
1408 0x23bb  scan line 3
1409 0x23bc  scan line 7
1410 0x2264  less-than-or-equal-to
1411 0x2265  greater-than-or-equal-to
1412 0x03c0  greek pi
1413 0x2260  not-equal
1414 0x00a3  pound-sterling symbol
1415 -       thick-line-drawing
1416 0x250f  upper left corner
1417 0x2517  lower left corner
1418 0x2513  upper right corner
1419 0x251b  lower right corner
1420 0x2523  tee pointing left
1421 0x252b  tee pointing right
1422 0x253b  tee pointing up
1423 0x2533  tee pointing down
1424 0x2501  horizontal line
1425 0x2503  vertical line
1426 0x254b  large plus or crossover
1427 -       double-line-drawing
1428 0x2554  upper left corner
1429 0x255a  lower left corner
1430 0x2557  upper right corner
1431 0x255d  lower right corner
1432 0x2563  tee pointing left
1433 0x2560  tee pointing right
1434 0x2569  tee pointing up
1435 0x2566  tee pointing down
1436 0x2550  horizontal line
1437 0x2551  vertical line
1438 0x256c  large plus or crossover
1439 CF_EOF
1440 AC_TRY_RUN([
1441 #include <locale.h>
1442 #include <stdio.h>
1443 #include <wchar.h>
1444
1445 #define MY_LEN 80
1446
1447 int
1448 main(void)
1449 {
1450         FILE *fp;
1451         int value;
1452         char buffer[MY_LEN + 1];
1453         char notes[MY_LEN + 1];
1454         int totals = 0;
1455         int passed = 0;
1456
1457         if (setlocale(LC_ALL, "en_US.UTF8") ||
1458                 setlocale(LC_ALL, "en_US.UTF-8") ||
1459                 setlocale(LC_ALL, "en_US.utf8") ||
1460                 setlocale(LC_ALL, "en_US.utf-8")) {
1461                 if ((fp = fopen("conftest.in", "r")) != 0) {
1462                         while (fgets(buffer, MY_LEN, fp) != 0) {
1463                                 if (*buffer == '-') {
1464                                         fprintf(stderr, "\\t%s", buffer);
1465                                 } else if (sscanf(buffer, "%x %s", &value, notes) == 2) {
1466                                         ++totals;
1467                                         if (wcwidth(value) == 1)
1468                                                 ++passed;
1469                                         fprintf(stderr, "%d\\t%s", wcwidth(value), buffer);
1470                                 } else {
1471                                         fprintf(stderr, "?\\t%s", buffer);
1472                                 }
1473                         }
1474                 }
1475         }
1476         fprintf(stderr, "%d/%d passed wcwidth/graphics check\\n", passed, totals);
1477         return (totals == passed) ? 0 : 1;
1478 }
1479 ],
1480 [cf_cv_wcwidth_graphics=yes],
1481 [cf_cv_wcwidth_graphics=no],
1482 [cf_cv_wcwidth_graphics=unknown])
1483 ])
1484 ])dnl
1485 dnl ---------------------------------------------------------------------------
1486 dnl CF_CLANG_COMPILER version: 8 updated: 2021/01/01 13:31:04
1487 dnl -----------------
1488 dnl Check if the given compiler is really clang.  clang's C driver defines
1489 dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
1490 dnl not ignore some gcc options.
1491 dnl
1492 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
1493 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
1494 dnl the wrappers for gcc and g++ warnings.
1495 dnl
1496 dnl $1 = GCC (default) or GXX
1497 dnl $2 = CLANG_COMPILER (default)
1498 dnl $3 = CFLAGS (default) or CXXFLAGS
1499 AC_DEFUN([CF_CLANG_COMPILER],[
1500 ifelse([$2],,CLANG_COMPILER,[$2])=no
1501
1502 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
1503         AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
1504         cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
1505         AC_TRY_COMPILE([],[
1506 #ifdef __clang__
1507 #else
1508 make an error
1509 #endif
1510 ],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
1511 ],[])
1512         ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
1513         AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
1514 fi
1515
1516 CLANG_VERSION=none
1517
1518 if test "x$ifelse([$2],,CLANG_COMPILER,[$2])" = "xyes" ; then
1519         case "$CC" in
1520         (c[[1-9]][[0-9]]|*/c[[1-9]][[0-9]])
1521                 AC_MSG_WARN(replacing broken compiler alias $CC)
1522                 CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`"
1523                 CC=clang
1524                 ;;
1525         esac
1526
1527         AC_MSG_CHECKING(version of $CC)
1528         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.]].*//'`"
1529         test -z "$CLANG_VERSION" && CLANG_VERSION=unknown
1530         AC_MSG_RESULT($CLANG_VERSION)
1531
1532         for cf_clang_opt in \
1533                 -Qunused-arguments \
1534                 -Wno-error=implicit-function-declaration
1535         do
1536                 AC_MSG_CHECKING(if option $cf_clang_opt works)
1537                 cf_save_CFLAGS="$CFLAGS"
1538                 CFLAGS="$CFLAGS $cf_clang_opt"
1539                 AC_TRY_LINK([
1540                         #include <stdio.h>],[
1541                         printf("hello!\\n");],[
1542                         cf_clang_optok=yes],[
1543                         cf_clang_optok=no])
1544                 AC_MSG_RESULT($cf_clang_optok)
1545                 CFLAGS="$cf_save_CFLAGS"
1546                 if test "$cf_clang_optok" = yes; then
1547                         CF_VERBOSE(adding option $cf_clang_opt)
1548                         CF_APPEND_TEXT(CFLAGS,$cf_clang_opt)
1549                 fi
1550         done
1551 fi
1552 ])
1553 dnl ---------------------------------------------------------------------------
1554 dnl CF_CONST_X_STRING version: 6 updated: 2021/01/01 13:31:04
1555 dnl -----------------
1556 dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
1557 dnl character-strings.
1558 dnl
1559 dnl It is ambiguous because the specification accommodated the pre-ANSI
1560 dnl compilers bundled by more than one vendor in lieu of providing a standard C
1561 dnl compiler other than by costly add-ons.  Because of this, the specification
1562 dnl did not take into account the use of const for telling the compiler that
1563 dnl string literals would be in readonly memory.
1564 dnl
1565 dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
1566 dnl let the compiler decide how to represent Xt's strings which were #define'd.
1567 dnl That does not solve the problem of using the block of Xt's strings which
1568 dnl are compiled into the library (and is less efficient than one might want).
1569 dnl
1570 dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
1571 dnl when compiling the library and compiling using the library, to tell the
1572 dnl compiler that String is const.
1573 AC_DEFUN([CF_CONST_X_STRING],
1574 [
1575 AC_REQUIRE([AC_PATH_XTRA])
1576
1577 CF_SAVE_XTRA_FLAGS([CF_CONST_X_STRING])
1578
1579 AC_TRY_COMPILE(
1580 [
1581 #include <stdlib.h>
1582 #include <X11/Intrinsic.h>
1583 ],
1584 [String foo = malloc(1); (void)foo],[
1585
1586 AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
1587         AC_TRY_COMPILE(
1588                 [
1589 #define _CONST_X_STRING /* X11R7.8 (perhaps) */
1590 #undef  XTSTRINGDEFINES /* X11R5 and later */
1591 #include <stdlib.h>
1592 #include <X11/Intrinsic.h>
1593                 ],[String foo = malloc(1); *foo = 0],[
1594                         cf_cv_const_x_string=no
1595                 ],[
1596                         cf_cv_const_x_string=yes
1597                 ])
1598 ])
1599
1600 CF_RESTORE_XTRA_FLAGS([CF_CONST_X_STRING])
1601
1602 case "$cf_cv_const_x_string" in
1603 (no)
1604         CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
1605         ;;
1606 (*)
1607         CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
1608         ;;
1609 esac
1610
1611 ])
1612 ])dnl
1613 dnl ---------------------------------------------------------------------------
1614 dnl CF_CPP_PARAM_INIT version: 7 updated: 2017/01/21 11:06:25
1615 dnl -----------------
1616 dnl Check if the C++ compiler accepts duplicate parameter initialization.  This
1617 dnl is a late feature for the standard and is not in some recent compilers
1618 dnl (1999/9/11).
1619 AC_DEFUN([CF_CPP_PARAM_INIT],
1620 [
1621 if test -n "$CXX"; then
1622 AC_CACHE_CHECK(if $CXX accepts parameter initialization,cf_cv_cpp_param_init,[
1623         AC_LANG_SAVE
1624         AC_LANG_CPLUSPLUS
1625         AC_TRY_RUN([
1626 class TEST {
1627 private:
1628         int value;
1629 public:
1630         TEST(int x = 1);
1631         ~TEST();
1632 };
1633
1634 TEST::TEST(int x = 1)   // some compilers do not like second initializer
1635 {
1636         value = x;
1637 }
1638 int main(void) { }
1639 ],
1640         [cf_cv_cpp_param_init=yes],
1641         [cf_cv_cpp_param_init=no],
1642         [cf_cv_cpp_param_init=unknown])
1643         AC_LANG_RESTORE
1644 ])
1645 fi
1646 test "$cf_cv_cpp_param_init" = yes && AC_DEFINE(CPP_HAS_PARAM_INIT,1,[Define to 1 if C++ has parameter initialization])
1647 ])dnl
1648 dnl ---------------------------------------------------------------------------
1649 dnl CF_CPP_STATIC_CAST version: 3 updated: 2013/04/13 18:03:21
1650 dnl ------------------
1651 dnl Check if the C++ compiler accepts static_cast in generics.  This appears to
1652 dnl not be supported in g++ before 3.0
1653 AC_DEFUN([CF_CPP_STATIC_CAST],
1654 [
1655 if test -n "$CXX"; then
1656
1657 AC_CACHE_CHECK(if $CXX accepts static_cast,cf_cv_cpp_static_cast,[
1658         AC_LANG_SAVE
1659         AC_LANG_CPLUSPLUS
1660
1661         AC_TRY_COMPILE([
1662 class NCursesPanel
1663 {
1664 public:
1665   NCursesPanel(int nlines,
1666                int ncols,
1667                int begin_y = 0,
1668                int begin_x = 0)
1669   {
1670   }
1671   NCursesPanel();
1672   ~NCursesPanel();
1673 };
1674
1675 template<class T> class NCursesUserPanel : public NCursesPanel
1676 {
1677 public:
1678   NCursesUserPanel (int nlines,
1679                     int ncols,
1680                     int begin_y = 0,
1681                     int begin_x = 0,
1682                     const T* p_UserData = static_cast<T*>(0))
1683     : NCursesPanel (nlines, ncols, begin_y, begin_x)
1684   {
1685   };
1686   NCursesUserPanel(const T* p_UserData = static_cast<T*>(0)) : NCursesPanel()
1687   {
1688   };
1689
1690   virtual ~NCursesUserPanel() {};
1691 };
1692 ],[
1693         const char* p_UserData = static_cast<char*>(0)],
1694         [cf_cv_cpp_static_cast=yes],
1695         [cf_cv_cpp_static_cast=no])
1696
1697         AC_LANG_RESTORE
1698 ])
1699
1700 fi
1701
1702 test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST,1,[Define to 1 if C++ has static_cast])
1703 ])dnl
1704 dnl ---------------------------------------------------------------------------
1705 dnl CF_CXX_AR_FLAGS version: 3 updated: 2021/01/01 13:31:04
1706 dnl ---------------
1707 dnl Setup special archiver flags for given compilers.
1708 AC_DEFUN([CF_CXX_AR_FLAGS],[
1709         CXX_AR='$(AR)'
1710         CXX_ARFLAGS='$(ARFLAGS)'
1711         case "$cf_cv_system_name" in
1712         (irix*)
1713             if test "$GXX" != yes ; then
1714                 CXX_AR='$(CXX)'
1715                 CXX_ARFLAGS='-ar -o'
1716             fi
1717             ;;
1718         (sco3.2v5*)
1719             CXXLDFLAGS="-u main"
1720             ;;
1721         (solaris2*)
1722             if test "$GXX" != yes ; then
1723                 CXX_AR='$(CXX)'
1724                 CXX_ARFLAGS='-xar -o'
1725             fi
1726             ;;
1727         esac
1728         AC_SUBST(CXXLDFLAGS)
1729         AC_SUBST(CXX_AR)
1730         AC_SUBST(CXX_ARFLAGS)
1731 ])dnl
1732 dnl ---------------------------------------------------------------------------
1733 dnl CF_CXX_IOSTREAM_NAMESPACE version: 2 updated: 2012/10/06 17:56:13
1734 dnl -------------------------
1735 dnl For c++, check if iostream uses "std::" namespace.
1736 AC_DEFUN([CF_CXX_IOSTREAM_NAMESPACE],[
1737 AC_CHECK_HEADERS(iostream)
1738 if test x"$ac_cv_header_iostream" = xyes ; then
1739         AC_MSG_CHECKING(if iostream uses std-namespace)
1740         AC_TRY_COMPILE([
1741 #include <iostream>
1742 using std::endl;
1743 using std::cerr;],[
1744 cerr << "testing" << endl;
1745 ],[cf_iostream_namespace=yes],[cf_iostream_namespace=no])
1746         AC_MSG_RESULT($cf_iostream_namespace)
1747         if test "$cf_iostream_namespace" = yes ; then
1748                 AC_DEFINE(IOSTREAM_NAMESPACE,1,[Define to 1 if C++ has namespace iostream])
1749         fi
1750 fi
1751 ])dnl
1752 dnl ---------------------------------------------------------------------------
1753 dnl CF_C_INLINE version: 6 updated: 2019/09/07 13:38:36
1754 dnl -----------
1755 dnl Check if the C compiler supports "inline".
1756 dnl $1 is the name of a shell variable to set if inline is supported
1757 dnl $2 is the threshold for gcc 4.x's option controlling maximum inline size
1758 AC_DEFUN([CF_C_INLINE],[
1759 AC_REQUIRE([CF_GCC_VERSION])
1760 AC_C_INLINE
1761 $1=
1762 if test "$ac_cv_c_inline" != no ; then
1763         $1=inline
1764         if test "$INTEL_COMPILER" = yes
1765         then
1766                 :
1767         elif test "$CLANG_COMPILER" = yes
1768         then
1769                 :
1770         elif test "$GCC" = yes
1771         then
1772                 AC_CACHE_CHECK(if $CC supports options to tune inlining,cf_cv_gcc_inline,[
1773                 cf_save_CFLAGS=$CFLAGS
1774                 CFLAGS="$CFLAGS --param max-inline-insns-single=$2"
1775                 AC_TRY_COMPILE([inline int foo(void) { return 1; }],
1776                 [${cf_cv_main_return:-return} foo()],
1777                 [cf_cv_gcc_inline=yes],
1778                 [cf_cv_gcc_inline=no])
1779                 CFLAGS=$cf_save_CFLAGS
1780                 ])
1781                 if test "$cf_cv_gcc_inline" = yes ; then
1782                         CF_ADD_CFLAGS([--param max-inline-insns-single=$2])
1783                 fi
1784         fi
1785 fi
1786 AC_SUBST($1)
1787 ])dnl
1788 dnl ---------------------------------------------------------------------------
1789 dnl CF_DIRNAME version: 5 updated: 2020/12/31 20:19:42
1790 dnl ----------
1791 dnl "dirname" is not portable, so we fake it with a shell script.
1792 AC_DEFUN([CF_DIRNAME],[$1=`echo "$2" | sed -e 's%/[[^/]]*$%%'`])dnl
1793 dnl ---------------------------------------------------------------------------
1794 dnl CF_DIRS_TO_MAKE version: 4 updated: 2021/01/01 13:31:04
1795 dnl ---------------
1796 AC_DEFUN([CF_DIRS_TO_MAKE],
1797 [
1798 DIRS_TO_MAKE="lib"
1799 for cf_item in $cf_list_models
1800 do
1801         CF_OBJ_SUBDIR($cf_item,cf_subdir)
1802         for cf_item2 in $DIRS_TO_MAKE
1803         do
1804                 test "$cf_item2" = "$cf_subdir" && break
1805         done
1806         test ".$cf_item2" != ".$cf_subdir" && DIRS_TO_MAKE="$DIRS_TO_MAKE $cf_subdir"
1807 done
1808 for cf_dir in $DIRS_TO_MAKE
1809 do
1810         test ! -d "$cf_dir" && mkdir "$cf_dir"
1811 done
1812 AC_SUBST(DIRS_TO_MAKE)
1813 ])dnl
1814 dnl ---------------------------------------------------------------------------
1815 dnl CF_DISABLE_ECHO version: 13 updated: 2015/04/18 08:56:57
1816 dnl ---------------
1817 dnl You can always use "make -n" to see the actual options, but it's hard to
1818 dnl pick out/analyze warning messages when the compile-line is long.
1819 dnl
1820 dnl Sets:
1821 dnl     ECHO_LT - symbol to control if libtool is verbose
1822 dnl     ECHO_LD - symbol to prefix "cc -o" lines
1823 dnl     RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
1824 dnl     SHOW_CC - symbol to put before explicit "cc -c" lines
1825 dnl     ECHO_CC - symbol to put before any "cc" line
1826 dnl
1827 AC_DEFUN([CF_DISABLE_ECHO],[
1828 AC_MSG_CHECKING(if you want to see long compiling messages)
1829 CF_ARG_DISABLE(echo,
1830         [  --disable-echo          do not display "compiling" commands],
1831         [
1832         ECHO_LT='--silent'
1833         ECHO_LD='@echo linking [$]@;'
1834         RULE_CC='@echo compiling [$]<'
1835         SHOW_CC='@echo compiling [$]@'
1836         ECHO_CC='@'
1837 ],[
1838         ECHO_LT=''
1839         ECHO_LD=''
1840         RULE_CC=''
1841         SHOW_CC=''
1842         ECHO_CC=''
1843 ])
1844 AC_MSG_RESULT($enableval)
1845 AC_SUBST(ECHO_LT)
1846 AC_SUBST(ECHO_LD)
1847 AC_SUBST(RULE_CC)
1848 AC_SUBST(SHOW_CC)
1849 AC_SUBST(ECHO_CC)
1850 ])dnl
1851 dnl ---------------------------------------------------------------------------
1852 dnl CF_DISABLE_GNAT_PROJECTS version: 1 updated: 2014/06/01 11:34:00
1853 dnl ------------------------
1854 AC_DEFUN([CF_DISABLE_GNAT_PROJECTS],[
1855 AC_MSG_CHECKING(if we want to use GNAT projects)
1856 CF_ARG_DISABLE(gnat-projects,
1857         [  --disable-gnat-projects test: disable GNAT projects even if usable],
1858         [enable_gnat_projects=no],
1859         [enable_gnat_projects=yes])
1860 AC_MSG_RESULT($enable_gnat_projects)
1861 ])dnl
1862 dnl ---------------------------------------------------------------------------
1863 dnl CF_DISABLE_LEAKS version: 8 updated: 2021/01/05 20:05:09
1864 dnl ----------------
1865 dnl Combine no-leak checks with the libraries or tools that are used for the
1866 dnl checks.
1867 AC_DEFUN([CF_DISABLE_LEAKS],[
1868
1869 AC_REQUIRE([CF_WITH_DMALLOC])
1870 AC_REQUIRE([CF_WITH_DBMALLOC])
1871 AC_REQUIRE([CF_WITH_VALGRIND])
1872
1873 AC_MSG_CHECKING(if you want to perform memory-leak testing)
1874 AC_ARG_ENABLE(leaks,
1875         [  --disable-leaks         test: free permanent memory, analyze leaks],
1876         [enable_leaks=no],
1877         [enable_leaks=yes])
1878 dnl TODO - drop with_no_leaks
1879 if test "x$enable_leaks" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi
1880 AC_MSG_RESULT($with_no_leaks)
1881
1882 if test "$enable_leaks" = no ; then
1883         AC_DEFINE(NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
1884         AC_DEFINE(YY_NO_LEAKS,1,[Define to 1 if you want to perform memory-leak testing.])
1885 fi
1886 ])dnl
1887 dnl ---------------------------------------------------------------------------
1888 dnl CF_DISABLE_LIBTOOL_VERSION version: 3 updated: 2015/04/17 21:13:04
1889 dnl --------------------------
1890 dnl Check if we should use the libtool 1.5 feature "-version-number" instead of
1891 dnl the older "-version-info" feature.  The newer feature allows us to use
1892 dnl version numbering on shared libraries which make them compatible with
1893 dnl various systems.
1894 AC_DEFUN([CF_DISABLE_LIBTOOL_VERSION],
1895 [
1896 AC_MSG_CHECKING(if libtool -version-number should be used)
1897 CF_ARG_DISABLE(libtool-version,
1898         [  --disable-libtool-version  enable to use libtool's incompatible naming scheme],
1899         [cf_libtool_version=no],
1900         [cf_libtool_version=yes])
1901 AC_MSG_RESULT($cf_libtool_version)
1902
1903 if test "$cf_libtool_version" = yes ; then
1904         LIBTOOL_VERSION="-version-number"
1905 else
1906         LIBTOOL_VERSION="-version-info"
1907         case "x$VERSION" in
1908         (x)
1909                 AC_MSG_WARN(VERSION was not set)
1910                 ;;
1911         (x*.*.*)
1912                 ABI_VERSION="$VERSION"
1913                 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
1914                 ;;
1915         (x*:*:*)
1916                 ABI_VERSION=`echo "$VERSION" | sed -e 's/:/./g'`
1917                 CF_VERBOSE(ABI_VERSION: $ABI_VERSION)
1918                 ;;
1919         (*)
1920                 AC_MSG_WARN(unexpected VERSION value: $VERSION)
1921                 ;;
1922         esac
1923 fi
1924
1925 AC_SUBST(ABI_VERSION)
1926 AC_SUBST(LIBTOOL_VERSION)
1927 ])dnl
1928 dnl ---------------------------------------------------------------------------
1929 dnl CF_DISABLE_RPATH_HACK version: 3 updated: 2021/01/05 20:14:44
1930 dnl ---------------------
1931 dnl The rpath-hack makes it simpler to build programs, particularly with the
1932 dnl *BSD ports which may have essential libraries in unusual places.  But it
1933 dnl can interfere with building an executable for the base system.  Use this
1934 dnl option in that case.
1935 AC_DEFUN([CF_DISABLE_RPATH_HACK],
1936 [
1937 AC_MSG_CHECKING(if rpath-hack should be disabled)
1938 CF_ARG_DISABLE(rpath-hack,
1939         [  --disable-rpath-hack    don't add rpath options for additional libraries],
1940         [enable_rpath_hack=no],
1941         [enable_rpath_hack=yes])
1942 dnl TODO - drop cf_disable_rpath_hack
1943 if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi
1944 AC_MSG_RESULT($cf_disable_rpath_hack)
1945
1946 if test "$enable_rpath_hack" = yes ; then
1947         CF_RPATH_HACK
1948 fi
1949 ])
1950 dnl ---------------------------------------------------------------------------
1951 dnl CF_ENABLE_BROKEN_LINKER version: 2 updated: 2021/01/02 17:09:14
1952 dnl -----------------------
1953 dnl Some linkers cannot reference a data-only object.  Cygwin used to be one.
1954 dnl This usually follows CF_LINK_DATAONLY, but is not required in case we need
1955 dnl an unconditional feature.
1956 AC_DEFUN([CF_ENABLE_BROKEN_LINKER],[
1957
1958 AC_MSG_CHECKING(if you want broken-linker support code)
1959 AC_ARG_ENABLE(broken_linker,
1960         [  --enable-broken_linker  compile with broken-linker support code],
1961         [with_broken_linker=$enableval],
1962         [with_broken_linker=no])
1963 AC_MSG_RESULT($with_broken_linker)
1964
1965 : "${BROKEN_LINKER:=0}"
1966 if test "x$with_broken_linker" = xyes ; then
1967         AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
1968         BROKEN_LINKER=1
1969 fi
1970 AC_SUBST(BROKEN_LINKER)
1971 ])dnl
1972 dnl ---------------------------------------------------------------------------
1973 dnl CF_ENABLE_PC_FILES version: 13 updated: 2015/11/01 05:27:39
1974 dnl ------------------
1975 dnl This is the "--enable-pc-files" option, which is available if there is a
1976 dnl pkg-config configuration on the local machine.
1977 AC_DEFUN([CF_ENABLE_PC_FILES],[
1978 AC_REQUIRE([CF_PKG_CONFIG])
1979 AC_REQUIRE([CF_WITH_PKG_CONFIG_LIBDIR])
1980
1981 if test "x$PKG_CONFIG" != xnone
1982 then
1983         AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
1984 else
1985         AC_MSG_CHECKING(if we should install .pc files)
1986 fi
1987
1988 AC_ARG_ENABLE(pc-files,
1989         [  --enable-pc-files       generate and install .pc files for pkg-config],
1990         [enable_pc_files=$enableval],
1991         [enable_pc_files=no])
1992 AC_MSG_RESULT($enable_pc_files)
1993
1994 if test "x$enable_pc_files" != xno
1995 then
1996         MAKE_PC_FILES=
1997         case "x$PKG_CONFIG_LIBDIR" in
1998         (xno|xyes)
1999                 AC_MSG_WARN(no PKG_CONFIG_LIBDIR was found)
2000                 ;;
2001         (*)
2002                 CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR)
2003                 ;;
2004         esac
2005 else
2006         MAKE_PC_FILES="#"
2007 fi
2008 AC_SUBST(MAKE_PC_FILES)
2009 ])dnl
2010 dnl ---------------------------------------------------------------------------
2011 dnl CF_ENABLE_RPATH version: 2 updated: 2010/03/27 18:39:42
2012 dnl ---------------
2013 dnl Check if the rpath option should be used, setting cache variable
2014 dnl cf_cv_enable_rpath if so.
2015 AC_DEFUN([CF_ENABLE_RPATH],
2016 [
2017 AC_MSG_CHECKING(if rpath option should be used)
2018 AC_ARG_ENABLE(rpath,
2019 [  --enable-rpath          use rpath option when generating shared libraries],
2020 [cf_cv_enable_rpath=$enableval],
2021 [cf_cv_enable_rpath=no])
2022 AC_MSG_RESULT($cf_cv_enable_rpath)
2023 ])dnl
2024 dnl ---------------------------------------------------------------------------
2025 dnl CF_ENABLE_STRING_HACKS version: 6 updated: 2021/01/05 19:23:48
2026 dnl ----------------------
2027 dnl On a few platforms, the compiler and/or loader nags with untruthful
2028 dnl comments stating that "most" uses of strcat/strcpy/sprintf are incorrect,
2029 dnl and implying that most uses of the recommended alternatives are correct.
2030 dnl
2031 dnl Factually speaking, no one has actually counted the number of uses of these
2032 dnl functions versus the total of incorrect uses.  Samples of a few thousand
2033 dnl instances are meaningless compared to the hundreds of millions of lines of
2034 dnl existing C code.
2035 dnl
2036 dnl strlcat/strlcpy are (as of 2012) non-standard, and are available on some
2037 dnl platforms, in implementations of varying quality.  Likewise, snprintf is
2038 dnl standard - but evolved through phases, and older implementations are likely
2039 dnl to yield surprising results, as documented in manpages on various systems.
2040 AC_DEFUN([CF_ENABLE_STRING_HACKS],
2041 [
2042 AC_MSG_CHECKING(if you want to work around bogus compiler/loader warnings)
2043 AC_ARG_ENABLE(string-hacks,
2044         [  --enable-string-hacks   work around bogus compiler/loader warnings],
2045         [enable_string_hacks=$enableval],
2046         [enable_string_hacks=no])
2047 AC_MSG_RESULT($enable_string_hacks)
2048
2049 if test "x$enable_string_hacks" = "xyes"; then
2050         AC_DEFINE(USE_STRING_HACKS,1,[Define to 1 to work around bogus compiler/loader warnings])
2051         AC_MSG_WARN(enabling string-hacks to work around bogus compiler/loader warnings)
2052         AC_CHECK_FUNC(strlcat,[
2053                 AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2054                 ],[
2055                 AC_CHECK_LIB(bsd,strlcat,[
2056                         CF_ADD_LIB(bsd)
2057                         AC_CHECK_HEADERS(bsd/string.h)
2058                         AC_DEFINE(HAVE_STRLCAT,1,[Define to 1 if we have strlcat function])
2059                         ])
2060                 ])
2061         AC_CHECK_FUNCS( strlcpy snprintf )
2062 fi
2063 ])dnl
2064 dnl ---------------------------------------------------------------------------
2065 dnl CF_ENABLE_WARNINGS version: 9 updated: 2021/01/05 19:40:50
2066 dnl ------------------
2067 dnl Configure-option to enable gcc warnings
2068 dnl
2069 dnl $1 = extra options to add, if supported
2070 dnl $2 = option for checking attributes.  By default, this is done when
2071 dnl      warnings are enabled.  For other values:
2072 dnl      yes: always do this, e.g., to use in generated library-headers
2073 dnl      no: never do this
2074 AC_DEFUN([CF_ENABLE_WARNINGS],[
2075 if test "$GCC" = yes || test "$GXX" = yes
2076 then
2077 CF_FIX_WARNINGS(CFLAGS)
2078 CF_FIX_WARNINGS(CPPFLAGS)
2079 CF_FIX_WARNINGS(LDFLAGS)
2080 AC_MSG_CHECKING(if you want to turn on gcc warnings)
2081 CF_ARG_ENABLE(warnings,
2082         [  --enable-warnings       test: turn on gcc compiler warnings],
2083         [enable_warnings=yes],
2084         [enable_warnings=no])
2085 AC_MSG_RESULT($enable_warnings)
2086 if test "$enable_warnings" = "yes"
2087 then
2088         ifelse($2,,[CF_GCC_ATTRIBUTES])
2089         CF_GCC_WARNINGS($1)
2090 fi
2091 ifelse($2,yes,[CF_GCC_ATTRIBUTES])
2092 fi
2093 ])dnl
2094 dnl ---------------------------------------------------------------------------
2095 dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39
2096 dnl --------
2097 dnl Check if 'errno' is declared in <errno.h>
2098 AC_DEFUN([CF_ERRNO],
2099 [
2100 CF_CHECK_ERRNO(errno)
2101 ])dnl
2102 dnl ---------------------------------------------------------------------------
2103 dnl CF_ETIP_DEFINES version: 6 updated: 2021/01/02 17:09:14
2104 dnl ---------------
2105 dnl Test for conflicting definitions of exception in gcc 2.8.0, etc., between
2106 dnl math.h and builtin.h, only for ncurses
2107 AC_DEFUN([CF_ETIP_DEFINES],
2108 [
2109 AC_MSG_CHECKING(for special defines needed for etip.h)
2110 cf_save_CXXFLAGS="$CXXFLAGS"
2111 cf_result="none"
2112
2113 # etip.h includes ncurses.h which includes ncurses_dll.h
2114 # But ncurses_dll.h is generated - fix here.
2115 test -d include || mkdir include
2116 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
2117
2118 for cf_math in "" MATH_H
2119 do
2120 for cf_excp in "" MATH_EXCEPTION
2121 do
2122         CXXFLAGS="$cf_save_CXXFLAGS -I${srcdir}/c++ -I${srcdir}/menu -Iinclude -I${srcdir}/include"
2123         test -n "$cf_math" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_math}"
2124         test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}"
2125 AC_TRY_COMPILE([
2126 #include <etip.h.in>
2127 ],[],[
2128         test -n "$cf_math" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_math})
2129         test -n "$cf_excp" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_excp})
2130         cf_result="$cf_math $cf_excp"
2131         break 2
2132 ],[])
2133 done
2134 done
2135 AC_MSG_RESULT($cf_result)
2136 CXXFLAGS="$cf_save_CXXFLAGS"
2137 ])
2138 dnl ---------------------------------------------------------------------------
2139 dnl CF_FIND_LINKAGE version: 22 updated: 2020/12/31 20:19:42
2140 dnl ---------------
2141 dnl Find a library (specifically the linkage used in the code fragment),
2142 dnl searching for it if it is not already in the library path.
2143 dnl See also CF_ADD_SEARCHPATH.
2144 dnl
2145 dnl Parameters (4-on are optional):
2146 dnl     $1 = headers for library entrypoint
2147 dnl     $2 = code fragment for library entrypoint
2148 dnl     $3 = the library name without the "-l" option or ".so" suffix.
2149 dnl     $4 = action to perform if successful (default: update CPPFLAGS, etc)
2150 dnl     $5 = action to perform if not successful
2151 dnl     $6 = module name, if not the same as the library name
2152 dnl     $7 = extra libraries
2153 dnl
2154 dnl Sets these variables:
2155 dnl     $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
2156 dnl     $cf_cv_header_path_$3 - include-directory if needed
2157 dnl     $cf_cv_library_path_$3 - library-directory if needed
2158 dnl     $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
2159 AC_DEFUN([CF_FIND_LINKAGE],[
2160
2161 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
2162 # will be set on completion of the AC_TRY_LINK below.
2163 cf_cv_header_path_$3=
2164 cf_cv_library_path_$3=
2165
2166 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
2167
2168 cf_save_LIBS="$LIBS"
2169
2170 AC_TRY_LINK([$1],[$2],[
2171         cf_cv_find_linkage_$3=yes
2172         cf_cv_header_path_$3=/usr/include
2173         cf_cv_library_path_$3=/usr/lib
2174 ],[
2175
2176 LIBS="-l$3 $7 $cf_save_LIBS"
2177
2178 AC_TRY_LINK([$1],[$2],[
2179         cf_cv_find_linkage_$3=yes
2180         cf_cv_header_path_$3=/usr/include
2181         cf_cv_library_path_$3=/usr/lib
2182         cf_cv_library_file_$3="-l$3"
2183 ],[
2184         cf_cv_find_linkage_$3=no
2185         LIBS="$cf_save_LIBS"
2186
2187         CF_VERBOSE(find linkage for $3 library)
2188         CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
2189
2190         cf_save_CPPFLAGS="$CPPFLAGS"
2191         cf_test_CPPFLAGS="$CPPFLAGS"
2192
2193         CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
2194         for cf_cv_header_path_$3 in $cf_search
2195         do
2196                 if test -d "$cf_cv_header_path_$3" ; then
2197                         CF_VERBOSE(... testing $cf_cv_header_path_$3)
2198                         CPPFLAGS="$cf_save_CPPFLAGS"
2199                         CF_APPEND_TEXT(CPPFLAGS,-I$cf_cv_header_path_$3)
2200                         AC_TRY_COMPILE([$1],[$2],[
2201                                 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
2202                                 cf_cv_find_linkage_$3=maybe
2203                                 cf_test_CPPFLAGS="$CPPFLAGS"
2204                                 break],[
2205                                 CPPFLAGS="$cf_save_CPPFLAGS"
2206                                 ])
2207                 fi
2208         done
2209
2210         if test "$cf_cv_find_linkage_$3" = maybe ; then
2211
2212                 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
2213
2214                 cf_save_LIBS="$LIBS"
2215                 cf_save_LDFLAGS="$LDFLAGS"
2216
2217                 ifelse([$6],,,[
2218                 CPPFLAGS="$cf_test_CPPFLAGS"
2219                 LIBS="-l$3 $7 $cf_save_LIBS"
2220                 AC_TRY_LINK([$1],[$2],[
2221                         CF_VERBOSE(... found $3 library in system)
2222                         cf_cv_find_linkage_$3=yes])
2223                         CPPFLAGS="$cf_save_CPPFLAGS"
2224                         LIBS="$cf_save_LIBS"
2225                         ])
2226
2227                 if test "$cf_cv_find_linkage_$3" != yes ; then
2228                         CF_LIBRARY_PATH(cf_search,$3)
2229                         for cf_cv_library_path_$3 in $cf_search
2230                         do
2231                                 if test -d "$cf_cv_library_path_$3" ; then
2232                                         CF_VERBOSE(... testing $cf_cv_library_path_$3)
2233                                         CPPFLAGS="$cf_test_CPPFLAGS"
2234                                         LIBS="-l$3 $7 $cf_save_LIBS"
2235                                         LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
2236                                         AC_TRY_LINK([$1],[$2],[
2237                                         CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
2238                                         cf_cv_find_linkage_$3=yes
2239                                         cf_cv_library_file_$3="-l$3"
2240                                         break],[
2241                                         CPPFLAGS="$cf_save_CPPFLAGS"
2242                                         LIBS="$cf_save_LIBS"
2243                                         LDFLAGS="$cf_save_LDFLAGS"
2244                                         ])
2245                                 fi
2246                         done
2247                         CPPFLAGS="$cf_save_CPPFLAGS"
2248                         LDFLAGS="$cf_save_LDFLAGS"
2249                 fi
2250
2251         else
2252                 cf_cv_find_linkage_$3=no
2253         fi
2254         ],$7)
2255 ])
2256
2257 LIBS="$cf_save_LIBS"
2258
2259 if test "$cf_cv_find_linkage_$3" = yes ; then
2260 ifelse([$4],,[
2261         CF_ADD_INCDIR($cf_cv_header_path_$3)
2262         CF_ADD_LIBDIR($cf_cv_library_path_$3)
2263         CF_ADD_LIB($3)
2264 ],[$4])
2265 else
2266 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
2267 fi
2268 ])dnl
2269 dnl ---------------------------------------------------------------------------
2270 dnl CF_FIND_SUB_INCDIR version: 3 updated: 2021/01/01 13:31:04
2271 dnl ------------------
2272 dnl Find an include-directory with the given leaf-name.  This is useful for
2273 dnl example with FreeBSD ports, which use this convention to distinguish
2274 dnl different versions of the same port.
2275 AC_DEFUN([CF_FIND_SUB_INCDIR],[
2276         CF_SUBDIR_PATH(cf_search,$1,include)
2277         for cf_item in $cf_search
2278         do
2279                 case "$cf_item" in
2280                 (*/$1)
2281                         CF_ADD_INCDIR($cf_item)
2282                         ;;
2283                 esac
2284         done
2285 ])dnl
2286 dnl ---------------------------------------------------------------------------
2287 dnl CF_FIND_SUB_LIBDIR version: 3 updated: 2021/01/01 13:31:04
2288 dnl ------------------
2289 dnl Find a library-directory with the given leaf-name.  This is useful for
2290 dnl example with FreeBSD ports, which use this convention to distinguish
2291 dnl different versions of the same port.
2292 AC_DEFUN([CF_FIND_SUB_LIBDIR],[
2293         CF_SUBDIR_PATH(cf_search,$1,lib)
2294         for cf_item in $cf_search
2295         do
2296                 case "$cf_item" in
2297                 (*/$1)
2298                         CF_ADD_LIBDIR($cf_item)
2299                         ;;
2300                 esac
2301         done
2302 ])dnl
2303 dnl ---------------------------------------------------------------------------
2304 dnl CF_FIXUP_ADAFLAGS version: 2 updated: 2015/04/17 21:13:04
2305 dnl -----------------
2306 dnl make ADAFLAGS consistent with CFLAGS
2307 AC_DEFUN([CF_FIXUP_ADAFLAGS],[
2308         AC_MSG_CHECKING(optimization options for ADAFLAGS)
2309         case "$CFLAGS" in
2310         (*-g*)
2311                 CF_ADD_ADAFLAGS(-g)
2312                 ;;
2313         esac
2314         case "$CFLAGS" in
2315         (*-O*)
2316                 cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
2317                 CF_ADD_ADAFLAGS($cf_O_flag)
2318                 ;;
2319         esac
2320         AC_MSG_RESULT($ADAFLAGS)
2321 ])dnl
2322 dnl ---------------------------------------------------------------------------
2323 dnl CF_FIX_WARNINGS version: 3 updated: 2020/12/31 18:40:20
2324 dnl ---------------
2325 dnl Warning flags do not belong in CFLAGS, CPPFLAGS, etc.  Any of gcc's
2326 dnl "-Werror" flags can interfere with configure-checks.  Those go into
2327 dnl EXTRA_CFLAGS.
2328 dnl
2329 dnl $1 = variable name to repair
2330 define([CF_FIX_WARNINGS],[
2331 if test "$GCC" = yes || test "$GXX" = yes
2332 then
2333         case [$]$1 in
2334         (*-Werror=*)
2335                 CF_VERBOSE(repairing $1: [$]$1)
2336                 cf_temp_flags=
2337                 for cf_temp_scan in [$]$1
2338                 do
2339                         case "x$cf_temp_scan" in
2340                         (x-Werror=*)
2341                                 CF_APPEND_TEXT(EXTRA_CFLAGS,$cf_temp_scan)
2342                                 ;;
2343                         (*)
2344                                 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
2345                                 ;;
2346                         esac
2347                 done
2348                 $1="$cf_temp_flags"
2349                 CF_VERBOSE(... fixed [$]$1)
2350                 CF_VERBOSE(... extra $EXTRA_CFLAGS)
2351                 ;;
2352         esac
2353 fi
2354 AC_SUBST(EXTRA_CFLAGS)
2355 ])dnl
2356 dnl ---------------------------------------------------------------------------
2357 dnl CF_FOPEN_BIN_R version: 2 updated: 2019/12/31 08:53:54
2358 dnl --------------
2359 dnl Check if fopen works when the "b" (binary) flag is added to the mode
2360 dnl parameter.  POSIX ignores the "b", which c89 specified.  Some very old
2361 dnl systems do not accept it.
2362 AC_DEFUN([CF_FOPEN_BIN_R],[
2363 AC_CACHE_CHECK(if fopen accepts explicit binary mode,cf_cv_fopen_bin_r,[
2364         AC_TRY_RUN([
2365 #include <stdio.h>
2366 int main(void) {
2367         FILE *fp = fopen("conftest.tmp", "wb");
2368         int rc = 0;
2369         if (fp != 0) {
2370                 int p, q;
2371                 for (p = 0; p < 256; ++p) {
2372                         fputc(p, fp);
2373                 }
2374                 fclose(fp);
2375                 fp = fopen("conftest.tmp", "rb");
2376                 if (fp != 0) {
2377                         for (p = 0; p < 256; ++p) {
2378                                 q = fgetc(fp);
2379                                 if (q != p) {
2380                                         rc = 1;
2381                                         break;
2382                                 }
2383                         }
2384                 } else {
2385                         rc = 1;
2386                 }
2387         } else {
2388                 rc = 1;
2389         }
2390         ${cf_cv_main_return:-return} (rc);
2391 }
2392 ],
2393                 [cf_cv_fopen_bin_r=yes],
2394                 [cf_cv_fopen_bin_r=no],
2395                 [cf_cv_fopen_bin_r=unknown])
2396 ])
2397 test "x$cf_cv_fopen_bin_r" != xno && AC_DEFINE(USE_FOPEN_BIN_R,1,[Define to 1 if fopen accepts explicit binary mode])
2398 ])dnl
2399 dnl ---------------------------------------------------------------------------
2400 dnl CF_FORGET_TOOL version: 1 updated: 2013/04/06 18:03:09
2401 dnl --------------
2402 dnl Forget that we saw the given tool.
2403 AC_DEFUN([CF_FORGET_TOOL],[
2404 unset ac_cv_prog_ac_ct_$1
2405 unset ac_ct_$1
2406 unset $1
2407 ])dnl
2408 dnl ---------------------------------------------------------------------------
2409 dnl CF_FUNC_DLSYM version: 4 updated: 2015/09/12 14:46:44
2410 dnl -------------
2411 dnl Test for dlsym() and related functions, as well as libdl.
2412 dnl
2413 dnl Sets
2414 dnl     $cf_have_dlsym
2415 dnl     $cf_have_libdl
2416 AC_DEFUN([CF_FUNC_DLSYM],[
2417 cf_have_dlsym=no
2418 AC_CHECK_FUNC(dlsym,cf_have_dlsym=yes,[
2419
2420 cf_have_libdl=no
2421 AC_CHECK_LIB(dl,dlsym,[
2422         cf_have_dlsym=yes
2423         cf_have_libdl=yes])])
2424
2425 if test "$cf_have_dlsym" = yes ; then
2426         test "$cf_have_libdl" = yes && { CF_ADD_LIB(dl) }
2427
2428         AC_MSG_CHECKING(whether able to link to dl*() functions)
2429         AC_TRY_LINK([#include <dlfcn.h>],[
2430                 void *obj;
2431                 if ((obj = dlopen("filename", 0)) != 0) {
2432                         if (dlsym(obj, "symbolname") == 0) {
2433                         dlclose(obj);
2434                         }
2435                 }],[
2436                 AC_DEFINE(HAVE_LIBDL,1,[Define to 1 if we have dl library])],[
2437                 AC_MSG_ERROR(Cannot link test program for libdl)])
2438         AC_MSG_RESULT(ok)
2439 else
2440         AC_MSG_ERROR(Cannot find dlsym function)
2441 fi
2442 ])
2443 dnl ---------------------------------------------------------------------------
2444 dnl CF_FUNC_MEMMOVE version: 9 updated: 2017/01/21 11:06:25
2445 dnl ---------------
2446 dnl Check for memmove, or a bcopy that can handle overlapping copy.  If neither
2447 dnl is found, add our own version of memmove to the list of objects.
2448 AC_DEFUN([CF_FUNC_MEMMOVE],
2449 [
2450 AC_CHECK_FUNC(memmove,,[
2451 AC_CHECK_FUNC(bcopy,[
2452         AC_CACHE_CHECK(if bcopy does overlapping moves,cf_cv_good_bcopy,[
2453                 AC_TRY_RUN([
2454 int main(void) {
2455         static char data[] = "abcdefghijklmnopqrstuwwxyz";
2456         char temp[40];
2457         bcopy(data, temp, sizeof(data));
2458         bcopy(temp+10, temp, 15);
2459         bcopy(temp+5, temp+15, 10);
2460         ${cf_cv_main_return:-return} (strcmp(temp, "klmnopqrstuwwxypqrstuwwxyz"));
2461 }
2462                 ],
2463                 [cf_cv_good_bcopy=yes],
2464                 [cf_cv_good_bcopy=no],
2465                 [cf_cv_good_bcopy=unknown])
2466                 ])
2467         ],[cf_cv_good_bcopy=no])
2468         if test "$cf_cv_good_bcopy" = yes ; then
2469                 AC_DEFINE(USE_OK_BCOPY,1,[Define to 1 to use bcopy when memmove is unavailable])
2470         else
2471                 AC_DEFINE(USE_MY_MEMMOVE,1,[Define to 1 to use replacement function when memmove is unavailable])
2472         fi
2473 ])])dnl
2474 dnl ---------------------------------------------------------------------------
2475 dnl CF_FUNC_NANOSLEEP version: 5 updated: 2017/01/21 11:06:25
2476 dnl -----------------
2477 dnl Check for existence of workable nanosleep() function.  Some systems, e.g.,
2478 dnl AIX 4.x, provide a non-working version.
2479 AC_DEFUN([CF_FUNC_NANOSLEEP],[
2480 AC_CACHE_CHECK(if nanosleep really works,cf_cv_func_nanosleep,[
2481 AC_TRY_RUN([
2482 #include <stdio.h>
2483 #include <errno.h>
2484 #include <time.h>
2485
2486 #ifdef HAVE_SYS_TIME_H
2487 #include <sys/time.h>
2488 #endif
2489
2490 int main(void) {
2491         struct timespec ts1, ts2;
2492         int code;
2493         ts1.tv_sec  = 0;
2494         ts1.tv_nsec = 750000000;
2495         ts2.tv_sec  = 0;
2496         ts2.tv_nsec = 0;
2497         errno = 0;
2498         code = nanosleep(&ts1, &ts2); /* on failure errno is ENOSYS. */
2499         ${cf_cv_main_return:-return}(code != 0);
2500 }
2501 ],
2502         [cf_cv_func_nanosleep=yes],
2503         [cf_cv_func_nanosleep=no],
2504         [cf_cv_func_nanosleep=unknown])])
2505
2506 test "$cf_cv_func_nanosleep" = "yes" && AC_DEFINE(HAVE_NANOSLEEP,1,[Define to 1 if we have nanosleep()])
2507 ])
2508 dnl ---------------------------------------------------------------------------
2509 dnl CF_FUNC_OPENPTY version: 6 updated: 2021/01/01 13:31:04
2510 dnl ---------------
2511 dnl Check for openpty() function, along with <pty.h> header.  It may need the
2512 dnl "util" library as well.
2513 AC_DEFUN([CF_FUNC_OPENPTY],
2514 [
2515 AC_CHECK_LIB(util,openpty,cf_cv_lib_util=yes,cf_cv_lib_util=no)
2516 AC_CACHE_CHECK(for openpty header,cf_cv_func_openpty,[
2517         cf_save_LIBS="$LIBS"
2518         test "$cf_cv_lib_util" = yes && { CF_ADD_LIB(util) }
2519         for cf_header in pty.h libutil.h util.h
2520         do
2521         AC_TRY_LINK([
2522 #include <$cf_header>
2523 ],[
2524         int x = openpty((int *)0, (int *)0, (char *)0,
2525                                    (struct termios *)0, (struct winsize *)0);
2526 ],[
2527                 cf_cv_func_openpty=$cf_header
2528                 break
2529 ],[
2530                 cf_cv_func_openpty=no
2531 ])
2532         done
2533         LIBS="$cf_save_LIBS"
2534 ])
2535 ])dnl
2536 dnl ---------------------------------------------------------------------------
2537 dnl CF_FUNC_POLL version: 10 updated: 2021/01/04 19:13:57
2538 dnl ------------
2539 dnl See if the poll function really works.  Some platforms have poll(), but
2540 dnl it does not work for terminals or files.
2541 AC_DEFUN([CF_FUNC_POLL],[
2542 tty >/dev/null 2>&1 || { AC_CHECK_FUNCS(posix_openpt) }
2543 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[
2544 AC_TRY_RUN([
2545 #include <stdlib.h>
2546 #include <stdio.h>
2547 #include <unistd.h>
2548 #include <fcntl.h>
2549 #ifdef HAVE_POLL_H
2550 #include <poll.h>
2551 #else
2552 #include <sys/poll.h>
2553 #endif
2554 int main(void) {
2555         struct pollfd myfds;
2556         int ret;
2557
2558         /* check for Darwin bug with respect to "devices" */
2559         myfds.fd = open("/dev/null", 1);        /* O_WRONLY */
2560         if (myfds.fd < 0)
2561                 myfds.fd = 0;
2562         myfds.events = POLLIN;
2563         myfds.revents = 0;
2564
2565         ret = poll(&myfds, 1, 100);
2566
2567         if (ret < 0 || (myfds.revents & POLLNVAL)) {
2568                 ret = -1;
2569         } else {
2570                 int fd = 0;
2571                 if (!isatty(fd)) {
2572                         fd = open("/dev/tty", 2);       /* O_RDWR */
2573                 }
2574 #ifdef HAVE_POSIX_OPENPT
2575                 if (fd < 0) {
2576                         fd = posix_openpt(O_RDWR);
2577                 }
2578 #endif
2579
2580                 if (fd >= 0) {
2581                         /* also check with standard input */
2582                         myfds.fd = fd;
2583                         myfds.events = POLLIN;
2584                         myfds.revents = 0;
2585                         ret = poll(&myfds, 1, 100);
2586                 } else {
2587                         ret = -1;
2588                 }
2589         }
2590         ${cf_cv_main_return:-return}(ret < 0);
2591 }],
2592         [cf_cv_working_poll=yes],
2593         [cf_cv_working_poll=no],
2594         [cf_cv_working_poll=unknown])])
2595 test "$cf_cv_working_poll" = "yes" && AC_DEFINE(HAVE_WORKING_POLL,1,[Define to 1 if the poll function seems to work])
2596 ])dnl
2597 dnl ---------------------------------------------------------------------------
2598 dnl CF_FUNC_TERMIOS version: 3 updated: 2012/10/06 17:56:13
2599 dnl ---------------
2600 dnl Some old/broken variations define tcgetattr() only as a macro in
2601 dnl termio(s).h
2602 AC_DEFUN([CF_FUNC_TERMIOS],[
2603 AC_REQUIRE([CF_STRUCT_TERMIOS])
2604 AC_CACHE_CHECK(for tcgetattr, cf_cv_have_tcgetattr,[
2605 AC_TRY_LINK([
2606 #include <sys/types.h>
2607 #ifdef HAVE_UNISTD_H
2608 #include <unistd.h>
2609 #endif
2610 #ifdef HAVE_TERMIOS_H
2611 #include <termios.h>
2612 #define TTY struct termios
2613 #else
2614 #ifdef HAVE_TERMIO_H
2615 #include <termio.h>
2616 #define TTY struct termio
2617 #endif
2618 #endif
2619 ],[
2620 TTY foo;
2621 tcgetattr(1, &foo);],
2622 [cf_cv_have_tcgetattr=yes],
2623 [cf_cv_have_tcgetattr=no])])
2624 test "$cf_cv_have_tcgetattr" = yes && AC_DEFINE(HAVE_TCGETATTR,1,[Define to 1 if we have tcgetattr])
2625 ])dnl
2626 dnl ---------------------------------------------------------------------------
2627 dnl CF_FUNC_VSSCANF version: 7 updated: 2021/01/01 13:31:04
2628 dnl ---------------
2629 dnl Check for vsscanf() function, which is in c9x but generally not in earlier
2630 dnl versions of C.  It is in the GNU C library, and can often be simulated by
2631 dnl other functions.
2632 AC_DEFUN([CF_FUNC_VSSCANF],
2633 [
2634 AC_CACHE_CHECK(for vsscanf function or workaround,cf_cv_func_vsscanf,[
2635 AC_TRY_LINK([
2636 #include <stdarg.h>
2637 #include <stdio.h>],[
2638         va_list ap;
2639         vsscanf("from", "%d", ap)],[cf_cv_func_vsscanf=vsscanf],[
2640 AC_TRY_LINK([
2641 #include <stdarg.h>
2642 #include <stdio.h>],[
2643         FILE strbuf;
2644         char *str = "from";
2645
2646         strbuf._flag = _IOREAD;
2647         strbuf._ptr = strbuf._base = (unsigned char *) str;
2648         strbuf._cnt = strlen(str);
2649         strbuf._file = _NFILE;
2650         return (vfscanf(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=vfscanf],[
2651 AC_TRY_LINK([
2652 #include <stdarg.h>
2653 #include <stdio.h>],[
2654         FILE strbuf;
2655         char *str = "from";
2656
2657         strbuf._flag = _IOREAD;
2658         strbuf._ptr = strbuf._base = (unsigned char *) str;
2659         strbuf._cnt = strlen(str);
2660         strbuf._file = _NFILE;
2661         return (_doscan(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=_doscan],[
2662 cf_cv_func_vsscanf=no])])])])
2663
2664 case "$cf_cv_func_vsscanf" in
2665 (vsscanf) AC_DEFINE(HAVE_VSSCANF,1,[Define to 1 if we have vsscanf]);;
2666 (vfscanf) AC_DEFINE(HAVE_VFSCANF,1,[Define to 1 if we have vfscanf]);;
2667 (_doscan) AC_DEFINE(HAVE__DOSCAN,1,[Define to 1 if we have _doscan]);;
2668 esac
2669
2670 ])dnl
2671 dnl ---------------------------------------------------------------------------
2672 dnl CF_GCC_ATTRIBUTES version: 23 updated: 2021/01/03 18:30:50
2673 dnl -----------------
2674 dnl Test for availability of useful gcc __attribute__ directives to quiet
2675 dnl compiler warnings.  Though useful, not all are supported -- and contrary
2676 dnl to documentation, unrecognized directives cause older compilers to barf.
2677 AC_DEFUN([CF_GCC_ATTRIBUTES],
2678 [AC_REQUIRE([AC_PROG_FGREP])dnl
2679
2680 if test "$GCC" = yes || test "$GXX" = yes
2681 then
2682 cat > conftest.i <<EOF
2683 #ifndef GCC_PRINTF
2684 #define GCC_PRINTF 0
2685 #endif
2686 #ifndef GCC_SCANF
2687 #define GCC_SCANF 0
2688 #endif
2689 #ifndef GCC_NORETURN
2690 #define GCC_NORETURN /* nothing */
2691 #endif
2692 #ifndef GCC_UNUSED
2693 #define GCC_UNUSED /* nothing */
2694 #endif
2695 EOF
2696 if test "$GCC" = yes
2697 then
2698         AC_CHECKING([for $CC __attribute__ directives])
2699 cat > "conftest.$ac_ext" <<EOF
2700 #line __oline__ "${as_me:-configure}"
2701 #include "confdefs.h"
2702 #include "conftest.h"
2703 #include "conftest.i"
2704 #if     GCC_PRINTF
2705 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
2706 #else
2707 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
2708 #endif
2709 #if     GCC_SCANF
2710 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
2711 #else
2712 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
2713 #endif
2714 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
2715 extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
2716 extern void foo(void) GCC_NORETURN;
2717 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { (void)argc; (void)argv; return 0; }
2718 EOF
2719         cf_printf_attribute=no
2720         cf_scanf_attribute=no
2721         for cf_attribute in scanf printf unused noreturn
2722         do
2723                 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
2724                 cf_directive="__attribute__(($cf_attribute))"
2725                 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
2726
2727                 case "$cf_attribute" in
2728                 (printf)
2729                         cf_printf_attribute=yes
2730                         cat >conftest.h <<EOF
2731 #define GCC_$cf_ATTRIBUTE 1
2732 EOF
2733                         ;;
2734                 (scanf)
2735                         cf_scanf_attribute=yes
2736                         cat >conftest.h <<EOF
2737 #define GCC_$cf_ATTRIBUTE 1
2738 EOF
2739                         ;;
2740                 (*)
2741                         cat >conftest.h <<EOF
2742 #define GCC_$cf_ATTRIBUTE $cf_directive
2743 EOF
2744                         ;;
2745                 esac
2746
2747                 if AC_TRY_EVAL(ac_compile); then
2748                         test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
2749                         cat conftest.h >>confdefs.h
2750                         case "$cf_attribute" in
2751                         (noreturn)
2752                                 AC_DEFINE_UNQUOTED(GCC_NORETURN,$cf_directive,[Define to noreturn-attribute for gcc])
2753                                 ;;
2754                         (printf)
2755                                 cf_value='/* nothing */'
2756                                 if test "$cf_printf_attribute" != no ; then
2757                                         cf_value='__attribute__((format(printf,fmt,var)))'
2758                                         AC_DEFINE(GCC_PRINTF,1,[Define to 1 if the compiler supports gcc-like printf attribute.])
2759                                 fi
2760                                 AC_DEFINE_UNQUOTED(GCC_PRINTFLIKE(fmt,var),$cf_value,[Define to printf-attribute for gcc])
2761                                 ;;
2762                         (scanf)
2763                                 cf_value='/* nothing */'
2764                                 if test "$cf_scanf_attribute" != no ; then
2765                                         cf_value='__attribute__((format(scanf,fmt,var)))'
2766                                         AC_DEFINE(GCC_SCANF,1,[Define to 1 if the compiler supports gcc-like scanf attribute.])
2767                                 fi
2768                                 AC_DEFINE_UNQUOTED(GCC_SCANFLIKE(fmt,var),$cf_value,[Define to sscanf-attribute for gcc])
2769                                 ;;
2770                         (unused)
2771                                 AC_DEFINE_UNQUOTED(GCC_UNUSED,$cf_directive,[Define to unused-attribute for gcc])
2772                                 ;;
2773                         esac
2774                 fi
2775         done
2776 else
2777         ${FGREP-fgrep} define conftest.i >>confdefs.h
2778 fi
2779 rm -rf ./conftest*
2780 fi
2781 ])dnl
2782 dnl ---------------------------------------------------------------------------
2783 dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
2784 dnl --------------
2785 dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
2786 dnl compatible), attempt to determine if icc/clang is actually used.
2787 AC_DEFUN([CF_GCC_VERSION],[
2788 AC_REQUIRE([AC_PROG_CC])
2789 GCC_VERSION=none
2790 if test "$GCC" = yes ; then
2791         AC_MSG_CHECKING(version of $CC)
2792         GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC[[^)]]*) //' -e 's/^.*(Debian[[^)]]*) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
2793         test -z "$GCC_VERSION" && GCC_VERSION=unknown
2794         AC_MSG_RESULT($GCC_VERSION)
2795 fi
2796 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
2797 CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
2798 ])dnl
2799 dnl ---------------------------------------------------------------------------
2800 dnl CF_GCC_WARNINGS version: 41 updated: 2021/01/01 16:53:59
2801 dnl ---------------
2802 dnl Check if the compiler supports useful warning options.  There's a few that
2803 dnl we don't use, simply because they're too noisy:
2804 dnl
2805 dnl     -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
2806 dnl     -Winline (usually not worthwhile)
2807 dnl     -Wredundant-decls (system headers make this too noisy)
2808 dnl     -Wtraditional (combines too many unrelated messages, only a few useful)
2809 dnl     -Wwrite-strings (too noisy, but should review occasionally).  This
2810 dnl             is enabled for ncurses using "--enable-const".
2811 dnl     -pedantic
2812 dnl
2813 dnl Parameter:
2814 dnl     $1 is an optional list of gcc warning flags that a particular
2815 dnl             application might want to use, e.g., "no-unused" for
2816 dnl             -Wno-unused
2817 dnl Special:
2818 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
2819 dnl
2820 AC_DEFUN([CF_GCC_WARNINGS],
2821 [
2822 AC_REQUIRE([CF_GCC_VERSION])
2823 if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
2824 cat > "conftest.$ac_ext" <<EOF
2825 #line __oline__ "${as_me:-configure}"
2826 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
2827 EOF
2828 if test "$INTEL_COMPILER" = yes
2829 then
2830 # The "-wdXXX" options suppress warnings:
2831 # remark #1419: external declaration in primary source file
2832 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
2833 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
2834 # remark #193: zero used for undefined preprocessing identifier
2835 # remark #593: variable "curs_sb_left_arrow" was set but never used
2836 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
2837 # remark #869: parameter "tw" was never referenced
2838 # remark #981: operands are evaluated in unspecified order
2839 # warning #279: controlling expression is constant
2840
2841         AC_CHECKING([for $CC warning options])
2842         cf_save_CFLAGS="$CFLAGS"
2843         EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
2844         for cf_opt in \
2845                 wd1419 \
2846                 wd1683 \
2847                 wd1684 \
2848                 wd193 \
2849                 wd593 \
2850                 wd279 \
2851                 wd810 \
2852                 wd869 \
2853                 wd981
2854         do
2855                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
2856                 if AC_TRY_EVAL(ac_compile); then
2857                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2858                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
2859                 fi
2860         done
2861         CFLAGS="$cf_save_CFLAGS"
2862 elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown"
2863 then
2864         AC_CHECKING([for $CC warning options])
2865         cf_save_CFLAGS="$CFLAGS"
2866         cf_warn_CONST=""
2867         test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
2868         cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs"
2869         test "x$CLANG_COMPILER" = xyes && cf_gcc_warnings=
2870         for cf_opt in W Wall \
2871                 Wbad-function-cast \
2872                 Wcast-align \
2873                 Wcast-qual \
2874                 Wdeclaration-after-statement \
2875                 Wextra \
2876                 Winline \
2877                 Wmissing-declarations \
2878                 Wmissing-prototypes \
2879                 Wnested-externs \
2880                 Wpointer-arith \
2881                 Wshadow \
2882                 Wstrict-prototypes \
2883                 Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST $1
2884         do
2885                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
2886                 if AC_TRY_EVAL(ac_compile); then
2887                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2888                         case "$cf_opt" in
2889                         (Winline)
2890                                 case "$GCC_VERSION" in
2891                                 ([[34]].*)
2892                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
2893                                         continue;;
2894                                 esac
2895                                 ;;
2896                         (Wpointer-arith)
2897                                 case "$GCC_VERSION" in
2898                                 ([[12]].*)
2899                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
2900                                         continue;;
2901                                 esac
2902                                 ;;
2903                         esac
2904                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
2905                 fi
2906         done
2907         CFLAGS="$cf_save_CFLAGS"
2908 fi
2909 rm -rf ./conftest*
2910
2911 AC_SUBST(EXTRA_CFLAGS)
2912 ])dnl
2913 dnl ---------------------------------------------------------------------------
2914 dnl CF_GETOPT_HEADER version: 7 updated: 2021/01/01 13:31:04
2915 dnl ----------------
2916 dnl Check for getopt's variables which are commonly defined in stdlib.h,
2917 dnl unistd.h or (nonstandard) in getopt.h
2918 AC_DEFUN([CF_GETOPT_HEADER],
2919 [
2920 AC_HAVE_HEADERS(unistd.h getopt.h)
2921 AC_CACHE_CHECK(for header declaring getopt variables,cf_cv_getopt_header,[
2922 cf_cv_getopt_header=none
2923 for cf_header in stdio.h stdlib.h unistd.h getopt.h
2924 do
2925 AC_TRY_COMPILE([
2926 #include <$cf_header>],
2927 [int x = optind; char *y = optarg],
2928 [cf_cv_getopt_header=$cf_header
2929  break])
2930 done
2931 ])
2932 if test "$cf_cv_getopt_header" != none ; then
2933         AC_DEFINE(HAVE_GETOPT_HEADER,1,[Define to 1 if getopt variables are declared in header])
2934 fi
2935 if test "$cf_cv_getopt_header" = getopt.h ; then
2936         AC_DEFINE(NEED_GETOPT_H,1,[Define to 1 if we must include getopt.h])
2937 fi
2938 ])dnl
2939 dnl ---------------------------------------------------------------------------
2940 dnl CF_GNATPREP_OPT_T version: 1 updated: 2014/08/02 18:37:25
2941 dnl -----------------
2942 AC_DEFUN([CF_GNATPREP_OPT_T],[
2943 AC_CACHE_CHECK(if GNATPREP supports -T option,cf_cv_gnatprep_opt_t,[
2944 cf_cv_gnatprep_opt_t=no
2945 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
2946 ])
2947 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
2948 AC_SUBST(GNATPREP_OPTS)
2949 ])dnl
2950 dnl ---------------------------------------------------------------------------
2951 dnl CF_GNAT_GENERICS version: 7 updated: 2021/01/01 13:31:04
2952 dnl ----------------
2953 AC_DEFUN([CF_GNAT_GENERICS],
2954 [
2955 AC_REQUIRE([CF_GNAT_VERSION])
2956
2957 AC_MSG_CHECKING(if GNAT supports generics)
2958 case "$cf_cv_gnat_version" in
2959 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
2960         cf_gnat_generics=yes
2961         ;;
2962 (*)
2963         cf_gnat_generics=no
2964         ;;
2965 esac
2966 AC_MSG_RESULT($cf_gnat_generics)
2967
2968 if test "$cf_gnat_generics" = yes
2969 then
2970         cf_compile_generics=generics
2971         cf_generic_objects="\${GENOBJS}"
2972 else
2973         cf_compile_generics=
2974         cf_generic_objects=
2975 fi
2976
2977 AC_SUBST(cf_compile_generics)
2978 AC_SUBST(cf_generic_objects)
2979 ])dnl
2980 dnl ---------------------------------------------------------------------------
2981 dnl CF_GNAT_PROJECTS version: 13 updated: 2021/01/02 17:09:14
2982 dnl ----------------
2983 dnl GNAT projects are configured with ".gpr" project files.
2984 dnl GNAT libraries are a further development, using the project feature.
2985 AC_DEFUN([CF_GNAT_PROJECTS],
2986 [
2987 AC_REQUIRE([CF_GNAT_VERSION])
2988 AC_REQUIRE([CF_DISABLE_GNAT_PROJECTS])
2989
2990 cf_gnat_libraries=no
2991 cf_gnat_projects=no
2992
2993 if test "$enable_gnat_projects" != no ; then
2994 AC_MSG_CHECKING(if GNAT supports project files)
2995 case "$cf_cv_gnat_version" in
2996 (3.[[0-9]]*)
2997         ;;
2998 (*)
2999         case "$cf_cv_system_name" in
3000         (cygwin*|msys*)
3001                 ;;
3002         (*)
3003                 rm -rf ./conftest* ./*~conftest*
3004                 if mkdir conftest.src conftest.bin conftest.lib
3005                 then
3006                         cd conftest.src
3007                         rm -rf ./conftest* ./*~conftest*
3008                         cat >>library.gpr <<CF_EOF
3009 project Library is
3010   Kind := External ("LIB_KIND");
3011   for Library_Name use "ConfTest";
3012   for Object_Dir use ".";
3013   for Library_ALI_Dir use External("LIBRARY_DIR");
3014   for Library_Version use External ("SONAME");
3015   for Library_Kind use Kind;
3016   for Library_Dir use External("BUILD_DIR");
3017   Source_Dir := External ("SOURCE_DIR");
3018   for Source_Dirs use (Source_Dir);
3019 end Library;
3020 CF_EOF
3021                         cat >>confpackage.ads <<CF_EOF
3022 package ConfPackage is
3023    procedure conftest;
3024 end ConfPackage;
3025 CF_EOF
3026                         cat >>confpackage.adb <<CF_EOF
3027 with Text_IO;
3028 package body ConfPackage is
3029    procedure conftest is
3030    begin
3031       Text_IO.Put ("Hello World");
3032       Text_IO.New_Line;
3033    end conftest;
3034 end ConfPackage;
3035 CF_EOF
3036                         if ( "$cf_ada_make" $ADAFLAGS \
3037                                         -Plibrary.gpr \
3038                                         -XBUILD_DIR="`cd ../conftest.bin;pwd`" \
3039                                         -XLIBRARY_DIR="`cd ../conftest.lib;pwd`" \
3040                                         -XSOURCE_DIR="`pwd`" \
3041                                         -XSONAME=libConfTest.so.1 \
3042                                         -XLIB_KIND=static 1>&AC_FD_CC 2>&1 ) ; then
3043                                 cf_gnat_projects=yes
3044                         fi
3045                         cd ..
3046                 fi
3047                 if test -f conftest.lib/confpackage.ali
3048                 then
3049                         cf_gnat_libraries=yes
3050                 fi
3051                 rm -rf ./conftest* ./*~conftest*
3052                 ;;
3053         esac
3054         ;;
3055 esac
3056 AC_MSG_RESULT($cf_gnat_projects)
3057 fi # enable_gnat_projects
3058
3059 if test "$cf_gnat_projects" = yes
3060 then
3061         AC_MSG_CHECKING(if GNAT supports libraries)
3062         AC_MSG_RESULT($cf_gnat_libraries)
3063 fi
3064
3065 USE_OLD_MAKERULES=""
3066 USE_GNAT_PROJECTS="#"
3067 USE_GNAT_MAKE_GPR="#"
3068 USE_GNAT_GPRBUILD="#"
3069
3070 if test "$cf_gnat_projects" = yes
3071 then
3072         USE_OLD_MAKERULES="#"
3073         USE_GNAT_PROJECTS=""
3074         if test "$cf_cv_VERSION_GPRBUILD" != no
3075         then
3076                 USE_GNAT_GPRBUILD=""
3077         elif test "$cf_cv_VERSION_GNATMAKE" != no
3078         then
3079                 USE_GNAT_MAKE_GPR=""
3080         else
3081                 AC_MSG_WARN(use old makefile rules since tools are missing)
3082         fi
3083 fi
3084
3085 if test "$cf_gnat_libraries" = yes
3086 then
3087         USE_GNAT_LIBRARIES=""
3088 else
3089         USE_GNAT_LIBRARIES="#"
3090 fi
3091
3092 AC_SUBST(USE_OLD_MAKERULES)
3093 AC_SUBST(USE_GNAT_PROJECTS)
3094 AC_SUBST(USE_GNAT_LIBRARIES)
3095 AC_SUBST(USE_GNAT_MAKE_GPR)
3096 AC_SUBST(USE_GNAT_GPRBUILD)
3097 ])dnl
3098 dnl ---------------------------------------------------------------------------
3099 dnl CF_GNAT_SIGINT version: 2 updated: 2021/01/01 13:31:04
3100 dnl --------------
3101 dnl Check if gnat supports SIGINT, and presumably tasking.  For the latter, it
3102 dnl is noted that gnat may compile a tasking unit even for configurations which
3103 dnl fail at runtime.
3104 AC_DEFUN([CF_GNAT_SIGINT],[
3105 AC_CACHE_CHECK(if GNAT supports SIGINT,cf_cv_gnat_sigint,[
3106 CF_GNAT_TRY_LINK([with Ada.Interrupts.Names;
3107
3108 package ConfTest is
3109
3110    pragma Warnings (Off);  --  the next pragma exists since 3.11p
3111    pragma Unreserve_All_Interrupts;
3112    pragma Warnings (On);
3113
3114    protected Process is
3115       procedure Stop;
3116       function Continue return Boolean;
3117       pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT);
3118    private
3119       Done : Boolean := False;
3120    end Process;
3121
3122 end ConfTest;],
3123 [package body ConfTest is
3124    protected body Process is
3125       procedure Stop is
3126       begin
3127          Done := True;
3128       end Stop;
3129       function Continue return Boolean is
3130       begin
3131          return not Done;
3132       end Continue;
3133    end Process;
3134 end ConfTest;],
3135         [cf_cv_gnat_sigint=yes],
3136         [cf_cv_gnat_sigint=no])])
3137
3138 if test "$cf_cv_gnat_sigint" = yes ; then
3139         USE_GNAT_SIGINT=""
3140 else
3141         USE_GNAT_SIGINT="#"
3142 fi
3143 AC_SUBST(USE_GNAT_SIGINT)
3144 ])dnl
3145 dnl ---------------------------------------------------------------------------
3146 dnl CF_GNAT_TRY_LINK version: 4 updated: 2021/01/01 13:31:04
3147 dnl ----------------
3148 dnl Verify that a test program compiles/links with GNAT.
3149 dnl $cf_ada_make is set to the program that compiles/links
3150 dnl $ADAFLAGS may be set to the GNAT flags.
3151 dnl
3152 dnl $1 is the text of the spec
3153 dnl $2 is the text of the body
3154 dnl $3 is the shell command to execute if successful
3155 dnl $4 is the shell command to execute if not successful
3156 AC_DEFUN([CF_GNAT_TRY_LINK],
3157 [
3158 rm -rf ./conftest* ./*~conftest*
3159 cat >>conftest.ads <<CF_EOF
3160 $1
3161 CF_EOF
3162 cat >>conftest.adb <<CF_EOF
3163 $2
3164 CF_EOF
3165 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3166 ifelse($3,,      :,[      $3])
3167 ifelse($4,,,[else
3168    $4])
3169 fi
3170 rm -rf ./conftest* ./*~conftest*
3171 ])dnl
3172 dnl ---------------------------------------------------------------------------
3173 dnl CF_GNAT_TRY_RUN version: 6 updated: 2021/01/01 13:31:04
3174 dnl ---------------
3175 dnl Verify that a test program compiles and runs with GNAT
3176 dnl $cf_ada_make is set to the program that compiles/links
3177 dnl $ADAFLAGS may be set to the GNAT flags.
3178 dnl
3179 dnl $1 is the text of the spec
3180 dnl $2 is the text of the body
3181 dnl $3 is the shell command to execute if successful
3182 dnl $4 is the shell command to execute if not successful
3183 AC_DEFUN([CF_GNAT_TRY_RUN],
3184 [
3185 rm -rf ./conftest* ./*~conftest*
3186 cat >>conftest.ads <<CF_EOF
3187 $1
3188 CF_EOF
3189 cat >>conftest.adb <<CF_EOF
3190 $2
3191 CF_EOF
3192 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
3193    if ( ./conftest 1>&AC_FD_CC 2>&1 ) ; then
3194 ifelse($3,,      :,[      $3])
3195 ifelse($4,,,[   else
3196       $4])
3197    fi
3198 ifelse($4,,,[else
3199    $4])
3200 fi
3201 rm -rf ./conftest* ./*~conftest*
3202 ])dnl
3203 dnl ---------------------------------------------------------------------------
3204 dnl CF_GNAT_VERSION version: 22 updated: 2019/12/31 08:53:54
3205 dnl ---------------
3206 dnl $1 = cache variable to update
3207 dnl $2 = program name
3208 dnl Verify version of GNAT or related tool
3209 AC_DEFUN([CF_GNAT_VERSION],
3210 [
3211 AC_CACHE_CHECK(for ifelse($2,,gnat,$2) version, cf_cv_gnat_version,[
3212 cf_cv_gnat_version=`ifelse($2,,${cf_ada_make:-gnatmake},$2) --version 2>&1 | \
3213         grep '[[0-9]].[[0-9]][[0-9]]*' |\
3214         sed -e '2,$d' -e 's/[[^0-9 \.]]//g' -e 's/^[[ ]]*//' -e 's/ .*//'`
3215 ])
3216 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no
3217 ifelse($1,,,[eval $1=$cf_cv_gnat_version; unset cf_cv_gnat_version])
3218 ])dnl
3219 dnl ---------------------------------------------------------------------------
3220 dnl CF_GNU_SOURCE version: 10 updated: 2018/12/10 20:09:41
3221 dnl -------------
3222 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
3223 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
3224 dnl (or misfeature) of glibc2, which breaks portability of many applications,
3225 dnl since it is interwoven with GNU extensions.
3226 dnl
3227 dnl Well, yes we could work around it...
3228 dnl
3229 dnl Parameters:
3230 dnl     $1 is the nominal value for _XOPEN_SOURCE
3231 AC_DEFUN([CF_GNU_SOURCE],
3232 [
3233 cf_gnu_xopen_source=ifelse($1,,500,$1)
3234
3235 AC_CACHE_CHECK(if this is the GNU C library,cf_cv_gnu_library,[
3236 AC_TRY_COMPILE([#include <sys/types.h>],[
3237         #if __GLIBC__ > 0 && __GLIBC_MINOR__ >= 0
3238                 return 0;
3239         #elif __NEWLIB__ > 0 && __NEWLIB_MINOR__ >= 0
3240                 return 0;
3241         #else
3242         #       error not GNU C library
3243         #endif],
3244         [cf_cv_gnu_library=yes],
3245         [cf_cv_gnu_library=no])
3246 ])
3247
3248 if test x$cf_cv_gnu_library = xyes; then
3249
3250         # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
3251         # was changed to help a little.  newlib incorporated the change about 4
3252         # years later.
3253         AC_CACHE_CHECK(if _DEFAULT_SOURCE can be used as a basis,cf_cv_gnu_library_219,[
3254                 cf_save="$CPPFLAGS"
3255                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3256                 AC_TRY_COMPILE([#include <sys/types.h>],[
3257                         #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 19) || (__GLIBC__ > 2)
3258                                 return 0;
3259                         #elif (__NEWLIB__ == 2 && __NEWLIB_MINOR__ >= 4) || (__GLIBC__ > 3)
3260                                 return 0;
3261                         #else
3262                         #       error GNU C library __GLIBC__.__GLIBC_MINOR__ is too old
3263                         #endif],
3264                         [cf_cv_gnu_library_219=yes],
3265                         [cf_cv_gnu_library_219=no])
3266                 CPPFLAGS="$cf_save"
3267         ])
3268
3269         if test "x$cf_cv_gnu_library_219" = xyes; then
3270                 cf_save="$CPPFLAGS"
3271                 AC_CACHE_CHECK(if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE,cf_cv_gnu_dftsrc_219,[
3272                         CF_ADD_CFLAGS(-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=$cf_gnu_xopen_source)
3273                         AC_TRY_COMPILE([
3274                                 #include <limits.h>
3275                                 #include <sys/types.h>
3276                                 ],[
3277                                 #if (_XOPEN_SOURCE >= $cf_gnu_xopen_source) && (MB_LEN_MAX > 1)
3278                                         return 0;
3279                                 #else
3280                                 #       error GNU C library is too old
3281                                 #endif],
3282                                 [cf_cv_gnu_dftsrc_219=yes],
3283                                 [cf_cv_gnu_dftsrc_219=no])
3284                         ])
3285                 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
3286         else
3287                 cf_cv_gnu_dftsrc_219=maybe
3288         fi
3289
3290         if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
3291
3292                 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
3293                 AC_TRY_COMPILE([#include <sys/types.h>],[
3294                         #ifndef _XOPEN_SOURCE
3295                         #error  expected _XOPEN_SOURCE to be defined
3296                         #endif],
3297                         [cf_cv_gnu_source=no],
3298                         [cf_save="$CPPFLAGS"
3299                          CF_ADD_CFLAGS(-D_GNU_SOURCE)
3300                          AC_TRY_COMPILE([#include <sys/types.h>],[
3301                                 #ifdef _XOPEN_SOURCE
3302                                 #error  expected _XOPEN_SOURCE to be undefined
3303                                 #endif],
3304                                 [cf_cv_gnu_source=no],
3305                                 [cf_cv_gnu_source=yes])
3306                         CPPFLAGS="$cf_save"
3307                         ])
3308                 ])
3309
3310                 if test "$cf_cv_gnu_source" = yes
3311                 then
3312                 AC_CACHE_CHECK(if we should also define _DEFAULT_SOURCE,cf_cv_default_source,[
3313                         CF_APPEND_TEXT(CPPFLAGS,-D_GNU_SOURCE)
3314                         AC_TRY_COMPILE([#include <sys/types.h>],[
3315                                 #ifdef _DEFAULT_SOURCE
3316                                 #error  expected _DEFAULT_SOURCE to be undefined
3317                                 #endif],
3318                                 [cf_cv_default_source=no],
3319                                 [cf_cv_default_source=yes])
3320                         ])
3321                         if test "$cf_cv_default_source" = yes
3322                         then
3323                                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
3324                         fi
3325                 fi
3326         fi
3327
3328 fi
3329 ])dnl
3330 dnl ---------------------------------------------------------------------------
3331 dnl CF_GPP_LIBRARY version: 13 updated: 2021/01/01 13:31:04
3332 dnl --------------
3333 dnl If we're trying to use g++, test if libg++ is installed (a rather common
3334 dnl problem :-).  If we have the compiler but no library, we'll be able to
3335 dnl configure, but won't be able to build the c++ demo program.
3336 AC_DEFUN([CF_GPP_LIBRARY],
3337 [
3338 cf_cxx_library=unknown
3339 case "$cf_cv_system_name" in
3340 (os2*)
3341         cf_gpp_libname=gpp
3342         ;;
3343 (*)
3344         cf_gpp_libname=g++
3345         ;;
3346 esac
3347 if test "$GXX" = yes; then
3348         AC_MSG_CHECKING([for lib$cf_gpp_libname])
3349         cf_save="$LIBS"
3350         CF_ADD_LIB($cf_gpp_libname)
3351         AC_TRY_LINK([
3352 #include <$cf_gpp_libname/builtin.h>
3353         ],
3354         [two_arg_error_handler_t foo2 = lib_error_handler],
3355         [cf_cxx_library=yes
3356          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3357          if test "$cf_gpp_libname" = cpp ; then
3358             AC_DEFINE(HAVE_GPP_BUILTIN_H,1,[Define to 1 if we have gpp builtin.h])
3359          else
3360             AC_DEFINE(HAVE_GXX_BUILTIN_H,1,[Define to 1 if we have g++ builtin.h])
3361          fi],
3362         [AC_TRY_LINK([
3363 #include <builtin.h>
3364         ],
3365         [two_arg_error_handler_t foo2 = lib_error_handler],
3366         [cf_cxx_library=yes
3367          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
3368          AC_DEFINE(HAVE_BUILTIN_H,1,[Define to 1 if we have builtin.h])],
3369         [cf_cxx_library=no])])
3370         LIBS="$cf_save"
3371         AC_MSG_RESULT($cf_cxx_library)
3372 fi
3373 ])dnl
3374 dnl ---------------------------------------------------------------------------
3375 dnl CF_GXX_VERSION version: 8 updated: 2017/02/11 14:48:57
3376 dnl --------------
3377 dnl Check for version of g++
3378 AC_DEFUN([CF_GXX_VERSION],[
3379 AC_REQUIRE([AC_PROG_CPP])
3380 GXX_VERSION=none
3381 if test "$GXX" = yes; then
3382         AC_MSG_CHECKING(version of ${CXX:-g++})
3383         GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
3384         if test -z "$GXX_VERSION"
3385         then
3386                 GXX_VERSION=unknown
3387                 GXX=no
3388         fi
3389         AC_MSG_RESULT($GXX_VERSION)
3390 fi
3391 ])dnl
3392 dnl ---------------------------------------------------------------------------
3393 dnl CF_GXX_WARNINGS version: 11 updated: 2021/01/08 16:50:55
3394 dnl ---------------
3395 dnl Check if the compiler supports useful warning options.
3396 dnl
3397 dnl Most of gcc's options apply to g++, except:
3398 dnl     -Wbad-function-cast
3399 dnl     -Wmissing-declarations
3400 dnl     -Wnested-externs
3401 dnl
3402 dnl Omit a few (for now):
3403 dnl     -Winline
3404 dnl
3405 dnl Parameter:
3406 dnl     $1 is an optional list of g++ warning flags that a particular
3407 dnl             application might want to use, e.g., "no-unused" for
3408 dnl             -Wno-unused
3409 dnl Special:
3410 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
3411 dnl
3412 AC_DEFUN([CF_GXX_WARNINGS],
3413 [
3414
3415 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS)
3416 CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS)
3417
3418 AC_REQUIRE([CF_GXX_VERSION])
3419
3420 AC_LANG_SAVE
3421 AC_LANG_CPLUSPLUS
3422
3423 cat > conftest.$ac_ext <<EOF
3424 #line __oline__ "configure"
3425 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
3426 EOF
3427
3428 if test "$INTEL_CPLUSPLUS" = yes
3429 then
3430 # The "-wdXXX" options suppress warnings:
3431 # remark #1419: external declaration in primary source file
3432 # remark #1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3433 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
3434 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
3435 # remark #193: zero used for undefined preprocessing identifier
3436 # remark #593: variable "curs_sb_left_arrow" was set but never used
3437 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
3438 # remark #869: parameter "tw" was never referenced
3439 # remark #981: operands are evaluated in unspecified order
3440 # warning #269: invalid format string conversion
3441
3442         AC_CHECKING([for $CC warning options])
3443         cf_save_CXXFLAGS="$CXXFLAGS"
3444         EXTRA_CXXFLAGS="-Wall"
3445         for cf_opt in \
3446                 wd1419 \
3447                 wd1682 \
3448                 wd1683 \
3449                 wd1684 \
3450                 wd193 \
3451                 wd279 \
3452                 wd593 \
3453                 wd810 \
3454                 wd869 \
3455                 wd981
3456         do
3457                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
3458                 if AC_TRY_EVAL(ac_compile); then
3459                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3460                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3461                 fi
3462         done
3463         CXXFLAGS="$cf_save_CXXFLAGS"
3464
3465 elif test "$GXX" = yes
3466 then
3467         AC_CHECKING([for $CXX warning options])
3468         cf_save_CXXFLAGS="$CXXFLAGS"
3469         EXTRA_CXXFLAGS="-W -Wall"
3470         cf_gxx_extra_warnings=""
3471         test "$with_ext_const" = yes && cf_gxx_extra_warnings="Wwrite-strings"
3472         case "$GXX_VERSION" in
3473         ([[1-2]].*)
3474                 ;;
3475         (*)
3476                 cf_gxx_extra_warnings="$cf_gxx_extra_warnings Weffc++"
3477                 ;;
3478         esac
3479         for cf_opt in \
3480                 Wabi \
3481                 fabi-version=0 \
3482                 Wextra \
3483                 Wignored-qualifiers \
3484                 Wlogical-op \
3485                 Woverloaded-virtual \
3486                 Wsign-promo \
3487                 Wsynth \
3488                 Wold-style-cast \
3489                 Wcast-align \
3490                 Wcast-qual \
3491                 Wpointer-arith \
3492                 Wshadow \
3493                 Wundef $cf_gxx_extra_warnings $1
3494         do
3495                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
3496                 if AC_TRY_EVAL(ac_compile); then
3497                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
3498                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
3499                 else
3500                         test -n "$verbose" && AC_MSG_RESULT(... no -$cf_opt)
3501                 fi
3502         done
3503         CXXFLAGS="$cf_save_CXXFLAGS"
3504 fi
3505
3506 rm -rf ./conftest*
3507 AC_LANG_RESTORE
3508 AC_SUBST(EXTRA_CXXFLAGS)
3509 ])dnl
3510 dnl ---------------------------------------------------------------------------
3511 dnl CF_HASHED_DB version: 7 updated: 2015/04/18 08:56:57
3512 dnl ------------
3513 dnl Look for an instance of the Berkeley hashed database.
3514 dnl
3515 dnl $1 = optional parameter, to specify install-prefix for the database.
3516 AC_DEFUN([CF_HASHED_DB],
3517 [
3518 ifelse([$1],,,[
3519 case $1 in
3520 (yes|*able*)
3521         ;;
3522 (*)
3523         if test -d "$1" ; then
3524                 CF_ADD_INCDIR($1/include)
3525                 CF_ADD_LIBDIR($1/lib)
3526         else
3527                 case "$1" in
3528                 (./*|../*|/*)
3529                         AC_MSG_WARN(no such directory $1)
3530                         ;;
3531                 (*)
3532                         CF_FIND_SUB_INCDIR($1)
3533                         CF_FIND_SUB_LIBDIR($1)
3534                         ;;
3535                 esac
3536         fi
3537 esac
3538 ])
3539 AC_CHECK_HEADER(db.h,[
3540 CF_HASHED_DB_VERSION
3541 if test "$cf_cv_hashed_db_version" = unknown ; then
3542         AC_MSG_ERROR(Cannot determine version of db)
3543 else
3544         CF_HASHED_DB_LIBS
3545         if test "$cf_cv_hashed_db_libs" = unknown ; then
3546                 AC_MSG_ERROR(Cannot determine library for db)
3547         elif test "$cf_cv_hashed_db_libs" != default ; then
3548                 CF_ADD_LIB($cf_cv_hashed_db_libs)
3549         fi
3550 fi
3551 ],[
3552         AC_MSG_ERROR(Cannot find db.h)
3553 ])
3554 ])dnl
3555 dnl ---------------------------------------------------------------------------
3556 dnl CF_HASHED_DB_LIBS version: 10 updated: 2021/01/02 17:09:14
3557 dnl -----------------
3558 dnl Given that we have the header and version for hashed database, find the
3559 dnl library information.
3560 AC_DEFUN([CF_HASHED_DB_LIBS],
3561 [
3562 AC_CACHE_CHECK(for db libraries, cf_cv_hashed_db_libs,[
3563 cf_cv_hashed_db_libs=unknown
3564 for cf_db_libs in "" db$cf_cv_hashed_db_version db-$cf_cv_hashed_db_version db ''
3565 do
3566         cf_save_libs="$LIBS"
3567         if test -n "$cf_db_libs"; then
3568                 CF_ADD_LIB($cf_db_libs)
3569         fi
3570         CF_MSG_LOG(checking for library $cf_db_libs)
3571         AC_TRY_LINK([
3572 $ac_includes_default
3573 #include <db.h>
3574 ],[
3575         char *path = "/tmp/foo";
3576 #ifdef DB_VERSION_MAJOR
3577 #if DB_VERSION_MAJOR >= 4
3578         DB *result = 0;
3579         db_create(&result, NULL, 0);
3580         result->open(result,
3581                 NULL,
3582                 path,
3583                 path,
3584                 DB_HASH,
3585                 DB_CREATE,
3586                 0644);
3587 #elif DB_VERSION_MAJOR >= 3
3588         DB *result = 0;
3589         db_create(&result, NULL, 0);
3590         result->open(result,
3591                 path,
3592                 path,
3593                 DB_HASH,
3594                 DB_CREATE,
3595                 0644);
3596 #elif DB_VERSION_MAJOR >= 2
3597         DB *result = 0;
3598         db_open(path,
3599                 DB_HASH,
3600                 DB_CREATE,
3601                 0644,
3602                 (DB_ENV *) 0,
3603                 (DB_INFO *) 0,
3604                 &result);
3605 #endif /* DB_VERSION_MAJOR */
3606 #else
3607         DB *result = dbopen(path,
3608                      2,
3609                      0644,
3610                      DB_HASH,
3611                      0);
3612 #endif
3613         ${cf_cv_main_return:-return}(result != 0)
3614 ],[
3615         if test -n "$cf_db_libs" ; then
3616                 cf_cv_hashed_db_libs=$cf_db_libs
3617         else
3618                 cf_cv_hashed_db_libs=default
3619         fi
3620         LIBS="$cf_save_libs"
3621         break
3622 ])
3623         LIBS="$cf_save_libs"
3624 done
3625 ])
3626 ])dnl
3627 dnl ---------------------------------------------------------------------------
3628 dnl CF_HASHED_DB_VERSION version: 4 updated: 2014/04/12 16:47:01
3629 dnl --------------------
3630 dnl Given that we have the header file for hashed database, find the version
3631 dnl information.
3632 AC_DEFUN([CF_HASHED_DB_VERSION],
3633 [
3634 AC_CACHE_CHECK(for version of db, cf_cv_hashed_db_version,[
3635 cf_cv_hashed_db_version=unknown
3636
3637 for cf_db_version in 1 2 3 4 5 6
3638 do
3639         CF_MSG_LOG(checking for db version $cf_db_version)
3640         AC_TRY_COMPILE([
3641 $ac_includes_default
3642 #include <db.h>
3643
3644 #ifdef DB_VERSION_MAJOR
3645         /* db2 (DB_VERSION_MAJOR=2) has also DB_VERSION_MINOR, tested with 7 */
3646 #if $cf_db_version == DB_VERSION_MAJOR
3647         /* ok */
3648 #else
3649         make an error
3650 #endif
3651 #else
3652 #if $cf_db_version == 1
3653         /* ok: assuming this is DB 1.8.5 */
3654 #else
3655         make an error
3656 #endif
3657 #endif
3658 ],[DBT *foo = 0],[
3659         cf_cv_hashed_db_version=$cf_db_version
3660         break
3661         ])
3662 done
3663 ])
3664 ])dnl
3665 dnl ---------------------------------------------------------------------------
3666 dnl CF_HEADER_PATH version: 15 updated: 2021/01/01 13:31:04
3667 dnl --------------
3668 dnl Construct a search-list of directories for a nonstandard header-file
3669 dnl
3670 dnl Parameters
3671 dnl     $1 = the variable to return as result
3672 dnl     $2 = the package name
3673 AC_DEFUN([CF_HEADER_PATH],
3674 [
3675 $1=
3676
3677 # collect the current set of include-directories from compiler flags
3678 cf_header_path_list=""
3679 if test -n "${CFLAGS}${CPPFLAGS}" ; then
3680         for cf_header_path in $CPPFLAGS $CFLAGS
3681         do
3682                 case "$cf_header_path" in
3683                 (-I*)
3684                         cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
3685                         CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
3686                         cf_header_path_list="$cf_header_path_list [$]$1"
3687                         ;;
3688                 esac
3689         done
3690 fi
3691
3692 # add the variations for the package we are looking for
3693 CF_SUBDIR_PATH($1,$2,include)
3694
3695 test "$includedir" != NONE && \
3696 test "$includedir" != "/usr/include" && \
3697 test -d "$includedir" && {
3698         test -d "$includedir" &&    $1="[$]$1 $includedir"
3699         test -d "$includedir/$2" && $1="[$]$1 $includedir/$2"
3700 }
3701
3702 test "$oldincludedir" != NONE && \
3703 test "$oldincludedir" != "/usr/include" && \
3704 test -d "$oldincludedir" && {
3705         test -d "$oldincludedir"    && $1="[$]$1 $oldincludedir"
3706         test -d "$oldincludedir/$2" && $1="[$]$1 $oldincludedir/$2"
3707 }
3708
3709 $1="[$]$1 $cf_header_path_list"
3710 ])dnl
3711 dnl ---------------------------------------------------------------------------
3712 dnl CF_HELP_MESSAGE version: 4 updated: 2019/12/31 08:53:54
3713 dnl ---------------
3714 dnl Insert text into the help-message, for readability, from AC_ARG_WITH.
3715 AC_DEFUN([CF_HELP_MESSAGE],
3716 [CF_ACVERSION_CHECK(2.53,[],[
3717 AC_DIVERT_HELP($1)])dnl
3718 ])dnl
3719 dnl ---------------------------------------------------------------------------
3720 dnl CF_INCLUDE_DIRS version: 10 updated: 2014/09/19 20:58:42
3721 dnl ---------------
3722 dnl Construct the list of include-options according to whether we're building
3723 dnl in the source directory or using '--srcdir=DIR' option.
3724 AC_DEFUN([CF_INCLUDE_DIRS],
3725 [
3726 if test "$srcdir" != "."; then
3727         CPPFLAGS="-I\${srcdir}/../include $CPPFLAGS"
3728 fi
3729 CPPFLAGS="-I../include $CPPFLAGS"
3730 if test "$srcdir" != "."; then
3731         CPPFLAGS="-I\${srcdir} $CPPFLAGS"
3732 fi
3733 CPPFLAGS="-I. $CPPFLAGS"
3734 AC_SUBST(CPPFLAGS)
3735 ])dnl
3736 dnl ---------------------------------------------------------------------------
3737 dnl CF_INSTALL_OPTS version: 2 updated: 2018/08/18 12:19:21
3738 dnl ---------------
3739 dnl prompt for/fill-in useful install-program options
3740 AC_DEFUN([CF_INSTALL_OPTS],
3741 [
3742 CF_INSTALL_OPT_S
3743 CF_INSTALL_OPT_P
3744 CF_INSTALL_OPT_O
3745 ])dnl
3746 dnl ---------------------------------------------------------------------------
3747 dnl CF_INSTALL_OPT_O version: 3 updated: 2020/12/31 20:19:42
3748 dnl ----------------
3749 dnl Almost all "install" programs default to the current user's ownership.
3750 dnl Almost - MINIX is an exception.
3751 AC_DEFUN([CF_INSTALL_OPT_O],
3752 [
3753 AC_MSG_CHECKING(if install needs to be told about ownership)
3754 case `$ac_config_guess` in
3755 (*minix)
3756         with_install_o=yes
3757         ;;
3758 (*)
3759         with_install_o=no
3760         ;;
3761 esac
3762
3763 AC_MSG_RESULT($with_install_o)
3764 if test "x$with_install_o" = xyes
3765 then
3766         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'`"
3767 else
3768         INSTALL_OPT_O=
3769 fi
3770
3771 AC_SUBST(INSTALL_OPT_O)
3772 ])dnl
3773 dnl ---------------------------------------------------------------------------
3774 dnl CF_INSTALL_OPT_P version: 3 updated: 2021/01/01 13:31:04
3775 dnl ----------------
3776 dnl Some install-programs accept a "-p" option to preserve file modification
3777 dnl timestamps.  That can be useful as an install option, as well as a way to
3778 dnl avoid the need for ranlib after copying a static archive.
3779 AC_DEFUN([CF_INSTALL_OPT_P],
3780 [
3781 : "${INSTALL:=install}"
3782 AC_CACHE_CHECK(if install accepts -p option, cf_cv_install_p,[
3783         rm -rf ./conftest*
3784         date >conftest.in
3785         mkdir conftest.out
3786         sleep 3
3787         if $INSTALL -p conftest.in conftest.out 2>/dev/null
3788         then
3789                 if test -f conftest.out/conftest.in
3790                 then
3791                         test conftest.in -nt conftest.out/conftest.in 2>conftest.err && \
3792                         test conftest.out/conftest.in -nt conftest.in 2>conftest.err
3793                         if test -s conftest.err
3794                         then
3795                                 cf_cv_install_p=no
3796                         else
3797                                 cf_cv_install_p=yes
3798                         fi
3799                 else
3800                         cf_cv_install_p=no
3801                 fi
3802         else
3803                 cf_cv_install_p=no
3804         fi
3805         rm -rf ./conftest*
3806 ])
3807 ])dnl
3808 dnl ---------------------------------------------------------------------------
3809 dnl CF_INSTALL_OPT_S version: 3 updated: 2021/01/05 19:23:48
3810 dnl ----------------
3811 dnl By default, we should strip executables which are installed, but leave the
3812 dnl ability to suppress that for unit-testing.
3813 AC_DEFUN([CF_INSTALL_OPT_S],
3814 [
3815 AC_MSG_CHECKING(if you want to install stripped executables)
3816 CF_ARG_DISABLE(stripping,
3817         [  --disable-stripping     do not strip (debug info) installed executables],
3818         [enable_stripping=no],
3819         [enable_stripping=yes])
3820 AC_MSG_RESULT($enable_stripping)
3821
3822 if test "$enable_stripping" = yes
3823 then
3824         INSTALL_OPT_S="-s"
3825 else
3826         INSTALL_OPT_S=
3827 fi
3828 AC_SUBST(INSTALL_OPT_S)
3829 ])dnl
3830 dnl ---------------------------------------------------------------------------
3831 dnl CF_INTEL_COMPILER version: 8 updated: 2021/01/01 16:53:59
3832 dnl -----------------
3833 dnl Check if the given compiler is really the Intel compiler for Linux.  It
3834 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
3835 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
3836 dnl
3837 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
3838 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
3839 dnl the wrappers for gcc and g++ warnings.
3840 dnl
3841 dnl $1 = GCC (default) or GXX
3842 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
3843 dnl $3 = CFLAGS (default) or CXXFLAGS
3844 AC_DEFUN([CF_INTEL_COMPILER],[
3845 AC_REQUIRE([AC_CANONICAL_HOST])
3846 ifelse([$2],,INTEL_COMPILER,[$2])=no
3847
3848 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
3849         case "$host_os" in
3850         (linux*|gnu*)
3851                 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
3852                 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
3853                 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
3854                 AC_TRY_COMPILE([],[
3855 #ifdef __INTEL_COMPILER
3856 #else
3857 make an error
3858 #endif
3859 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
3860 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
3861 ],[])
3862                 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
3863                 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
3864                 ;;
3865         esac
3866 fi
3867 ])dnl
3868 dnl ---------------------------------------------------------------------------
3869 dnl CF_ISASCII version: 4 updated: 2012/10/06 17:56:13
3870 dnl ----------
3871 dnl Check if we have either a function or macro for 'isascii()'.
3872 AC_DEFUN([CF_ISASCII],
3873 [
3874 AC_MSG_CHECKING(for isascii)
3875 AC_CACHE_VAL(cf_cv_have_isascii,[
3876         AC_TRY_LINK([#include <ctype.h>],[int x = isascii(' ')],
3877         [cf_cv_have_isascii=yes],
3878         [cf_cv_have_isascii=no])
3879 ])dnl
3880 AC_MSG_RESULT($cf_cv_have_isascii)
3881 test "$cf_cv_have_isascii" = yes && AC_DEFINE(HAVE_ISASCII,1,[Define to 1 if we have isascii()])
3882 ])dnl
3883 dnl ---------------------------------------------------------------------------
3884 dnl CF_LARGEFILE version: 12 updated: 2020/03/19 20:23:48
3885 dnl ------------
3886 dnl Add checks for large file support.
3887 AC_DEFUN([CF_LARGEFILE],[
3888 ifdef([AC_FUNC_FSEEKO],[
3889         AC_SYS_LARGEFILE
3890         if test "$enable_largefile" != no ; then
3891         AC_FUNC_FSEEKO
3892
3893         # Normally we would collect these definitions in the config.h,
3894         # but (like _XOPEN_SOURCE), some environments rely on having these
3895         # defined before any of the system headers are included.  Another
3896         # case comes up with C++, e.g., on AIX the compiler compiles the
3897         # header files by themselves before looking at the body files it is
3898         # told to compile.  For ncurses, those header files do not include
3899         # the config.h
3900         if test "$ac_cv_sys_large_files" != no
3901         then
3902                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGE_FILES)
3903         fi
3904         if test "$ac_cv_sys_largefile_source" != no
3905         then
3906                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGEFILE_SOURCE)
3907         fi
3908         if test "$ac_cv_sys_file_offset_bits" != no
3909         then
3910                 CF_APPEND_TEXT(CPPFLAGS,-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits)
3911         fi
3912
3913         AC_CACHE_CHECK(whether to use struct dirent64, cf_cv_struct_dirent64,[
3914                 AC_TRY_COMPILE([
3915 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
3916 #include <sys/types.h>
3917 #include <dirent.h>
3918                 ],[
3919                 /* if transitional largefile support is setup, this is true */
3920                 extern struct dirent64 * readdir(DIR *);
3921                 struct dirent64 *x = readdir((DIR *)0);
3922                 struct dirent *y = readdir((DIR *)0);
3923                 int z = x - y;
3924                 (void)z;
3925                 ],
3926                 [cf_cv_struct_dirent64=yes],
3927                 [cf_cv_struct_dirent64=no])
3928         ])
3929         test "$cf_cv_struct_dirent64" = yes && AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Define to 1 if we have struct dirent64])
3930         fi
3931 ])
3932 ])
3933 dnl ---------------------------------------------------------------------------
3934 dnl CF_LDFLAGS_STATIC version: 14 updated: 2021/01/02 17:09:14
3935 dnl -----------------
3936 dnl Check for compiler/linker flags used to temporarily force usage of static
3937 dnl libraries.  This depends on the compiler and platform.  Use this to help
3938 dnl ensure that the linker picks up a given library based on its position in
3939 dnl the list of linker options and libraries.
3940 AC_DEFUN([CF_LDFLAGS_STATIC],[
3941
3942 if test "$GCC" = yes ; then
3943         case "$cf_cv_system_name" in
3944         (OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]]|darwin*)
3945                 LDFLAGS_STATIC=
3946                 LDFLAGS_SHARED=
3947                 ;;
3948         (*)     # normally, except when broken
3949                 LDFLAGS_STATIC=-static
3950                 LDFLAGS_SHARED=-dynamic
3951                 ;;
3952         esac
3953 else
3954         case "$cf_cv_system_name" in
3955         (aix[[4-7]]*)   # from ld manpage
3956                 LDFLAGS_STATIC=-bstatic
3957                 LDFLAGS_SHARED=-bdynamic
3958                 ;;
3959         (hpux*)         # from ld manpage for hpux10.20, hpux11.11
3960                 # We could also use just "archive" and "shared".
3961                 LDFLAGS_STATIC=-Wl,-a,archive_shared
3962                 LDFLAGS_SHARED=-Wl,-a,shared_archive
3963                 ;;
3964         (irix*)         # from ld manpage IRIX64
3965                 LDFLAGS_STATIC=-Bstatic
3966                 LDFLAGS_SHARED=-Bdynamic
3967                 ;;
3968         (osf[[45]]*)    # from ld manpage osf4.0d, osf5.1
3969                 # alternative "-oldstyle_liblookup" (not in cc manpage)
3970                 LDFLAGS_STATIC=-noso
3971                 LDFLAGS_SHARED=-so_archive
3972                 ;;
3973         (solaris2*)
3974                 LDFLAGS_STATIC=-Bstatic
3975                 LDFLAGS_SHARED=-Bdynamic
3976                 ;;
3977         esac
3978 fi
3979
3980 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
3981 then
3982         AC_MSG_CHECKING(if linker supports switching between static/dynamic)
3983
3984         rm -f libconftest.a
3985         cat >conftest.$ac_ext <<EOF
3986 #line __oline__ "configure"
3987 #include <stdio.h>
3988 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
3989 EOF
3990         if AC_TRY_EVAL(ac_compile) ; then
3991                 ( $AR $ARFLAGS libconftest.a conftest.o ) 2>&AC_FD_CC 1>/dev/null
3992                 ( eval $RANLIB libconftest.a ) 2>&AC_FD_CC >/dev/null
3993         fi
3994         rm -f conftest.*
3995
3996         cf_save_LIBS="$LIBS"
3997
3998         LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS"
3999         AC_TRY_LINK([
4000 #line __oline__ "configure"
4001 #include <stdio.h>
4002 int cf_ldflags_static(FILE *fp);
4003 ],[
4004         return cf_ldflags_static(stdin);
4005 ],[
4006         # some linkers simply ignore the -dynamic
4007         case x`file "conftest$ac_exeext" 2>/dev/null` in
4008         (*static*)
4009                 cf_ldflags_static=no
4010                 ;;
4011         (*)
4012                 cf_ldflags_static=yes
4013                 ;;
4014         esac
4015 ],[cf_ldflags_static=no])
4016
4017         rm -f libconftest.*
4018         LIBS="$cf_save_LIBS"
4019
4020         AC_MSG_RESULT($cf_ldflags_static)
4021
4022         if test "$cf_ldflags_static" != yes
4023         then
4024                 LDFLAGS_STATIC=
4025                 LDFLAGS_SHARED=
4026         fi
4027 else
4028         LDFLAGS_STATIC=
4029         LDFLAGS_SHARED=
4030 fi
4031
4032 AC_SUBST(LDFLAGS_STATIC)
4033 AC_SUBST(LDFLAGS_SHARED)
4034 ])
4035 dnl ---------------------------------------------------------------------------
4036 dnl CF_LD_RPATH_OPT version: 9 updated: 2021/01/01 13:31:04
4037 dnl ---------------
4038 dnl For the given system and compiler, find the compiler flags to pass to the
4039 dnl loader to use the "rpath" feature.
4040 AC_DEFUN([CF_LD_RPATH_OPT],
4041 [
4042 AC_REQUIRE([CF_CHECK_CACHE])
4043
4044 LD_RPATH_OPT=
4045 if test "x$cf_cv_enable_rpath" != xno
4046 then
4047         AC_MSG_CHECKING(for an rpath option)
4048         case "$cf_cv_system_name" in
4049         (irix*)
4050                 if test "$GCC" = yes; then
4051                         LD_RPATH_OPT="-Wl,-rpath,"
4052                 else
4053                         LD_RPATH_OPT="-rpath "
4054                 fi
4055                 ;;
4056         (linux*|gnu*|k*bsd*-gnu|freebsd*)
4057                 LD_RPATH_OPT="-Wl,-rpath,"
4058                 ;;
4059         (openbsd[[2-9]].*|mirbsd*)
4060                 LD_RPATH_OPT="-Wl,-rpath,"
4061                 ;;
4062         (dragonfly*)
4063                 LD_RPATH_OPT="-rpath "
4064                 ;;
4065         (netbsd*)
4066                 LD_RPATH_OPT="-Wl,-rpath,"
4067                 ;;
4068         (osf*|mls+*)
4069                 LD_RPATH_OPT="-rpath "
4070                 ;;
4071         (solaris2*)
4072                 LD_RPATH_OPT="-R"
4073                 ;;
4074         (*)
4075                 ;;
4076         esac
4077         AC_MSG_RESULT($LD_RPATH_OPT)
4078
4079         case "x$LD_RPATH_OPT" in
4080         (x-R*)
4081                 AC_MSG_CHECKING(if we need a space after rpath option)
4082                 cf_save_LIBS="$LIBS"
4083                 CF_ADD_LIBS(${LD_RPATH_OPT}$libdir)
4084                 AC_TRY_LINK(, , cf_rpath_space=no, cf_rpath_space=yes)
4085                 LIBS="$cf_save_LIBS"
4086                 AC_MSG_RESULT($cf_rpath_space)
4087                 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
4088                 ;;
4089         esac
4090 fi
4091 ])dnl
4092 dnl ---------------------------------------------------------------------------
4093 dnl CF_LD_SEARCHPATH version: 3 updated: 2021/03/05 19:13:35
4094 dnl ----------------
4095 dnl Try to obtain the linker's search-path, for use in scripts.
4096 dnl
4097 dnl Ignore LD_LIBRARY_PATH, etc.
4098 AC_DEFUN([CF_LD_SEARCHPATH],[
4099 AC_CACHE_CHECK(for linker search path,cf_cv_ld_searchpath,[
4100
4101 if test "$cross_compiling" != yes ; then
4102
4103 # GNU binutils' ld does not involve permissions which may stop ldconfig.
4104 cf_pathlist=`ld --verbose 2>/dev/null | grep SEARCH_DIR | sed -e 's,SEARCH_DIR[[("=]][[("=]]*,,g' -e 's/"[[)]];//gp' | sort -u`
4105
4106 # The -NX options tell newer versions of Linux ldconfig to not attempt to
4107 # update the cache, which makes it run faster.
4108 test -z "$cf_pathlist" && \
4109         cf_pathlist=`(ldconfig -NX -v) 2>/dev/null | sed -e '/^[[       ]]/d' -e 's/:$//' | sort -u`
4110
4111 test -z "$cf_pathlist" &&
4112         cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e '/^[[        ]]/d' -e 's/:$//p' | sort -u`
4113
4114 # This works with OpenBSD 6.5, which lists only filenames
4115 test -z "$cf_pathlist" &&
4116         cf_pathlist=`(ldconfig -v) 2>/dev/null | sed -n -e 's,^Adding \(.*\)/.*[$],\1,p' | sort -u`
4117
4118 if test -z "$cf_pathlist"
4119 then
4120         # dyld default path with MacOS
4121         if test -f /usr/bin/otool && test "x`uname -s`" = xDarwin
4122         then
4123                 # do this to bypass check
4124                 cf_cv_ld_searchpath='$HOME/lib'
4125                 cf_pathlist="/usr/local/lib /lib /usr/lib"
4126         fi
4127 fi
4128
4129 if test -z "$cf_pathlist"
4130 then
4131         # Solaris is "SunOS"
4132         if test -f /usr/bin/isainfo && test "x`uname -s`" = xSunOS
4133         then
4134                 case x`(isainfo -b)` in
4135                 (x64)
4136                         cf_pathlist="$cf_pathlist /lib/64 /usr/lib/64"
4137                         ;;
4138                 (x32)
4139                         test -d /usr/ccs/lib && cf_pathlist="$cf_pathlist /usr/ccs/lib"
4140                         cf_pathlist="$cf_pathlist /lib /usr/lib"
4141                         ;;
4142                 (*)
4143                         AC_MSG_WARN(problem with Solaris architecture)
4144                         ;;
4145                 esac
4146         fi
4147 fi
4148
4149 if test -z "$cf_pathlist"
4150 then
4151         # HP-UX
4152         if test x"`uname -s`" = xHP-UX
4153         then
4154                 case x`getconf LONG_BIT` in
4155                 (x64)
4156                         cf_pathlist="/usr/lib/hpux64"
4157                         ;;
4158                 (x*)
4159                         cf_pathlist="/usr/lib/hpux32"
4160                         ;;
4161                 esac
4162         fi
4163 fi
4164
4165 fi
4166
4167 # If nothing else, assume it is conventional
4168 test -z "$cf_pathlist" && cf_pathlist="/usr/lib /lib"
4169
4170 # Finally, check that this is only directories
4171 for cf_path in [$]0 $cf_pathlist
4172 do
4173         if test -d "$cf_path"; then
4174                 test -n "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath="${cf_cv_ld_searchpath} "
4175                 cf_cv_ld_searchpath="${cf_cv_ld_searchpath}${cf_path}"
4176         fi
4177 done
4178
4179 # Ensure that it is nonempty
4180 test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib
4181 ])
4182
4183 LD_SEARCHPATH=`echo "$cf_cv_ld_searchpath"|sed -e 's/ /|/g'`
4184 AC_SUBST(LD_SEARCHPATH)
4185 ])dnl
4186 dnl ---------------------------------------------------------------------------
4187 dnl CF_LIBRARY_PATH version: 11 updated: 2021/01/01 13:31:04
4188 dnl ---------------
4189 dnl Construct a search-list of directories for a nonstandard library-file
4190 dnl
4191 dnl Parameters
4192 dnl     $1 = the variable to return as result
4193 dnl     $2 = the package name
4194 AC_DEFUN([CF_LIBRARY_PATH],
4195 [
4196 $1=
4197 cf_library_path_list=""
4198 if test -n "${LDFLAGS}${LIBS}" ; then
4199         for cf_library_path in $LDFLAGS $LIBS
4200         do
4201                 case "$cf_library_path" in
4202                 (-L*)
4203                         cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
4204                         CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
4205                         cf_library_path_list="$cf_library_path_list [$]$1"
4206                         ;;
4207                 esac
4208         done
4209 fi
4210
4211 CF_SUBDIR_PATH($1,$2,lib)
4212
4213 $1="$cf_library_path_list [$]$1"
4214 ])dnl
4215 dnl ---------------------------------------------------------------------------
4216 dnl CF_LIBTOOL_VERSION version: 1 updated: 2013/04/06 18:03:09
4217 dnl ------------------
4218 AC_DEFUN([CF_LIBTOOL_VERSION],[
4219 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
4220 then
4221         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.]].*//'`
4222 else
4223         cf_cv_libtool_version=
4224 fi
4225 test -z "$cf_cv_libtool_version" && unset cf_cv_libtool_version
4226 ])dnl
4227 dnl ---------------------------------------------------------------------------
4228 dnl CF_LIB_PREFIX version: 14 updated: 2021/01/01 13:31:04
4229 dnl -------------
4230 dnl Compute the library-prefix for the given host system
4231 dnl $1 = variable to set
4232 define([CF_LIB_PREFIX],
4233 [
4234         case "$cf_cv_system_name" in
4235         (OS/2*|os2*)
4236                 if test "$DFT_LWR_MODEL" = libtool; then
4237                         LIB_PREFIX='lib'
4238                 else
4239                         LIB_PREFIX=''
4240                 fi
4241                 ;;
4242         (*-msvc*)
4243                 LIB_PREFIX=''
4244                 ;;
4245         (*)     LIB_PREFIX='lib'
4246                 ;;
4247         esac
4248 ifelse($1,,,[$1=$LIB_PREFIX])
4249         AC_SUBST(LIB_PREFIX)
4250 ])dnl
4251 dnl ---------------------------------------------------------------------------
4252 dnl CF_LIB_RULES version: 94 updated: 2021/01/23 15:37:41
4253 dnl ------------
4254 dnl Append definitions and rules for the given models to the subdirectory
4255 dnl Makefiles, and the recursion rule for the top-level Makefile.  If the
4256 dnl subdirectory is a library-source directory, modify the Libs_To_Make list in
4257 dnl the corresponding makefile to list the models that we'll generate.
4258 dnl
4259 dnl For shared libraries, make a list of symbolic links to construct when
4260 dnl generating each library.  The convention used for Linux is the simplest
4261 dnl one:
4262 dnl     lib<name>.so    ->
4263 dnl     lib<name>.so.<major>    ->
4264 dnl     lib<name>.so.<maj>.<minor>
4265 dnl
4266 dnl Note: Libs_To_Make is mixed case, since it is not a pure autoconf variable.
4267 AC_DEFUN([CF_LIB_RULES],
4268 [AC_REQUIRE([AC_PROG_FGREP])dnl
4269
4270 cf_prefix=$LIB_PREFIX
4271 AC_REQUIRE([CF_SUBST_NCURSES_VERSION])
4272
4273 case "$cf_cv_shlib_version" in
4274 (cygdll|msysdll|mingw|msvcdll)
4275         TINFO_NAME=$TINFO_ARG_SUFFIX
4276         TINFO_SUFFIX=.dll
4277         ;;
4278 esac
4279
4280 if test -n "$TINFO_SUFFIX" ; then
4281         case "$TINFO_SUFFIX" in
4282         (tw*)
4283                 TINFO_NAME="${TINFO_NAME}tw${EXTRA_SUFFIX}"
4284                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4285                 ;;
4286         (t*)
4287                 TINFO_NAME="${TINFO_NAME}t${EXTRA_SUFFIX}"
4288                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^t'$EXTRA_SUFFIX'//'`
4289                 ;;
4290         (w*)
4291                 TINFO_NAME="${TINFO_NAME}w${EXTRA_SUFFIX}"
4292                 TINFO_SUFFIX=`echo "$TINFO_SUFFIX" | sed 's/^w'$EXTRA_SUFFIX'//'`
4293                 ;;
4294         esac
4295 fi
4296
4297 for cf_dir in $SRC_SUBDIRS
4298 do
4299         if test ! -d "$srcdir/$cf_dir" ; then
4300                 continue
4301         elif test -f "$srcdir/$cf_dir/modules" ; then
4302
4303                 SHARED_LIB=
4304                 Libs_To_Make=
4305                 cf_awk_program=
4306                 if test -n "${cf_cv_abi_version}" && test "x${cf_cv_abi_version}" != "x5"
4307                 then
4308                         cf_awk_program="$cf_awk_program\
4309 /deprecated in ABI${cf_cv_abi_version}/ { next; }\
4310 { sub(\"NCURSES([[WT]]+)?\", \"&${cf_cv_abi_version}\"); }\
4311 "
4312                 fi
4313
4314                 if test "x$WILDCARD_SYMS" = xno
4315                 then
4316                         cf_awk_program="$cf_awk_program\
4317 /[[     ]]_\\*;/ { skip=1; next; }\
4318 "
4319                 fi
4320
4321                 if test "x$cf_awk_program" != "x"
4322                 then
4323                         cat >>$cf_dir/Makefile <<CF_EOF
4324
4325 # Generated by CF_LIB_RULES
4326 resulting.map: $UNALTERED_SYMS
4327         $AWK 'BEGIN { skip = 1; last=""; } \
4328 $cf_awk_program \
4329 { if ( last != "" && ( skip == 0 || \[$]\[$]0 !~ /}/ ) ) { print last; }\
4330  skip = 0; last = \[$]\[$]0; } \
4331 END { print last; }' < "$UNALTERED_SYMS" >\[$]@
4332
4333 distclean::
4334         rm -f resulting.map
4335 CF_EOF
4336                 fi
4337
4338                 for cf_item in $cf_LIST_MODELS
4339                 do
4340                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4341                         if test "$cf_dir" = "c++"
4342                         then
4343                                 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4344                         else
4345                                 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4346                         fi
4347                         test -z "$cf_libname" && cf_libname="$cf_dir"
4348                         if test "$cf_item" = shared ; then
4349                                 if test -n "${LIB_SUFFIX}"
4350                                 then
4351                                         cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4352                                 else
4353                                         cf_shared_suffix="$cf_suffix"
4354                                 fi
4355                                 if test "$cf_cv_do_symlinks" = yes ; then
4356                                         cf_version_name=
4357
4358                                         case "$cf_cv_shlib_version" in
4359                                         (rel)
4360                                                 cf_version_name=REL_VERSION
4361                                                 ;;
4362                                         (abi)
4363                                                 cf_version_name=ABI_VERSION
4364                                                 ;;
4365                                         esac
4366
4367                                         if test -n "$cf_version_name"
4368                                         then
4369                                                 case "$cf_cv_system_name" in
4370                                                 (darwin*)
4371                                                         # "w", etc?
4372                                                         cf_suffix="${USE_LIB_SUFFIX}"'.${'$cf_version_name'}'"$cf_shared_suffix"
4373                                                         ;;
4374                                                 (*)
4375                                                         cf_suffix="$cf_suffix"'.${'$cf_version_name'}'
4376                                                         ;;
4377                                                 esac
4378                                         fi
4379                                         if test -n "${USE_LIB_SUFFIX}"
4380                                         then
4381                                                 cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
4382                                         else
4383                                                 cf_shared_suffix="$cf_suffix"
4384                                         fi
4385                                 fi
4386                                 # cygwin needs import library, and has unique naming convention
4387                                 # use autodetected ${cf_prefix} for import lib and static lib, but
4388                                 # use 'cyg' prefix for shared lib.
4389                                 case "$cf_cv_shlib_version" in
4390                                 (cygdll)
4391                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4392                                         cf_add_lib="../lib/cyg${cf_libname}${cf_cygsuf}"
4393                                         ;;
4394                                 (msysdll)
4395                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4396                                         cf_add_lib="../lib/msys-${cf_libname}${cf_cygsuf}"
4397                                         ;;
4398                                 (mingw)
4399                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4400                                         cf_add_lib="../lib/lib${cf_libname}${cf_cygsuf}"
4401                                         ;;
4402                                 (msvcdll)
4403                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
4404                                         cf_add_lib="../lib/${cf_libname}${cf_cygsuf}"
4405                                         ;;
4406                                 (*)
4407                                         cf_add_lib=
4408                                         ;;
4409                                 esac
4410                                 if test -n "$cf_add_lib"
4411                                 then
4412                                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
4413                                         continue
4414                                 fi
4415                         fi
4416                         cf_add_lib="../lib/${cf_prefix}${cf_libname}${cf_suffix}"
4417                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
4418                 done
4419
4420                 if test "$cf_dir" = ncurses ; then
4421                         cf_subsets="$LIB_SUBSETS"
4422                         cf_r_parts="$cf_subsets"
4423                         cf_liblist="$Libs_To_Make"
4424
4425                         while test -n "$cf_r_parts"
4426                         do
4427                                 cf_l_parts=`echo "$cf_r_parts" |sed -e 's/ .*$//'`
4428                                 cf_r_parts=`echo "$cf_r_parts" |sed -e 's/^[[^ ]]* //'`
4429                                 if test "$cf_l_parts" != "$cf_r_parts" ; then
4430                                         cf_add_lib=
4431                                         case "$cf_l_parts" in
4432                                         (*termlib*)
4433                                                 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TINFO_LIB_SUFFIX}%g`
4434                                                 ;;
4435                                         (*ticlib*)
4436                                                 cf_add_lib=`echo "$cf_liblist" |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TICS_LIB_SUFFIX}%g`
4437                                                 ;;
4438                                         (*)
4439                                                 break
4440                                                 ;;
4441                                         esac
4442                                         if test -n "$cf_add_lib"; then
4443                                                 Libs_To_Make="$cf_add_lib $Libs_To_Make"
4444                                         fi
4445                                 else
4446                                         break
4447                                 fi
4448                         done
4449                 else
4450                         cf_subsets=`echo "$LIB_SUBSETS" | sed -e 's/^termlib.* //'`
4451                 fi
4452
4453                 if test "$cf_dir" = c++; then
4454                         if test "x$with_shared_cxx" != xyes && test -n "$cf_shared_suffix"; then
4455                                 cf_list=
4456                                 for cf_item in $Libs_To_Make
4457                                 do
4458                                         case "$cf_item" in
4459                                         (*.a)
4460                                                 ;;
4461                                         (*)
4462                                                 cf_item=`echo "$cf_item" | sed -e "s,"$cf_shared_suffix",.a,"`
4463                                                 ;;
4464                                         esac
4465                                         for cf_test in $cf_list
4466                                         do
4467                                                 if test "$cf_test" = "$cf_item"
4468                                                 then
4469                                                         cf_LIST_MODELS=`echo "$cf_LIST_MODELS" | sed -e 's/normal//'`
4470                                                         cf_item=
4471                                                         break
4472                                                 fi
4473                                         done
4474                                         test -n "$cf_item" && cf_list="$cf_list $cf_item"
4475                                 done
4476                                 Libs_To_Make="$cf_list"
4477                         fi
4478                 fi
4479
4480                 sed -e "s%@Libs_To_Make@%$Libs_To_Make%" \
4481                     -e "s%@SHARED_LIB@%$SHARED_LIB%" \
4482                         "$cf_dir/Makefile" >$cf_dir/Makefile.out
4483                 mv "$cf_dir/Makefile.out" "$cf_dir/Makefile"
4484
4485                 $AWK -f "$srcdir/mk-0th.awk" \
4486                         libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \
4487                         "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4488
4489                 for cf_subset in $cf_subsets
4490                 do
4491                         cf_subdirs=
4492                         for cf_item in $cf_LIST_MODELS
4493                         do
4494
4495                         echo "Appending rules for ${cf_item} model (${cf_dir}: ${cf_subset})"
4496                         CF_UPPER(cf_ITEM,$cf_item)
4497
4498                         CXX_MODEL=$cf_ITEM
4499                         if test "$CXX_MODEL" = SHARED; then
4500                                 case "$cf_cv_shlib_version" in
4501                                 (cygdll|msysdll|mingw|msvcdll)
4502                                         test "x$with_shared_cxx" = xno && CF_VERBOSE(overriding CXX_MODEL to SHARED)
4503                                         with_shared_cxx=yes
4504                                         ;;
4505                                 (*)
4506                                         test "x$with_shared_cxx" = xno && CXX_MODEL=NORMAL
4507                                         ;;
4508                                 esac
4509                         fi
4510
4511                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
4512                         CF_OBJ_SUBDIR($cf_item,cf_subdir)
4513
4514                         # Test for case where we build libtinfo with a different name.
4515                         cf_libname=$cf_dir
4516                         if test "$cf_dir" = ncurses ; then
4517                                 case "$cf_subset" in
4518                                 (*base*)
4519                                         cf_libname=${cf_libname}$USE_LIB_SUFFIX
4520                                         ;;
4521                                 (*termlib*)
4522                                         cf_libname=$TINFO_LIB_SUFFIX
4523                                         ;;
4524                                 (ticlib*)
4525                                         cf_libname=$TICS_LIB_SUFFIX
4526                                         ;;
4527                                 esac
4528                         elif test "$cf_dir" = c++ ; then
4529                                 CF_MAP_LIB_BASENAME(cf_libname,cxx)
4530                                 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4531                         else
4532                                 CF_MAP_LIB_BASENAME(cf_libname,$cf_dir)
4533                                 cf_libname=${cf_libname}$USE_LIB_SUFFIX
4534                         fi
4535                         if test -n "${USE_ARG_SUFFIX}" ; then
4536                                 # undo $USE_LIB_SUFFIX add-on in CF_LIB_SUFFIX
4537                                 cf_suffix=`echo "$cf_suffix" |sed -e "s%^${USE_LIB_SUFFIX}%%"`
4538                         fi
4539
4540                         # These dependencies really are for development, not
4541                         # builds, but they are useful in porting, too.
4542                         cf_depend="../include/ncurses_cfg.h"
4543                         if test "$srcdir" = "."; then
4544                                 cf_reldir="."
4545                         else
4546                                 cf_reldir="\${srcdir}"
4547                         fi
4548
4549                         if test -f "$srcdir/$cf_dir/$cf_dir.priv.h" ; then
4550                                 cf_depend="$cf_depend $cf_reldir/$cf_dir.priv.h"
4551                         elif test -f "$srcdir/$cf_dir/curses.priv.h" ; then
4552                                 cf_depend="$cf_depend $cf_reldir/curses.priv.h"
4553                         fi
4554
4555                         cf_dir_suffix=
4556                         old_cf_suffix="$cf_suffix"
4557                         if test "$cf_cv_shlib_version_infix" = yes ; then
4558                         if test -n "$USE_LIB_SUFFIX" ; then
4559                                 case "$USE_LIB_SUFFIX" in
4560                                 (tw*)
4561                                         cf_libname=`echo "$cf_libname" | sed 's/tw'$EXTRA_SUFFIX'$//'`
4562                                         cf_suffix=`echo "$cf_suffix" | sed 's/^tw'$EXTRA_SUFFIX'//'`
4563                                         cf_dir_suffix=tw$EXTRA_SUFFIX
4564                                         ;;
4565                                 (t*)
4566                                         cf_libname=`echo "$cf_libname" | sed 's/t'$EXTRA_SUFFIX'$//'`
4567                                         cf_suffix=`echo "$cf_suffix" | sed 's/^t'$EXTRA_SUFFIX'//'`
4568                                         cf_dir_suffix=t$EXTRA_SUFFIX
4569                                         ;;
4570                                 (w*)
4571                                         cf_libname=`echo "$cf_libname" | sed 's/w'$EXTRA_SUFFIX'$//'`
4572                                         cf_suffix=`echo "$cf_suffix" | sed 's/^w'$EXTRA_SUFFIX'//'`
4573                                         cf_dir_suffix=w$EXTRA_SUFFIX
4574                                         ;;
4575                                 (*)
4576                                         cf_libname=`echo "$cf_libname" | sed 's/'$EXTRA_SUFFIX'$//'`
4577                                         cf_suffix=`echo "$cf_suffix" | sed 's/^'$EXTRA_SUFFIX'//'`
4578                                         cf_dir_suffix=$EXTRA_SUFFIX
4579                                         ;;
4580                                 esac
4581                         fi
4582                         fi
4583
4584                         $AWK -f "$srcdir/mk-1st.awk" \
4585                                 name=${cf_libname}${cf_dir_suffix} \
4586                                 traces=$LIB_TRACING \
4587                                 MODEL=$cf_ITEM \
4588                                 CXX_MODEL=$CXX_MODEL \
4589                                 model=$cf_subdir \
4590                                 prefix=$cf_prefix \
4591                                 suffix=$cf_suffix \
4592                                 subset=$cf_subset \
4593                                 driver=$cf_cv_term_driver \
4594                                 SymLink="$LN_S" \
4595                                 TermlibRoot=$TINFO_NAME \
4596                                 TermlibSuffix=$TINFO_SUFFIX \
4597                                 ShlibVer=$cf_cv_shlib_version \
4598                                 ShlibVerInfix=$cf_cv_shlib_version_infix \
4599                                 ReLink=${cf_cv_do_relink:-no} \
4600                                 ReRanlib=${cf_cv_do_reranlib:-yes} \
4601                                 DoLinks=$cf_cv_do_symlinks \
4602                                 rmSoLocs=$cf_cv_rm_so_locs \
4603                                 ldconfig="$LDCONFIG" \
4604                                 overwrite=$WITH_OVERWRITE \
4605                                 depend="$cf_depend" \
4606                                 host="$host" \
4607                                 libtool_version="$LIBTOOL_VERSION" \
4608                                 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4609
4610                         cf_suffix="$old_cf_suffix"
4611
4612                         for cf_subdir2 in $cf_subdirs lib
4613                         do
4614                                 test "$cf_subdir" = "$cf_subdir2" && break
4615                         done
4616                         test "${cf_subset}.${cf_subdir2}" != "${cf_subset}.${cf_subdir}" && \
4617                         $AWK -f "$srcdir/mk-2nd.awk" \
4618                                 name=$cf_dir \
4619                                 traces=$LIB_TRACING \
4620                                 MODEL=$cf_ITEM \
4621                                 model=$cf_subdir \
4622                                 subset=$cf_subset \
4623                                 srcdir=$srcdir \
4624                                 echo=$WITH_ECHO \
4625                                 crenames=$cf_cv_prog_CC_c_o \
4626                                 cxxrenames=$cf_cv_prog_CXX_c_o \
4627                                 "$srcdir/$cf_dir/modules" >>$cf_dir/Makefile
4628                         cf_subdirs="$cf_subdirs $cf_subdir"
4629                         done
4630                 done
4631         fi
4632
4633         echo '  ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >>Makefile
4634 done
4635
4636 for cf_dir in $SRC_SUBDIRS
4637 do
4638         if test ! -d "$srcdir/$cf_dir" ; then
4639                 continue
4640         fi
4641
4642         if test -f "$cf_dir/Makefile" ; then
4643                 case "$cf_dir" in
4644                 (Ada95)
4645                         echo 'libs \' >> Makefile
4646                         echo 'install.libs \' >> Makefile
4647                         echo 'uninstall.libs ::' >> Makefile
4648                         echo '  ( cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@ )' >> Makefile
4649                         ;;
4650                 esac
4651         fi
4652
4653         if test -f "$srcdir/$cf_dir/modules" ; then
4654                 echo >> Makefile
4655                 if test -f "$srcdir/$cf_dir/headers" ; then
4656 cat >> Makefile <<CF_EOF
4657 install.includes \\
4658 uninstall.includes \\
4659 CF_EOF
4660                 fi
4661 if test "$cf_dir" != "c++" ; then
4662 echo 'lint \' >> Makefile
4663 fi
4664 cat >> Makefile <<CF_EOF
4665 libs \\
4666 lintlib \\
4667 install.libs \\
4668 uninstall.libs \\
4669 install.$cf_dir \\
4670 uninstall.$cf_dir ::
4671         ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4672 CF_EOF
4673         elif test -f "$srcdir/$cf_dir/headers" ; then
4674 cat >> Makefile <<CF_EOF
4675
4676 libs \\
4677 install.libs \\
4678 uninstall.libs \\
4679 install.includes \\
4680 uninstall.includes ::
4681         ( cd "$cf_dir" && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4682 CF_EOF
4683 fi
4684 done
4685
4686 if test "x$cf_with_db_install" = xyes; then
4687 cat >> Makefile <<CF_EOF
4688
4689 install.libs uninstall.libs \\
4690 install.data uninstall.data ::
4691 $MAKE_TERMINFO  ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4692 CF_EOF
4693 else
4694 cat >> Makefile <<CF_EOF
4695
4696 install.libs uninstall.libs ::
4697         ( cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4698 CF_EOF
4699 fi
4700
4701 if test "x$cf_with_manpages" = xyes; then
4702 cat >> Makefile <<CF_EOF
4703
4704 install.man \\
4705 uninstall.man ::
4706         ( cd man && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4707 CF_EOF
4708 fi
4709
4710 cat >> Makefile <<CF_EOF
4711
4712 distclean ::
4713         rm -f config.cache config.log config.status Makefile include/ncurses_cfg.h
4714         rm -f headers.sh headers.sed mk_shared_lib.sh
4715         rm -f edit_man.* man_alias.*
4716         rm -rf \${DIRS_TO_MAKE}
4717 CF_EOF
4718
4719 # Special case: tack's manpage lives in its own directory.
4720 if test "x$cf_with_manpages" = xyes; then
4721 if test "x$cf_with_tack" = "xyes"; then
4722 cat >> Makefile <<CF_EOF
4723
4724 install.man \\
4725 uninstall.man ::
4726         ( cd tack && \${MAKE} \${TOP_MFLAGS} \[$]@ )
4727 CF_EOF
4728 fi
4729 fi
4730
4731 dnl If we're installing into a subdirectory of /usr/include, etc., we should
4732 dnl prepend the subdirectory's name to the "#include" paths.  It won't hurt
4733 dnl anything, and will make it more standardized.  It's awkward to decide this
4734 dnl at configuration because of quoting, so we'll simply make all headers
4735 dnl installed via a script that can do the right thing.
4736
4737 rm -f headers.sed headers.sh
4738
4739 dnl ( generating this script makes the makefiles a little tidier :-)
4740 echo creating headers.sh
4741 cat >headers.sh <<CF_EOF
4742 #! $SHELL
4743 # This shell script is generated by the 'configure' script.  It is invoked in a
4744 # subdirectory of the build tree.  It generates a sed-script in the parent
4745 # directory that is used to adjust includes for header files that reside in a
4746 # subdirectory of /usr/include, etc.
4747 PRG=""
4748 while test \[$]# != 3
4749 do
4750 PRG="\$PRG \[$]1"; shift
4751 done
4752 DST=\[$]1
4753 REF=\[$]2
4754 SRC=\[$]3
4755 TMPSRC=\${TMPDIR:-/tmp}/\`basename \$SRC\`\$\$
4756 TMPSED=\${TMPDIR:-/tmp}/headers.sed\$\$
4757 echo installing \$SRC in \$DST
4758 CF_EOF
4759
4760 if test "$WITH_CURSES_H" = yes; then
4761         cat >>headers.sh <<CF_EOF
4762 case \$DST in
4763 (/*/include/*)
4764         END=\`basename \$DST\`
4765         for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`
4766         do
4767                 NAME=\`basename \$i\`
4768                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
4769         done
4770         ;;
4771 (*)
4772         echo "" >> \$TMPSED
4773         ;;
4774 esac
4775 CF_EOF
4776
4777 else
4778         cat >>headers.sh <<CF_EOF
4779 case \$DST in
4780 (/*/include/*)
4781         END=\`basename \$DST\`
4782         for i in \`cat \$REF/../*/headers |${FGREP-fgrep} -v "#"\`
4783         do
4784                 NAME=\`basename \$i\`
4785                 if test "\$NAME" = "curses.h"
4786                 then
4787                         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
4788                         NAME=ncurses.h
4789                 fi
4790                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
4791         done
4792         ;;
4793 (*)
4794         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
4795         ;;
4796 esac
4797 CF_EOF
4798 fi
4799 cat >>headers.sh <<CF_EOF
4800 rm -f \$TMPSRC
4801 sed -f \$TMPSED \$SRC > \$TMPSRC
4802 NAME=\`basename \$SRC\`
4803 CF_EOF
4804 if test "$WITH_CURSES_H" != yes; then
4805         cat >>headers.sh <<CF_EOF
4806 test "\$NAME" = "curses.h" && NAME=ncurses.h
4807 CF_EOF
4808 fi
4809 cat >>headers.sh <<CF_EOF
4810 # Just in case someone gzip'd manpages, remove the conflicting copy.
4811 test -f \$DST/\$NAME.gz && rm -f \$DST/\$NAME.gz
4812
4813 eval \$PRG \$TMPSRC \$DST/\$NAME
4814 rm -f \$TMPSRC \$TMPSED
4815 CF_EOF
4816
4817 chmod 0755 headers.sh
4818
4819 for cf_dir in $SRC_SUBDIRS
4820 do
4821         if test ! -d "$srcdir/$cf_dir" ; then
4822                 continue
4823         fi
4824
4825         if test -f "$srcdir/$cf_dir/headers" ; then
4826                 $AWK -f "$srcdir/mk-hdr.awk" \
4827                         subset="$LIB_SUBSETS" \
4828                         compat="$WITH_CURSES_H" \
4829                         "$srcdir/$cf_dir/headers" >>$cf_dir/Makefile
4830         fi
4831
4832         if test -f "$srcdir/$cf_dir/modules" ; then
4833                 if test "$cf_dir" != "c++" ; then
4834                         cat >>$cf_dir/Makefile <<"CF_EOF"
4835 depend : ${AUTO_SRC}
4836         makedepend -- ${CPPFLAGS} -- ${C_SRC}
4837
4838 # DO NOT DELETE THIS LINE -- make depend depends on it.
4839 CF_EOF
4840                 fi
4841         fi
4842 done
4843 AC_SUBST(Libs_To_Make)
4844 ])dnl
4845 dnl ---------------------------------------------------------------------------
4846 dnl CF_LIB_SONAME version: 9 updated: 2021/01/04 18:48:01
4847 dnl -------------
4848 dnl Find the and soname for the given shared library.  Set the cache variable
4849 dnl cf_cv_$3_soname to this, unless it is not found.  Then set the cache
4850 dnl variable to "unknown".
4851 dnl
4852 dnl $1 = headers
4853 dnl $2 = code
4854 dnl $3 = library name
4855 AC_DEFUN([CF_LIB_SONAME],
4856 [AC_REQUIRE([AC_PROG_FGREP])dnl
4857
4858 AC_CACHE_CHECK(for soname of $3 library,cf_cv_$3_soname,[
4859
4860 cf_cv_$3_soname=unknown
4861 if test "$cross_compiling" != yes ; then
4862 cat >conftest.$ac_ext <<CF_EOF
4863 $1
4864 int main(void)
4865 {
4866 $2
4867         ${cf_cv_main_return:-return}(0);
4868 }
4869 CF_EOF
4870 cf_save_LIBS="$LIBS"
4871         CF_ADD_LIB($3)
4872         if AC_TRY_EVAL(ac_compile) ; then
4873                 if AC_TRY_EVAL(ac_link) ; then
4874                         cf_cv_$3_soname="`ldd \"conftest$ac_exeext\" 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | ${FGREP-fgrep} lib$3.`"
4875                         test -z "$cf_cv_$3_soname" && cf_cv_$3_soname=unknown
4876                 fi
4877         fi
4878 rm -rf ./conftest*
4879 LIBS="$cf_save_LIBS"
4880 fi
4881 ])
4882 ])
4883 dnl ---------------------------------------------------------------------------
4884 dnl CF_LIB_SUFFIX version: 28 updated: 2021/01/01 16:53:59
4885 dnl -------------
4886 dnl Compute the library file-suffix from the given model name
4887 dnl $1 = model name
4888 dnl $2 = variable to set (the nominal library suffix)
4889 dnl $3 = dependency variable to set (actual filename)
4890 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
4891 AC_DEFUN([CF_LIB_SUFFIX],
4892 [
4893         case X$1 in
4894         (Xlibtool)
4895                 $2='.la'
4896                 $3=[$]$2
4897                 ;;
4898         (Xdebug)
4899                 case "$cf_cv_system_name" in
4900                 (*-msvc*)
4901                         $2='_g.lib'
4902                         ;;
4903                 (*)
4904                         $2='_g.a'
4905                         ;;
4906                 esac
4907                 $3=[$]$2
4908                 ;;
4909         (Xprofile)
4910                 case "$cf_cv_system_name" in
4911                 (*-msvc*)
4912                         $2='_p.lib'
4913                         ;;
4914                 (*)
4915                         $2='_p.a'
4916                         ;;
4917                 esac
4918                 $3=[$]$2
4919                 ;;
4920         (Xshared)
4921                 case "$cf_cv_system_name" in
4922                 (aix[[5-7]]*)
4923                         $2='.so'
4924                         $3=[$]$2
4925                         ;;
4926                 (*-msvc*)
4927                         $2='.dll'
4928                         $3='.dll.lib'
4929                         ;;
4930                 (cygwin*|msys*|mingw*)
4931                         $2='.dll'
4932                         $3='.dll.a'
4933                         ;;
4934                 (darwin*)
4935                         $2='.dylib'
4936                         $3=[$]$2
4937                         ;;
4938                 (hpux*)
4939                         case "$target" in
4940                         (ia64*)
4941                                 $2='.so'
4942                                 $3=[$]$2
4943                                 ;;
4944                         (*)
4945                                 $2='.sl'
4946                                 $3=[$]$2
4947                                 ;;
4948                         esac
4949                         ;;
4950                 (*)
4951                         $2='.so'
4952                         $3=[$]$2
4953                         ;;
4954                 esac
4955                 ;;
4956         (*)
4957                 case "$target" in
4958                 (*-msvc*)
4959                         $2='.lib'
4960                         ;;
4961                 (*)
4962                         $2='.a'
4963                         ;;
4964                 esac
4965                 $3=[$]$2
4966                 ;;
4967         esac
4968         if test -n "${LIB_SUFFIX}${EXTRA_SUFFIX}"
4969         then
4970                 $2="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$2}"
4971                 $3="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$3}"
4972         fi
4973 ])dnl
4974 dnl ---------------------------------------------------------------------------
4975 dnl CF_LIB_TYPE version: 5 updated: 2015/04/17 21:13:04
4976 dnl -----------
4977 dnl Compute the string to append to -library from the given model name
4978 dnl $1 = model name
4979 dnl $2 = variable to set
4980 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
4981 AC_DEFUN([CF_LIB_TYPE],
4982 [
4983         case $1 in
4984         (libtool) $2=''   ;;
4985         (normal)  $2=''   ;;
4986         (debug)   $2='_g' ;;
4987         (profile) $2='_p' ;;
4988         (shared)  $2=''   ;;
4989         esac
4990         test -n "$LIB_SUFFIX" && $2="${LIB_SUFFIX}[$]{$2}"
4991 ])dnl
4992 dnl ---------------------------------------------------------------------------
4993 dnl CF_LINK_DATAONLY version: 13 updated: 2020/02/08 15:59:30
4994 dnl ----------------
4995 dnl Some systems have a non-ANSI linker that doesn't pull in modules that have
4996 dnl only data (i.e., no functions), for example NeXT.  On those systems we'll
4997 dnl have to provide wrappers for global tables to ensure they're linked
4998 dnl properly.
4999 AC_DEFUN([CF_LINK_DATAONLY],
5000 [
5001 AC_MSG_CHECKING([if data-only library module links])
5002 AC_CACHE_VAL(cf_cv_link_dataonly,[
5003         rm -f conftest.a
5004         cat >conftest.$ac_ext <<EOF
5005 #line __oline__ "configure"
5006 int     testdata[[3]] = { 123, 456, 789 };
5007 EOF
5008         if AC_TRY_EVAL(ac_compile) ; then
5009                 mv conftest.o data.o && \
5010                 ( $AR $ARFLAGS conftest.a data.o ) 2>&AC_FD_CC 1>/dev/null
5011         fi
5012         rm -f conftest.$ac_ext data.o
5013         cat >conftest.$ac_ext <<EOF
5014 #line __oline__ "configure"
5015 int     testfunc(void)
5016 {
5017 #if defined(NeXT)
5018         ${cf_cv_main_return:-return}(1);        /* I'm told this linker is broken */
5019 #else
5020         extern int testdata[[3]];
5021         return testdata[[0]] == 123
5022            &&  testdata[[1]] == 456
5023            &&  testdata[[2]] == 789;
5024 #endif
5025 }
5026 EOF
5027         if AC_TRY_EVAL(ac_compile); then
5028                 mv conftest.o func.o && \
5029                 ( $AR $ARFLAGS conftest.a func.o ) 2>&AC_FD_CC 1>/dev/null
5030         fi
5031         rm -f conftest.$ac_ext func.o
5032         ( eval $RANLIB conftest.a ) 2>&AC_FD_CC >/dev/null
5033         cf_saveLIBS="$LIBS"
5034         LIBS="conftest.a $LIBS"
5035         AC_TRY_RUN([
5036         int main(void)
5037         {
5038                 extern int testfunc();
5039                 ${cf_cv_main_return:-return} (!testfunc());
5040         }
5041         ],
5042         [cf_cv_link_dataonly=yes],
5043         [cf_cv_link_dataonly=no],
5044         [cf_cv_link_dataonly=unknown])
5045         LIBS="$cf_saveLIBS"
5046         ])
5047 AC_MSG_RESULT($cf_cv_link_dataonly)
5048
5049 if test "$cf_cv_link_dataonly" = no ; then
5050         AC_DEFINE(BROKEN_LINKER,1,[if data-only library module does not link])
5051         BROKEN_LINKER=1
5052 fi
5053 AC_SUBST(BROKEN_LINKER)
5054
5055 ])dnl
5056 dnl ---------------------------------------------------------------------------
5057 dnl CF_LINK_FUNCS version: 9 updated: 2017/01/21 11:11:02
5058 dnl -------------
5059 dnl Most Unix systems have both link and symlink, a few don't have symlink.
5060 dnl A few non-Unix systems implement symlink, but not link.
5061 dnl A few non-systems implement neither (or have nonfunctional versions).
5062 AC_DEFUN([CF_LINK_FUNCS],
5063 [
5064 AC_CHECK_HEADERS( \
5065 unistd.h \
5066 )
5067 AC_CHECK_FUNCS( \
5068         remove \
5069         unlink )
5070
5071 if test "$cross_compiling" = yes ; then
5072         AC_CHECK_FUNCS( \
5073                 link \
5074                 symlink )
5075 else
5076         AC_CACHE_CHECK(if link/symlink functions work,cf_cv_link_funcs,[
5077                 cf_cv_link_funcs=
5078                 for cf_func in link symlink ; do
5079                         AC_TRY_RUN([
5080 #include <sys/types.h>
5081 #include <sys/stat.h>
5082 #ifdef HAVE_UNISTD_H
5083 #include <unistd.h>
5084 #endif
5085 int main(void)
5086 {
5087         int fail = 0;
5088         char *src = "config.log";
5089         char *dst = "conftest.chk";
5090         struct stat src_sb;
5091         struct stat dst_sb;
5092
5093         stat(src, &src_sb);
5094         fail = ($cf_func("config.log", "conftest.chk") < 0)
5095             || (stat(dst, &dst_sb) < 0)
5096             || (dst_sb.st_mtime != src_sb.st_mtime);
5097 #ifdef HAVE_UNLINK
5098         unlink(dst);
5099 #else
5100         remove(dst);
5101 #endif
5102         ${cf_cv_main_return:-return} (fail);
5103 }
5104                         ],[
5105                         cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
5106                         eval 'ac_cv_func_'$cf_func'=yes'],[
5107                         eval 'ac_cv_func_'$cf_func'=no'],[
5108                         eval 'ac_cv_func_'$cf_func'=error'])
5109                 done
5110                 test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
5111         ])
5112         test "$ac_cv_func_link"    = yes && AC_DEFINE(HAVE_LINK,1,[Define to 1 if we have link() function])
5113         test "$ac_cv_func_symlink" = yes && AC_DEFINE(HAVE_SYMLINK,1,[Define to 1 if we have symlink() function])
5114 fi
5115 ])dnl
5116 dnl ---------------------------------------------------------------------------
5117 dnl CF_MAKEFLAGS version: 20 updated: 2021/01/03 19:29:49
5118 dnl ------------
5119 dnl Some 'make' programs support ${MAKEFLAGS}, some ${MFLAGS}, to pass 'make'
5120 dnl options to lower-levels.  It's very useful for "make -n" -- if we have it.
5121 dnl (GNU 'make' does both, something POSIX 'make', which happens to make the
5122 dnl ${MAKEFLAGS} variable incompatible because it adds the assignments :-)
5123 AC_DEFUN([CF_MAKEFLAGS],
5124 [AC_REQUIRE([AC_PROG_FGREP])dnl
5125
5126 AC_CACHE_CHECK(for makeflags variable, cf_cv_makeflags,[
5127         cf_cv_makeflags=''
5128         for cf_option in '-${MAKEFLAGS}' '${MFLAGS}'
5129         do
5130                 cat >cf_makeflags.tmp <<CF_EOF
5131 SHELL = $SHELL
5132 all :
5133         @ echo '.$cf_option'
5134 CF_EOF
5135                 cf_result=`${MAKE:-make} -k -f cf_makeflags.tmp 2>/dev/null | ${FGREP-fgrep} -v "ing directory" | sed -e 's,[[  ]]*$,,'`
5136                 case "$cf_result" in
5137                 (.*k|.*kw)
5138                         cf_result="`${MAKE:-make} -k -f cf_makeflags.tmp CC=cc 2>/dev/null`"
5139                         case "$cf_result" in
5140                         (.*CC=*)        cf_cv_makeflags=
5141                                 ;;
5142                         (*)     cf_cv_makeflags=$cf_option
5143                                 ;;
5144                         esac
5145                         break
5146                         ;;
5147                 (.-)
5148                         ;;
5149                 (*)
5150                         CF_MSG_LOG(given option \"$cf_option\", no match \"$cf_result\")
5151                         ;;
5152                 esac
5153         done
5154         rm -f cf_makeflags.tmp
5155 ])
5156
5157 AC_SUBST(cf_cv_makeflags)
5158 ])dnl
5159 dnl ---------------------------------------------------------------------------
5160 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
5161 dnl ------------
5162 dnl Generate tags/TAGS targets for makefiles.  Do not generate TAGS if we have
5163 dnl a monocase filesystem.
5164 AC_DEFUN([CF_MAKE_TAGS],[
5165 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
5166
5167 AC_CHECK_PROGS(CTAGS, exctags ctags)
5168 AC_CHECK_PROGS(ETAGS, exetags etags)
5169
5170 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
5171
5172 if test "$cf_cv_mixedcase" = yes ; then
5173         AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
5174 else
5175         MAKE_UPPER_TAGS=no
5176 fi
5177
5178 if test "$MAKE_UPPER_TAGS" = yes ; then
5179         MAKE_UPPER_TAGS=
5180 else
5181         MAKE_UPPER_TAGS="#"
5182 fi
5183
5184 if test "$MAKE_LOWER_TAGS" = yes ; then
5185         MAKE_LOWER_TAGS=
5186 else
5187         MAKE_LOWER_TAGS="#"
5188 fi
5189
5190 AC_SUBST(CTAGS)
5191 AC_SUBST(ETAGS)
5192
5193 AC_SUBST(MAKE_UPPER_TAGS)
5194 AC_SUBST(MAKE_LOWER_TAGS)
5195 ])dnl
5196 dnl ---------------------------------------------------------------------------
5197 dnl CF_MANPAGE_FORMAT version: 14 updated: 2021/01/02 17:09:14
5198 dnl -----------------
5199 dnl Option to allow user to override automatic configuration of manpage format.
5200 dnl There are several special cases:
5201 dnl
5202 dnl     gzip - man checks for, can display gzip'd files
5203 dnl     compress - man checks for, can display compressed files
5204 dnl     BSDI - files in the cat-directories are suffixed ".0"
5205 dnl     formatted - installer should format (put files in cat-directory)
5206 dnl     catonly - installer should only format, e.g., for a turnkey system.
5207 dnl
5208 dnl There are other configurations which this macro does not test, e.g., HPUX's
5209 dnl compressed manpages (but uncompressed manpages are fine, and HPUX's naming
5210 dnl convention would not match our use).
5211 AC_DEFUN([CF_MANPAGE_FORMAT],
5212 [
5213 AC_REQUIRE([CF_PATHSEP])
5214 AC_MSG_CHECKING(format of man-pages)
5215
5216 AC_ARG_WITH(manpage-format,
5217         [  --with-manpage-format   specify manpage-format: gzip/compress/BSDI/normal and
5218                           optionally formatted/catonly, e.g., gzip,formatted],
5219         [MANPAGE_FORMAT=$withval],
5220         [MANPAGE_FORMAT=unknown])
5221
5222 test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=unknown
5223 MANPAGE_FORMAT=`echo "$MANPAGE_FORMAT" | sed -e 's/,/ /g'`
5224
5225 cf_unknown=
5226
5227 case "$MANPAGE_FORMAT" in
5228 (unknown)
5229         if test -z "$MANPATH" ; then
5230                 MANPATH="/usr/man:/usr/share/man"
5231         fi
5232
5233         # look for the 'date' man-page (it's most likely to be installed!)
5234         MANPAGE_FORMAT=
5235         cf_preform="no"
5236         cf_catonly="yes"
5237         cf_example="date"
5238
5239         IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
5240         for cf_dir in $MANPATH; do
5241                 test -z "$cf_dir" && cf_dir=/usr/man
5242                 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
5243                 do
5244                         cf_test=`echo "$cf_name" | sed -e 's/*//'`
5245                         if test "x$cf_test" = "x$cf_name" ; then
5246
5247                                 case "$cf_name" in
5248                                 (*.gz) MANPAGE_FORMAT="$MANPAGE_FORMAT gzip";;
5249                                 (*.Z)  MANPAGE_FORMAT="$MANPAGE_FORMAT compress";;
5250                                 (*.0)  MANPAGE_FORMAT="$MANPAGE_FORMAT BSDI";;
5251                                 (*)    MANPAGE_FORMAT="$MANPAGE_FORMAT normal";;
5252                                 esac
5253
5254                                 case "$cf_name" in
5255                                 ($cf_dir/man*)
5256                                         cf_catonly=no
5257                                         ;;
5258                                 ($cf_dir/cat*)
5259                                         cf_preform=yes
5260                                         ;;
5261                                 esac
5262                                 break
5263                         fi
5264
5265                         # if we found a match in either man* or cat*, stop looking
5266                         if test -n "$MANPAGE_FORMAT" ; then
5267                                 cf_found=no
5268                                 test "$cf_preform" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT formatted"
5269                                 test "$cf_catonly" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT catonly"
5270                                 case "$cf_name" in
5271                                 ($cf_dir/cat*)
5272                                         cf_found=yes
5273                                         ;;
5274                                 esac
5275                                 test "$cf_found" = yes && break
5276                         fi
5277                 done
5278                 # only check the first directory in $MANPATH where we find manpages
5279                 if test -n "$MANPAGE_FORMAT" ; then
5280                         break
5281                 fi
5282         done
5283         # if we did not find the example, just assume it is normal
5284         test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=normal
5285         IFS="$ac_save_ifs"
5286         ;;
5287 (*)
5288         for cf_option in $MANPAGE_FORMAT; do
5289         case "$cf_option" in
5290         (gzip|compress|BSDI|normal|formatted|catonly)
5291                 ;;
5292         (*)
5293                 cf_unknown="$cf_unknown $cf_option"
5294                 ;;
5295         esac
5296         done
5297         ;;
5298 esac
5299
5300 AC_MSG_RESULT($MANPAGE_FORMAT)
5301 if test -n "$cf_unknown" ; then
5302         AC_MSG_WARN(Unexpected manpage-format $cf_unknown)
5303 fi
5304 ])dnl
5305 dnl ---------------------------------------------------------------------------
5306 dnl CF_MANPAGE_RENAMES version: 12 updated: 2021/01/01 16:53:59
5307 dnl ------------------
5308 dnl The Debian people have their own naming convention for manpages.  This
5309 dnl option lets us override the name of the file containing renaming, or
5310 dnl disable it altogether.
5311 AC_DEFUN([CF_MANPAGE_RENAMES],
5312 [
5313 AC_MSG_CHECKING(for manpage renaming)
5314
5315 AC_ARG_WITH(manpage-renames,
5316         [  --with-manpage-renames  specify manpage-renaming],
5317         [MANPAGE_RENAMES=$withval],
5318         [MANPAGE_RENAMES=yes])
5319
5320 case ".$MANPAGE_RENAMES" in
5321 (.no)
5322         ;;
5323 (.|.yes)
5324         # Debian 'man' program?
5325         if test -f /etc/debian_version ; then
5326                 MANPAGE_RENAMES=`cd "$srcdir" && pwd`/man/man_db.renames
5327         else
5328                 MANPAGE_RENAMES=no
5329         fi
5330         ;;
5331 esac
5332
5333 if test "$MANPAGE_RENAMES" != no ; then
5334         if test -f "$srcdir/man/$MANPAGE_RENAMES" ; then
5335                 MANPAGE_RENAMES=`cd "$srcdir/man" && pwd`/$MANPAGE_RENAMES
5336         elif test ! -f "$MANPAGE_RENAMES" ; then
5337                 AC_MSG_ERROR(not a filename: $MANPAGE_RENAMES)
5338         fi
5339
5340         test ! -d man && mkdir man
5341
5342         # Construct a sed-script to perform renaming within man-pages
5343         if test -n "$MANPAGE_RENAMES" ; then
5344                 test ! -d man && mkdir man
5345                 $SHELL "$srcdir/man/make_sed.sh" "$MANPAGE_RENAMES" >./edit_man.sed
5346         fi
5347 fi
5348
5349 AC_MSG_RESULT($MANPAGE_RENAMES)
5350 AC_SUBST(MANPAGE_RENAMES)
5351 ])dnl
5352 dnl ---------------------------------------------------------------------------
5353 dnl CF_MANPAGE_SYMLINKS version: 6 updated: 2015/04/17 21:13:04
5354 dnl -------------------
5355 dnl Some people expect each tool to make all aliases for manpages in the
5356 dnl man-directory.  This accommodates the older, less-capable implementations
5357 dnl of 'man', and is optional.
5358 AC_DEFUN([CF_MANPAGE_SYMLINKS],
5359 [
5360 AC_MSG_CHECKING(if manpage aliases will be installed)
5361
5362 AC_ARG_WITH(manpage-aliases,
5363         [  --with-manpage-aliases  specify manpage-aliases using .so],
5364         [MANPAGE_ALIASES=$withval],
5365         [MANPAGE_ALIASES=yes])
5366
5367 AC_MSG_RESULT($MANPAGE_ALIASES)
5368
5369 case "x$LN_S" in
5370 (xln*)
5371         cf_use_symlinks=yes
5372         ;;
5373 (*)
5374         cf_use_symlinks=no
5375         ;;
5376 esac
5377
5378 MANPAGE_SYMLINKS=no
5379 if test "$MANPAGE_ALIASES" = yes ; then
5380 AC_MSG_CHECKING(if manpage symlinks should be used)
5381
5382 AC_ARG_WITH(manpage-symlinks,
5383         [  --with-manpage-symlinks specify manpage-aliases using symlinks],
5384         [MANPAGE_SYMLINKS=$withval],
5385         [MANPAGE_SYMLINKS=$cf_use_symlinks])
5386
5387 if test "$$cf_use_symlinks" = no; then
5388 if test "$MANPAGE_SYMLINKS" = yes ; then
5389         AC_MSG_WARN(cannot make symlinks, will use .so files)
5390         MANPAGE_SYMLINKS=no
5391 fi
5392 fi
5393
5394 AC_MSG_RESULT($MANPAGE_SYMLINKS)
5395 fi
5396
5397 ])dnl
5398 dnl ---------------------------------------------------------------------------
5399 dnl CF_MANPAGE_TBL version: 3 updated: 2002/01/19 22:51:32
5400 dnl --------------
5401 dnl This option causes manpages to be run through tbl(1) to generate tables
5402 dnl correctly.
5403 AC_DEFUN([CF_MANPAGE_TBL],
5404 [
5405 AC_MSG_CHECKING(for manpage tbl)
5406
5407 AC_ARG_WITH(manpage-tbl,
5408         [  --with-manpage-tbl      specify manpage processing with tbl],
5409         [MANPAGE_TBL=$withval],
5410         [MANPAGE_TBL=no])
5411
5412 AC_MSG_RESULT($MANPAGE_TBL)
5413 ])dnl
5414 dnl ---------------------------------------------------------------------------
5415 dnl CF_MAN_PAGES version: 51 updated: 2021/01/05 16:29:19
5416 dnl ------------
5417 dnl Try to determine if the man-pages on the system are compressed, and if
5418 dnl so, what format is used.  Use this information to construct a script that
5419 dnl will install man-pages.
5420 AC_DEFUN([CF_MAN_PAGES],
5421 [
5422 CF_HELP_MESSAGE(Options to Specify How Manpages are Installed:)
5423 CF_MANPAGE_FORMAT
5424 CF_MANPAGE_RENAMES
5425 CF_MANPAGE_SYMLINKS
5426 CF_MANPAGE_TBL
5427
5428 if test "$prefix" = "NONE" ; then
5429         cf_prefix="$ac_default_prefix"
5430 else
5431         cf_prefix="$prefix"
5432 fi
5433
5434 case "$MANPAGE_FORMAT" in
5435 (*catonly*)
5436         cf_format=yes
5437         cf_inboth=no
5438         ;;
5439 (*formatted*)
5440         cf_format=yes
5441         cf_inboth=yes
5442         ;;
5443 (*)
5444         cf_format=no
5445         cf_inboth=no
5446         ;;
5447 esac
5448
5449 test ! -d man && mkdir man
5450
5451 cf_so_strip=
5452 cf_compress=
5453 case "$MANPAGE_FORMAT" in
5454 (*compress*)
5455         cf_so_strip="Z"
5456         cf_compress=compress
5457         ;;
5458 (*gzip*)
5459         cf_so_strip="gz"
5460         cf_compress=gzip
5461         ;;
5462 esac
5463
5464 cf_edit_man=./edit_man.sh
5465 cf_man_alias=`pwd`/man_alias.sed
5466
5467 cat >$cf_edit_man <<CF_EOF
5468 #! $SHELL
5469 # this script is generated by the configure-script CF_MAN_PAGES macro.
5470
5471 prefix="$cf_prefix"
5472 datarootdir="$datarootdir"
5473 datadir="$datadir"
5474
5475 NCURSES_MAJOR="$NCURSES_MAJOR"
5476 NCURSES_MINOR="$NCURSES_MINOR"
5477 NCURSES_PATCH="$NCURSES_PATCH"
5478
5479 NCURSES_OSPEED="$NCURSES_OSPEED"
5480 TERMINFO="$TERMINFO"
5481
5482 INSTALL="$INSTALL"
5483 INSTALL_DATA="$INSTALL_DATA"
5484
5485 transform="$program_transform_name"
5486
5487 TMP=\${TMPDIR:=/tmp}/man\$\$
5488 trap "rm -f \$TMP" 0 1 2 3 15
5489
5490 form=\[$]1
5491 shift || exit 1
5492
5493 verb=\[$]1
5494 shift || exit 1
5495
5496 mandir=\[$]1
5497 shift || exit 1
5498
5499 srcdir=\[$]1
5500 top_srcdir=\[$]srcdir/..
5501 shift || exit 1
5502
5503 if test "\$form" = normal ; then
5504         if test "$cf_format" = yes ; then
5505         if test "$cf_inboth" = no ; then
5506                 $SHELL "\[$]0" format "\$verb" "\$mandir" "\$srcdir" "\[$]@"
5507                 exit $?
5508         fi
5509         fi
5510         cf_subdir=\$mandir/man
5511         cf_tables=$MANPAGE_TBL
5512 else
5513         cf_subdir=\$mandir/cat
5514         cf_tables=yes
5515 fi
5516
5517 # process the list of source-files
5518 for i in "\[$]@" ; do
5519 case \$i in
5520 (*.orig|*.rej) ;;
5521 (*.[[0-9]]*)
5522         section=\`expr "\$i" : '.*\\.\\([[0-9]]\\)[[xm]]*'\`;
5523         if test "\$verb" = installing ; then
5524         if test ! -d "\$cf_subdir\${section}" ; then
5525                 mkdir -p "\$cf_subdir\$section"
5526         fi
5527         fi
5528
5529         # replace variables in man page
5530         if test ! -f "$cf_man_alias" ; then
5531 cat >>$cf_man_alias <<-CF_EOF2
5532                 s,@DATADIR@,\$datadir,g
5533                 s,@TERMINFO@,\${TERMINFO:="no default value"},g
5534                 s,@TERMINFO_DIRS@,\${TERMINFO_DIRS:="no default value"},g
5535                 s,@NCURSES_MAJOR@,\${NCURSES_MAJOR:="no default value"},g
5536                 s,@NCURSES_MINOR@,\${NCURSES_MINOR:="no default value"},g
5537                 s,@NCURSES_PATCH@,\${NCURSES_PATCH:="no default value"},g
5538                 s,@NCURSES_OSPEED@,\${NCURSES_OSPEED:="no default value"},g
5539 CF_EOF
5540         ifelse($1,,,[
5541         for cf_name in $1
5542         do
5543                 cf_NAME=`echo "$cf_name" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
5544                 cf_name=`echo "$cf_name" | sed "$program_transform_name"`
5545 cat >>$cf_edit_man <<-CF_EOF
5546                 s,@$cf_NAME@,$cf_name,g
5547 CF_EOF
5548         done
5549         ])
5550 cat >>$cf_edit_man <<CF_EOF
5551 CF_EOF2
5552                 echo "...made $cf_man_alias"
5553         fi
5554
5555         aliases=
5556         cf_source=\`basename "\$i"\`
5557         inalias=\$cf_source
5558         test ! -f "\$inalias" && inalias="\$srcdir/\$inalias"
5559         if test ! -f "\$inalias" ; then
5560                 echo ".. skipped \$cf_source"
5561                 continue
5562         fi
5563 CF_EOF
5564
5565 if test "$MANPAGE_ALIASES" != no ; then
5566 cat >>$cf_edit_man <<CF_EOF
5567         nCurses=ignore.3x
5568         test "$with_curses_h" = yes && nCurses=ncurses.3x
5569         aliases=\`sed -f "\$top_srcdir/man/manlinks.sed" "\$inalias" |sed -f "$cf_man_alias" | sort -u; test "\$inalias" = "\$nCurses" && echo curses\`
5570 CF_EOF
5571 fi
5572
5573 if test "$MANPAGE_RENAMES" = no ; then
5574 cat >>$cf_edit_man <<CF_EOF
5575         # perform program transformations for section 1 man pages
5576         if test \$section = 1 ; then
5577                 cf_target=\$cf_subdir\${section}/\`echo \$cf_source|sed "\${transform}"\`
5578         else
5579                 cf_target=\$cf_subdir\${section}/\$cf_source
5580         fi
5581 CF_EOF
5582 else
5583 cat >>$cf_edit_man <<CF_EOF
5584         cf_target=\`grep "^\$cf_source" $MANPAGE_RENAMES | $AWK '{print \[$]2}'\`
5585         if test -z "\$cf_target" ; then
5586                 echo "? missing rename for \$cf_source"
5587                 cf_target="\$cf_source"
5588         fi
5589         cf_target="\$cf_subdir\${section}/\${cf_target}"
5590
5591 CF_EOF
5592 fi
5593
5594 cat >>$cf_edit_man <<CF_EOF
5595         sed     -f "$cf_man_alias" \\
5596 CF_EOF
5597
5598 if test -f "$MANPAGE_RENAMES" ; then
5599 cat >>$cf_edit_man <<CF_EOF
5600                 < "\$i" | sed -f `pwd`/edit_man.sed >\$TMP
5601 CF_EOF
5602 else
5603 cat >>$cf_edit_man <<CF_EOF
5604                 < "\$i" >\$TMP
5605 CF_EOF
5606 fi
5607
5608 cat >>$cf_edit_man <<CF_EOF
5609 if test \$cf_tables = yes ; then
5610         tbl \$TMP >\$TMP.out
5611         mv \$TMP.out \$TMP
5612 fi
5613 CF_EOF
5614
5615 if test "$with_overwrite" != yes ; then
5616 cat >>$cf_edit_man <<CF_EOF
5617         sed -e "/\\#[    ]*include/s,<curses.h,<ncurses$LIB_SUFFIX/curses.h," < \$TMP >\$TMP.out
5618         mv \$TMP.out \$TMP
5619 CF_EOF
5620 fi
5621
5622 if test "$with_curses_h" != yes ; then
5623 cat >>$cf_edit_man <<CF_EOF
5624         sed -e "/\\#[    ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out
5625         mv \$TMP.out \$TMP
5626 CF_EOF
5627 fi
5628
5629 cat >>$cf_edit_man <<CF_EOF
5630         if test "\$form" = format ; then
5631                 nroff -man \$TMP >\$TMP.out
5632                 mv \$TMP.out \$TMP
5633         fi
5634 CF_EOF
5635
5636 if test -n "$cf_compress" ; then
5637 cat >>$cf_edit_man <<CF_EOF
5638         if test "\$verb" = installing ; then
5639         if ( "$cf_compress" -f \$TMP )
5640         then
5641                 mv \$TMP.$cf_so_strip \$TMP
5642         fi
5643         fi
5644         cf_target="\$cf_target.$cf_so_strip"
5645 CF_EOF
5646 fi
5647
5648 case "$MANPAGE_FORMAT" in
5649 (*BSDI*)
5650 cat >>$cf_edit_man <<CF_EOF
5651         if test "\$form" = format ; then
5652                 # BSDI installs only .0 suffixes in the cat directories
5653                 cf_target="\`echo \$cf_target|sed -e 's/\\.[[1-9]]\\+[[a-z]]*/.0/'\`"
5654         fi
5655 CF_EOF
5656   ;;
5657 esac
5658
5659 cat >>$cf_edit_man <<CF_EOF
5660         suffix=\`basename "\$cf_target" | sed -e 's%^[[^.]]*%%'\`
5661         if test "\$verb" = installing ; then
5662                 echo "\$verb \$cf_target"
5663                 \$INSTALL_DATA \$TMP "\$cf_target"
5664                 test -d "\$cf_subdir\${section}" &&
5665                 test -n "\$aliases" && (
5666                         cd "\$cf_subdir\${section}" && (
5667                                 cf_source=\`echo "\$cf_target" |sed -e 's%^.*/\\([[^/]][[^/]]*/[[^/]][[^/]]*$\\)%\\1%'\`
5668                                 test -n "$cf_so_strip" && cf_source=\`echo "\$cf_source" |sed -e 's%\\.$cf_so_strip\$%%'\`
5669                                 cf_target=\`basename "\$cf_target"\`
5670                                 for cf_alias in \$aliases
5671                                 do
5672                                         if test "\$section" = 1 ; then
5673                                                 cf_alias=\`echo "\$cf_alias" |sed "\${transform}"\`
5674                                         fi
5675
5676                                         if test "$MANPAGE_SYMLINKS" = yes ; then
5677                                                 if test -f "\$cf_alias\${suffix}" ; then
5678                                                         if ( cmp -s "\$cf_target" "\$cf_alias\${suffix}" )
5679                                                         then
5680                                                                 continue
5681                                                         fi
5682                                                 fi
5683                                                 echo ".. \$verb alias \$cf_alias\${suffix}"
5684 CF_EOF
5685 case "x$LN_S" in
5686 (*-f)
5687 cat >>$cf_edit_man <<CF_EOF
5688                                                 $LN_S "\$cf_target" "\$cf_alias\${suffix}"
5689 CF_EOF
5690         ;;
5691 (*)
5692 cat >>$cf_edit_man <<CF_EOF
5693                                                 rm -f "\$cf_alias\${suffix}"
5694                                                 $LN_S "\$cf_target" "\$cf_alias\${suffix}"
5695 CF_EOF
5696         ;;
5697 esac
5698 cat >>$cf_edit_man <<CF_EOF
5699                                         elif test "\$cf_target" != "\$cf_alias\${suffix}" ; then
5700                                                 echo ".so \$cf_source" >\$TMP
5701 CF_EOF
5702 if test -n "$cf_compress" ; then
5703 cat >>$cf_edit_man <<CF_EOF
5704                                                 if test -n "$cf_so_strip" ; then
5705                                                         "$cf_compress" -f \$TMP
5706                                                         mv \$TMP.$cf_so_strip \$TMP
5707                                                 fi
5708 CF_EOF
5709 fi
5710 cat >>$cf_edit_man <<CF_EOF
5711                                                 echo ".. \$verb alias \$cf_alias\${suffix}"
5712                                                 rm -f "\$cf_alias\${suffix}"
5713                                                 \$INSTALL_DATA \$TMP "\$cf_alias\${suffix}"
5714                                         fi
5715                                 done
5716                         )
5717                 )
5718         elif test "\$verb" = removing ; then
5719                 test -f "\$cf_target" && (
5720                         echo "\$verb \$cf_target"
5721                         rm -f "\$cf_target"
5722                 )
5723                 test -d "\$cf_subdir\${section}" &&
5724                 test -n "\$aliases" && (
5725                         cd "\$cf_subdir\${section}" && (
5726                                 for cf_alias in \$aliases
5727                                 do
5728                                         if test "\$section" = 1 ; then
5729                                                 cf_alias=\`echo "\$cf_alias" |sed "\${transform}"\`
5730                                         fi
5731
5732                                         echo ".. \$verb alias \$cf_alias\${suffix}"
5733                                         rm -f "\$cf_alias\${suffix}"
5734                                 done
5735                         )
5736                 )
5737         else
5738 #               echo ".hy 0"
5739                 cat \$TMP
5740         fi
5741         ;;
5742 esac
5743 done
5744
5745 if test "$cf_inboth" = yes ; then
5746 if test "\$form" != format ; then
5747         $SHELL "\[$]0" format "\$verb" "\$mandir" "\$srcdir" "\[$]@"
5748 fi
5749 fi
5750
5751 exit 0
5752 CF_EOF
5753 chmod 755 "$cf_edit_man"
5754
5755 ])dnl
5756 dnl ---------------------------------------------------------------------------
5757 dnl CF_MAP_LIB_BASENAME version: 2 updated: 2021/01/02 17:09:14
5758 dnl -------------------
5759 dnl Convert a default-libname to the actual one used via CF_WITH_LIB_BASENAME.
5760 dnl
5761 dnl $1 = variable to set
5762 dnl $2 = default-libname
5763 AC_DEFUN([CF_MAP_LIB_BASENAME],[
5764 CF_UPPER(cf_map_lib_basename,$2)
5765 eval $1="\$${cf_map_lib_basename}_NAME"
5766 ])dnl
5767 dnl ---------------------------------------------------------------------------
5768 dnl CF_MATH_LIB version: 10 updated: 2020/12/31 18:40:20
5769 dnl -----------
5770 dnl Checks for libraries.  At least one UNIX system, Apple Macintosh
5771 dnl Rhapsody 5.5, does not have -lm.  We cannot use the simpler
5772 dnl AC_CHECK_LIB(m,sin), because that fails for C++.
5773 AC_DEFUN([CF_MATH_LIB],
5774 [
5775 AC_CACHE_CHECK(if -lm needed for math functions,
5776         cf_cv_need_libm,[
5777         AC_TRY_LINK([
5778         #include <stdio.h>
5779         #include <stdlib.h>
5780         #include <math.h>
5781         ],
5782         [double x = rand(); printf("result = %g\\n", ]ifelse([$2],,sin(x),$2)[)],
5783         [cf_cv_need_libm=no],
5784         [cf_cv_need_libm=yes])])
5785 if test "$cf_cv_need_libm" = yes
5786 then
5787 ifelse($1,,[
5788         CF_ADD_LIB(m)
5789 ],[$1=-lm])
5790 fi
5791 ])
5792 dnl ---------------------------------------------------------------------------
5793 dnl CF_MIXEDCASE_FILENAMES version: 9 updated: 2021/01/01 16:53:59
5794 dnl ----------------------
5795 dnl Check if the file-system supports mixed-case filenames.  If we're able to
5796 dnl create a lowercase name and see it as uppercase, it doesn't support that.
5797 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
5798 [
5799 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
5800 if test "$cross_compiling" = yes ; then
5801         case "$target_alias" in
5802         (*-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*|darwin*)
5803                 cf_cv_mixedcase=no
5804                 ;;
5805         (*)
5806                 cf_cv_mixedcase=yes
5807                 ;;
5808         esac
5809 else
5810         rm -f conftest CONFTEST
5811         echo test >conftest
5812         if test -f CONFTEST ; then
5813                 cf_cv_mixedcase=no
5814         else
5815                 cf_cv_mixedcase=yes
5816         fi
5817         rm -f conftest CONFTEST
5818 fi
5819 ])
5820 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES,1,[Define to 1 if filesystem supports mixed-case filenames.])
5821 ])dnl
5822 dnl ---------------------------------------------------------------------------
5823 dnl CF_MKSTEMP version: 11 updated: 2021/01/01 13:31:04
5824 dnl ----------
5825 dnl Check for a working mkstemp.  This creates two files, checks that they are
5826 dnl successfully created and distinct (AmigaOS apparently fails on the last).
5827 AC_DEFUN([CF_MKSTEMP],[
5828 AC_CHECK_HEADERS( \
5829 unistd.h \
5830 )
5831 AC_CACHE_CHECK(for working mkstemp, cf_cv_func_mkstemp,[
5832 rm -rf ./conftest*
5833 AC_TRY_RUN([
5834 #include <sys/types.h>
5835 #ifdef HAVE_UNISTD_H
5836 #include <unistd.h>
5837 #endif
5838 #include <stdlib.h>
5839 #include <stdio.h>
5840 #include <string.h>
5841 #include <sys/stat.h>
5842 int main(void)
5843 {
5844         char *tmpl = "conftestXXXXXX";
5845         char name[2][80];
5846         int n;
5847         int result = 0;
5848         int fd;
5849         struct stat sb;
5850
5851         umask(077);
5852         for (n = 0; n < 2; ++n) {
5853                 strcpy(name[n], tmpl);
5854                 if ((fd = mkstemp(name[n])) >= 0) {
5855                         if (!strcmp(name[n], tmpl)
5856                          || stat(name[n], &sb) != 0
5857                          || (sb.st_mode & S_IFMT) != S_IFREG
5858                          || (sb.st_mode & 077) != 0) {
5859                                 result = 1;
5860                         }
5861                         close(fd);
5862                 }
5863         }
5864         if (result == 0
5865          && !strcmp(name[0], name[1]))
5866                 result = 1;
5867         ${cf_cv_main_return:-return}(result);
5868 }
5869 ],[cf_cv_func_mkstemp=yes
5870 ],[cf_cv_func_mkstemp=no
5871 ],[cf_cv_func_mkstemp=maybe])
5872 ])
5873 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
5874         AC_CHECK_FUNC(mkstemp)
5875 fi
5876 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
5877         AC_DEFINE(HAVE_MKSTEMP,1,[Define to 1 if mkstemp() is available and working.])
5878 fi
5879 ])dnl
5880 dnl ---------------------------------------------------------------------------
5881 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
5882 dnl ----------
5883 dnl Write a debug message to config.log, along with the line number in the
5884 dnl configure script.
5885 AC_DEFUN([CF_MSG_LOG],[
5886 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
5887 ])dnl
5888 dnl ---------------------------------------------------------------------------
5889 dnl CF_NCURSES_ABI_6 version: 4 updated: 2021/01/01 13:31:04
5890 dnl ----------------
5891 dnl Set ncurses' ABI to 6 unless overridden by explicit configure option, and
5892 dnl warn about this.
5893 AC_DEFUN([CF_NCURSES_ABI_6],[
5894 if test "${with_abi_version+set}" != set; then
5895         case "$cf_cv_rel_version" in
5896         (5.*)
5897                 cf_cv_rel_version=6.0
5898                 cf_cv_abi_version=6
5899                 AC_MSG_WARN(overriding ABI version to $cf_cv_abi_version)
5900                 ;;
5901         esac
5902 fi
5903 ])dnl
5904 dnl ---------------------------------------------------------------------------
5905 dnl CF_NCURSES_WITH_ABI_VERSION version: 3 updated: 2021/01/01 13:31:04
5906 dnl ---------------------------
5907 dnl Allow ncurses's ABI to be overridden.  Generally this happens when a
5908 dnl packager has incremented the ABI past that used in the original package,
5909 dnl and wishes to keep doing this.
5910 dnl
5911 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
5912 dnl symbol.
5913 AC_DEFUN([CF_NCURSES_WITH_ABI_VERSION],[
5914 CF_WITH_ABI_VERSION($1)
5915 if test "x$cf_cv_abi_version" != "x$with_abi_version"
5916 then
5917         case "$cf_cv_rel_version" in
5918         (5.*)
5919                 cf_cv_rel_version=$with_abi_version.0
5920                 ;;
5921         esac
5922 fi
5923 ])dnl
5924 dnl ---------------------------------------------------------------------------
5925 dnl CF_NO_LEAKS_OPTION version: 8 updated: 2021/01/05 20:05:09
5926 dnl ------------------
5927 dnl see CF_WITH_NO_LEAKS
5928 AC_DEFUN([CF_NO_LEAKS_OPTION],[
5929 AC_MSG_CHECKING(if you want to use $1 for testing)
5930 AC_ARG_WITH($1,
5931         [$2],
5932         [AC_DEFINE_UNQUOTED($3,1,"Define to 1 if you want to use $1 for testing.")ifelse([$4],,[
5933          $4
5934 ])
5935         : "${with_cflags:=-g}"
5936         : "${enable_leaks:=no}"
5937          with_$1=yes],
5938         [with_$1=])
5939 AC_MSG_RESULT(${with_$1:-no})
5940
5941 case ".$with_cflags" in
5942 (.*-g*)
5943         case .$CFLAGS in
5944         (.*-g*)
5945                 ;;
5946         (*)
5947                 CF_ADD_CFLAGS([-g])
5948                 ;;
5949         esac
5950         ;;
5951 esac
5952 ])dnl
5953 dnl ---------------------------------------------------------------------------
5954 dnl CF_NUMBER_SYNTAX version: 2 updated: 2015/04/17 21:13:04
5955 dnl ----------------
5956 dnl Check if the given variable is a number.  If not, report an error.
5957 dnl $1 is the variable
5958 dnl $2 is the message
5959 AC_DEFUN([CF_NUMBER_SYNTAX],[
5960 if test -n "$1" ; then
5961   case $1 in
5962   ([[0-9]]*)
5963         ;;
5964   (*)
5965         AC_MSG_ERROR($2 is not a number: $1)
5966         ;;
5967   esac
5968 else
5969   AC_MSG_ERROR($2 value is empty)
5970 fi
5971 ])dnl
5972 dnl ---------------------------------------------------------------------------
5973 dnl CF_OBJ_SUBDIR version: 8 updated: 2021/01/01 13:31:04
5974 dnl -------------
5975 dnl Compute the object-directory name from the given model name
5976 AC_DEFUN([CF_OBJ_SUBDIR],
5977 [
5978         case $1 in
5979         (libtool) $2='obj_lo'  ;;
5980         (normal)  $2='objects' ;;
5981         (debug)   $2='obj_g' ;;
5982         (profile) $2='obj_p' ;;
5983         (shared)
5984                 case "$cf_cv_system_name" in
5985                 (cygwin|msys)
5986                         $2='objects' ;;
5987                 (*)
5988                         $2='obj_s' ;;
5989                 esac
5990         esac
5991 ])dnl
5992 dnl ---------------------------------------------------------------------------
5993 dnl CF_PATHSEP version: 8 updated: 2021/01/01 13:31:04
5994 dnl ----------
5995 dnl Provide a value for the $PATH and similar separator (or amend the value
5996 dnl as provided in autoconf 2.5x).
5997 AC_DEFUN([CF_PATHSEP],
5998 [
5999         AC_MSG_CHECKING(for PATH separator)
6000         case "$cf_cv_system_name" in
6001         (os2*)  PATH_SEPARATOR=';'  ;;
6002         (*)     ${PATH_SEPARATOR:=':'}  ;;
6003         esac
6004 ifelse([$1],,,[$1=$PATH_SEPARATOR])
6005         AC_SUBST(PATH_SEPARATOR)
6006         AC_MSG_RESULT($PATH_SEPARATOR)
6007 ])dnl
6008 dnl ---------------------------------------------------------------------------
6009 dnl CF_PATH_PROG version: 12 updated: 2021/01/02 09:31:20
6010 dnl ------------
6011 dnl Check for a given program, defining corresponding symbol.
6012 dnl     $1 = environment variable, which is suffixed by "_PATH" in the #define.
6013 dnl     $2 = program name to find.
6014 dnl     $3 = optional list of additional program names to test.
6015 dnl $4 = $PATH
6016 dnl
6017 dnl If there is more than one token in the result, #define the remaining tokens
6018 dnl to $1_ARGS.  We need this for 'install' in particular.
6019 dnl
6020 dnl FIXME: we should allow this to be overridden by environment variables
6021 dnl
6022 AC_DEFUN([CF_PATH_PROG],[
6023 AC_REQUIRE([CF_PATHSEP])
6024 test -z "[$]$1" && $1="$2"
6025 AC_PATH_PROGS($1,[$]$1 $2 ifelse($3,,,$3),[$]$1, ifelse($4,,,$4))
6026
6027 cf_path_prog=""
6028 cf_path_args=""
6029 IFS="${IFS:-    }"; cf_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR"
6030 for cf_temp in $ac_cv_path_$1
6031 do
6032         if test -z "$cf_path_prog" ; then
6033                 if test "$with_full_paths" = yes ; then
6034                         CF_PATH_SYNTAX(cf_temp,break)
6035                         cf_path_prog="$cf_temp"
6036                 else
6037                         cf_path_prog="`basename "$cf_temp"`"
6038                 fi
6039         elif test -z "$cf_path_args" ; then
6040                 cf_path_args="$cf_temp"
6041         else
6042                 cf_path_args="$cf_path_args $cf_temp"
6043         fi
6044 done
6045 IFS="$cf_save_ifs"
6046
6047 if test -n "$cf_path_prog" ; then
6048         CF_MSG_LOG(defining path for ${cf_path_prog})
6049         AC_DEFINE_UNQUOTED($1_PATH,"$cf_path_prog",Define to pathname $1)
6050         test -n "$cf_path_args" && AC_DEFINE_UNQUOTED($1_ARGS,"$cf_path_args",Define to provide args for $1)
6051 fi
6052 ])dnl
6053 dnl ---------------------------------------------------------------------------
6054 dnl CF_PATH_SYNTAX version: 18 updated: 2020/12/31 18:40:20
6055 dnl --------------
6056 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
6057 dnl begins with one of the prefix/exec_prefix variables, and then again if the
6058 dnl result begins with 'NONE'.  This is necessary to work around autoconf's
6059 dnl delayed evaluation of those symbols.
6060 AC_DEFUN([CF_PATH_SYNTAX],[
6061 if test "x$prefix" != xNONE; then
6062         cf_path_syntax="$prefix"
6063 else
6064         cf_path_syntax="$ac_default_prefix"
6065 fi
6066
6067 case ".[$]$1" in
6068 (.\[$]\(*\)*|.\'*\'*)
6069         ;;
6070 (..|./*|.\\*)
6071         ;;
6072 (.[[a-zA-Z]]:[[\\/]]*) # OS/2 EMX
6073         ;;
6074 (.\[$]\{*prefix\}*|.\[$]\{*dir\}*)
6075         eval $1="[$]$1"
6076         case ".[$]$1" in
6077         (.NONE/*)
6078                 $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
6079                 ;;
6080         esac
6081         ;;
6082 (.no|.NONE/*)
6083         $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
6084         ;;
6085 (*)
6086         ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
6087         ;;
6088 esac
6089 ])dnl
6090 dnl ---------------------------------------------------------------------------
6091 dnl CF_PKG_CONFIG version: 11 updated: 2021/01/01 13:31:04
6092 dnl -------------
6093 dnl Check for the package-config program, unless disabled by command-line.
6094 AC_DEFUN([CF_PKG_CONFIG],
6095 [
6096 AC_MSG_CHECKING(if you want to use pkg-config)
6097 AC_ARG_WITH(pkg-config,
6098         [  --with-pkg-config{=path} enable/disable use of pkg-config],
6099         [cf_pkg_config=$withval],
6100         [cf_pkg_config=yes])
6101 AC_MSG_RESULT($cf_pkg_config)
6102
6103 case "$cf_pkg_config" in
6104 (no)
6105         PKG_CONFIG=none
6106         ;;
6107 (yes)
6108         CF_ACVERSION_CHECK(2.52,
6109                 [AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)],
6110                 [AC_PATH_PROG(PKG_CONFIG, pkg-config, none)])
6111         ;;
6112 (*)
6113         PKG_CONFIG=$withval
6114         ;;
6115 esac
6116
6117 test -z "$PKG_CONFIG" && PKG_CONFIG=none
6118 if test "$PKG_CONFIG" != none ; then
6119         CF_PATH_SYNTAX(PKG_CONFIG)
6120 elif test "x$cf_pkg_config" != xno ; then
6121         AC_MSG_WARN(pkg-config is not installed)
6122 fi
6123
6124 AC_SUBST(PKG_CONFIG)
6125 ])dnl
6126 dnl ---------------------------------------------------------------------------
6127 dnl CF_POSIX_C_SOURCE version: 11 updated: 2018/12/31 20:46:17
6128 dnl -----------------
6129 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
6130 dnl
6131 dnl     POSIX.1-1990                            _POSIX_SOURCE
6132 dnl     POSIX.1-1990 and                        _POSIX_SOURCE and
6133 dnl             POSIX.2-1992 C-Language                 _POSIX_C_SOURCE=2
6134 dnl             Bindings Option
6135 dnl     POSIX.1b-1993                           _POSIX_C_SOURCE=199309L
6136 dnl     POSIX.1c-1996                           _POSIX_C_SOURCE=199506L
6137 dnl     X/Open 2000                             _POSIX_C_SOURCE=200112L
6138 dnl
6139 dnl Parameters:
6140 dnl     $1 is the nominal value for _POSIX_C_SOURCE
6141 AC_DEFUN([CF_POSIX_C_SOURCE],
6142 [AC_REQUIRE([CF_POSIX_VISIBLE])dnl
6143
6144 if test "$cf_cv_posix_visible" = no; then
6145
6146 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
6147
6148 cf_save_CFLAGS="$CFLAGS"
6149 cf_save_CPPFLAGS="$CPPFLAGS"
6150
6151 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
6152 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
6153
6154 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
6155         CF_MSG_LOG(if the symbol is already defined go no further)
6156         AC_TRY_COMPILE([#include <sys/types.h>],[
6157 #ifndef _POSIX_C_SOURCE
6158 make an error
6159 #endif],
6160         [cf_cv_posix_c_source=no],
6161         [cf_want_posix_source=no
6162          case .$cf_POSIX_C_SOURCE in
6163          (.[[12]]??*)
6164                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
6165                 ;;
6166          (.2)
6167                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
6168                 cf_want_posix_source=yes
6169                 ;;
6170          (.*)
6171                 cf_want_posix_source=yes
6172                 ;;
6173          esac
6174          if test "$cf_want_posix_source" = yes ; then
6175                 AC_TRY_COMPILE([#include <sys/types.h>],[
6176 #ifdef _POSIX_SOURCE
6177 make an error
6178 #endif],[],
6179                 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
6180          fi
6181          CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
6182          CFLAGS="$cf_trim_CFLAGS"
6183          CPPFLAGS="$cf_trim_CPPFLAGS"
6184          CF_APPEND_TEXT(CPPFLAGS,$cf_cv_posix_c_source)
6185          CF_MSG_LOG(if the second compile does not leave our definition intact error)
6186          AC_TRY_COMPILE([#include <sys/types.h>],[
6187 #ifndef _POSIX_C_SOURCE
6188 make an error
6189 #endif],,
6190          [cf_cv_posix_c_source=no])
6191          CFLAGS="$cf_save_CFLAGS"
6192          CPPFLAGS="$cf_save_CPPFLAGS"
6193         ])
6194 ])
6195
6196 if test "$cf_cv_posix_c_source" != no ; then
6197         CFLAGS="$cf_trim_CFLAGS"
6198         CPPFLAGS="$cf_trim_CPPFLAGS"
6199         CF_ADD_CFLAGS($cf_cv_posix_c_source)
6200 fi
6201
6202 fi # cf_cv_posix_visible
6203
6204 ])dnl
6205 dnl ---------------------------------------------------------------------------
6206 dnl CF_POSIX_VISIBLE version: 1 updated: 2018/12/31 20:46:17
6207 dnl ----------------
6208 dnl POSIX documents test-macros which an application may set before any system
6209 dnl headers are included to make features available.
6210 dnl
6211 dnl Some BSD platforms (originally FreeBSD, but copied by a few others)
6212 dnl diverged from POSIX in 2002 by setting symbols which make all of the most
6213 dnl recent features visible in the system header files unless the application
6214 dnl overrides the corresponding test-macros.  Doing that introduces portability
6215 dnl problems.
6216 dnl
6217 dnl This macro makes a special check for the symbols used for this, to avoid a
6218 dnl conflicting definition.
6219 AC_DEFUN([CF_POSIX_VISIBLE],
6220 [
6221 AC_CACHE_CHECK(if the POSIX test-macros are already defined,cf_cv_posix_visible,[
6222 AC_TRY_COMPILE([#include <stdio.h>],[
6223 #if defined(__POSIX_VISIBLE) && ((__POSIX_VISIBLE - 0L) > 0) \
6224         && defined(__XSI_VISIBLE) && ((__XSI_VISIBLE - 0L) > 0) \
6225         && defined(__BSD_VISIBLE) && ((__BSD_VISIBLE - 0L) > 0) \
6226         && defined(__ISO_C_VISIBLE) && ((__ISO_C_VISIBLE - 0L) > 0)
6227 #error conflicting symbols found
6228 #endif
6229 ],[cf_cv_posix_visible=no],[cf_cv_posix_visible=yes])
6230 ])
6231 ])dnl
6232 dnl ---------------------------------------------------------------------------
6233 dnl CF_PREDEFINE version: 2 updated: 2010/05/26 16:44:57
6234 dnl ------------
6235 dnl Add definitions to CPPFLAGS to ensure they're predefined for all compiles.
6236 dnl
6237 dnl $1 = symbol to test
6238 dnl $2 = value (if any) to use for a predefinition
6239 AC_DEFUN([CF_PREDEFINE],
6240 [
6241 AC_MSG_CHECKING(if we must define $1)
6242 AC_TRY_COMPILE([#include <sys/types.h>
6243 ],[
6244 #ifndef $1
6245 make an error
6246 #endif],[cf_result=no],[cf_result=yes])
6247 AC_MSG_RESULT($cf_result)
6248
6249 if test "$cf_result" = yes ; then
6250         CPPFLAGS="$CPPFLAGS ifelse([$2],,-D$1,[-D$1=$2])"
6251 elif test "x$2" != "x" ; then
6252         AC_MSG_CHECKING(checking for compatible value versus $2)
6253         AC_TRY_COMPILE([#include <sys/types.h>
6254 ],[
6255 #if $1-$2 < 0
6256 make an error
6257 #endif],[cf_result=yes],[cf_result=no])
6258         AC_MSG_RESULT($cf_result)
6259         if test "$cf_result" = no ; then
6260                 # perhaps we can override it - try...
6261                 CPPFLAGS="$CPPFLAGS -D$1=$2"
6262         fi
6263 fi
6264 ])dnl
6265 dnl ---------------------------------------------------------------------------
6266 dnl CF_PRG_RULES version: 2 updated: 2021/01/01 13:31:04
6267 dnl ------------
6268 dnl Append definitions and rules for the given programs to the subdirectory
6269 dnl Makefiles, and the recursion rule for the top-level Makefile.
6270 dnl
6271 dnl parameters
6272 dnl     $1 = script to run
6273 dnl     $2 = list of subdirectories
6274 dnl
6275 dnl variables
6276 dnl     $AWK
6277 AC_DEFUN([CF_PRG_RULES],
6278 [
6279 for cf_dir in $2
6280 do
6281         if test ! -d "$srcdir/$cf_dir" ; then
6282                 continue
6283         elif test -f "$srcdir/$cf_dir/programs" ; then
6284                 $AWK -f $1 "$srcdir/$cf_dir/programs" >>$cf_dir/Makefile
6285         fi
6286 done
6287
6288 ])dnl
6289 dnl ---------------------------------------------------------------------------
6290 dnl CF_PROG_AR version: 1 updated: 2009/01/01 20:15:22
6291 dnl ----------
6292 dnl Check for archiver "ar".
6293 AC_DEFUN([CF_PROG_AR],[
6294 AC_CHECK_TOOL(AR, ar, ar)
6295 ])
6296 dnl ---------------------------------------------------------------------------
6297 dnl CF_PROG_AWK version: 1 updated: 2006/09/16 11:40:59
6298 dnl -----------
6299 dnl Check for awk, ensure that the check found something.
6300 AC_DEFUN([CF_PROG_AWK],
6301 [
6302 AC_PROG_AWK
6303 test -z "$AWK" && AC_MSG_ERROR(No awk program found)
6304 ])dnl
6305 dnl ---------------------------------------------------------------------------
6306 dnl CF_PROG_CC version: 5 updated: 2019/12/31 08:53:54
6307 dnl ----------
6308 dnl standard check for CC, plus followup sanity checks
6309 dnl $1 = optional parameter to pass to AC_PROG_CC to specify compiler name
6310 AC_DEFUN([CF_PROG_CC],[
6311 CF_ACVERSION_CHECK(2.53,
6312         [AC_MSG_WARN(this will incorrectly handle gnatgcc choice)
6313          AC_REQUIRE([AC_PROG_CC])],
6314         [])
6315 ifelse($1,,[AC_PROG_CC],[AC_PROG_CC($1)])
6316 CF_GCC_VERSION
6317 CF_ACVERSION_CHECK(2.52,
6318         [AC_PROG_CC_STDC],
6319         [CF_ANSI_CC_REQD])
6320 CF_CC_ENV_FLAGS
6321 ])dnl
6322 dnl ---------------------------------------------------------------------------
6323 dnl CF_PROG_CC_C_O version: 6 updated: 2021/01/01 13:31:04
6324 dnl --------------
6325 dnl Analogous to AC_PROG_CC_C_O, but more useful: tests only $CC, ensures that
6326 dnl the output file can be renamed, and allows for a shell variable that can
6327 dnl be used later.  The parameter is either CC or CXX.  The result is the
6328 dnl cache variable:
6329 dnl     $cf_cv_prog_CC_c_o
6330 dnl     $cf_cv_prog_CXX_c_o
6331 dnl
6332 dnl $1 = compiler
6333 dnl $2 = compiler options, if any
6334 AC_DEFUN([CF_PROG_CC_C_O],
6335 [AC_REQUIRE([AC_PROG_CC])dnl
6336 AC_MSG_CHECKING([whether [$]$1 understands -c and -o together])
6337 AC_CACHE_VAL(cf_cv_prog_$1_c_o,
6338 [
6339 cat > conftest.$ac_ext <<CF_EOF
6340 int main(void)
6341 {
6342         ${cf_cv_main_return:-return}(0);
6343 }
6344 CF_EOF
6345 # We do the test twice because some compilers refuse to overwrite an
6346 # existing .o file with -o, though they will create one.
6347 ac_try='[$]$1 $2 -c conftest.$ac_ext -o conftest2.$ac_objext >&AC_FD_CC'
6348 if AC_TRY_EVAL(ac_try) &&
6349   test -f conftest2.$ac_objext && AC_TRY_EVAL(ac_try);
6350 then
6351   eval cf_cv_prog_$1_c_o=yes
6352 else
6353   eval cf_cv_prog_$1_c_o=no
6354 fi
6355 rm -rf ./conftest*
6356 ])dnl
6357 if test "$cf_cv_prog_$1_c_o" = yes; then
6358   AC_MSG_RESULT([yes])
6359 else
6360   AC_MSG_RESULT([no])
6361 fi
6362 ])dnl
6363 dnl ---------------------------------------------------------------------------
6364 dnl CF_PROG_GNAT version: 12 updated: 2021/01/02 17:09:14
6365 dnl ------------
6366 dnl Check for gnat/gnatmake/etc, ensure that the toolset is complete.
6367 AC_DEFUN([CF_PROG_GNAT],[
6368 for cf_prog_gnat in gnat gnatmake gprconfig gprbuild
6369 do
6370         CF_UPPER(cf_upper_prog_gnat,${cf_prog_gnat})
6371
6372         unset ac_cv_path_cf_TEMP_gnat
6373         unset cf_TEMP_gnat
6374         AC_PATH_PROG(cf_TEMP_gnat,$cf_prog_gnat,no)
6375         eval "cf_cv_PATH_$cf_upper_prog_gnat=[$]ac_cv_path_cf_TEMP_gnat"
6376
6377         if test "x$cf_TEMP_gnat" != xno; then
6378                 unset cf_cv_gnat_version
6379                 unset cf_TEMP_gnat
6380                 CF_GNAT_VERSION(cf_TEMP_gnat,$cf_prog_gnat)
6381         fi
6382         eval "cf_cv_VERSION_$cf_upper_prog_gnat=[$]cf_TEMP_gnat"
6383
6384         unset cf_TEMP_gnat
6385         unset cf_cv_gnat_version
6386         unset ac_cv_path_cf_TEMP_gnat
6387 done
6388
6389 if test "x$cf_cv_VERSION_GNATMAKE" = "xno"; then
6390         cf_ada_make=
6391         cf_cv_prog_gnat_correct=no
6392 else
6393         cf_ada_make=gnatmake
6394         if test "x$cf_cv_VERSION_GPRCONFIG" = "xno"; then
6395                 # gprconfig is newer than gnatmake; we can continue...
6396                 cf_ada_config="##"
6397         else
6398                 rm -rf ./conftest* ./*~conftest*
6399                 if mkdir conftest.src
6400                 then
6401                         cf_ada_config=""
6402                         cd conftest.src
6403                         for cf_gprconfig in Ada C
6404                         do
6405                                 AC_MSG_CHECKING(for gprconfig name for $cf_gprconfig)
6406                                 if test "$cf_gprconfig" = C
6407                                 then
6408                                         for cf_gprconfig_param in \
6409                                                 "$cf_gprconfig,,,,GNATGCC" \
6410                                                 "$cf_gprconfig,,,,GCC" \
6411                                                 "$cf_gprconfig"
6412                                         do
6413                                                 cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
6414                                                 test -n "$cf_gprconfig_value" && break
6415                                         done
6416                                 else
6417                                         cf_gprconfig_param=$cf_gprconfig
6418                                         cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
6419                                 fi
6420                                 if test -n "$cf_gprconfig_value"
6421                                 then
6422                                         eval "cf_ada_config_[$]cf_gprconfig=[$]cf_gprconfig_value"
6423                                         AC_MSG_RESULT($cf_gprconfig_value)
6424                                 else
6425                                         AC_MSG_RESULT(missing)
6426                                         cf_ada_config="#"
6427                                         break
6428                                 fi
6429                         done
6430                         cd ..
6431                         rm -rf ./conftest* ./*~conftest*
6432                 fi
6433         fi
6434         if test "x$cf_ada_config" != "x#"
6435         then
6436                 CF_GNAT_VERSION
6437                 CF_CHECK_GNAT_VERSION
6438                 AC_CHECK_PROG(M4_exists, m4, yes, no)
6439                 if test "$ac_cv_prog_M4_exists" = no; then
6440                         cf_cv_prog_gnat_correct=no
6441                         AC_MSG_WARN(Ada95 binding required program m4 not found. Ada95 binding disabled)
6442                 fi
6443                 if test "$cf_cv_prog_gnat_correct" = yes; then
6444                         AC_MSG_CHECKING(if GNAT works)
6445                         CF_GNAT_TRY_RUN([procedure conftest;],
6446 [with Text_IO;
6447 with GNAT.OS_Lib;
6448 procedure conftest is
6449 begin
6450    Text_IO.Put ("Hello World");
6451    Text_IO.New_Line;
6452    GNAT.OS_Lib.OS_Exit (0);
6453 end conftest;],
6454 [cf_cv_prog_gnat_correct=yes],
6455 [cf_cv_prog_gnat_correct=no])
6456                         AC_MSG_RESULT($cf_cv_prog_gnat_correct)
6457                 fi
6458         else
6459                 cf_cv_prog_gnat_correct=no
6460         fi
6461 fi
6462
6463 AC_SUBST(cf_ada_make)
6464 AC_SUBST(cf_ada_config)
6465 AC_SUBST(cf_ada_config_Ada)
6466 AC_SUBST(cf_ada_config_C)
6467 ])dnl
6468 dnl ---------------------------------------------------------------------------
6469 dnl CF_PROG_INSTALL version: 10 updated: 2021/01/04 19:33:05
6470 dnl ---------------
6471 dnl Force $INSTALL to be an absolute-path.  Otherwise, edit_man.sh and the
6472 dnl misc/tabset install won't work properly.  Usually this happens only when
6473 dnl using the fallback mkinstalldirs script
6474 AC_DEFUN([CF_PROG_INSTALL],
6475 [AC_PROG_INSTALL
6476 case $INSTALL in
6477 (/*)
6478         ;;
6479 (*)
6480         CF_DIRNAME(cf_dir,$INSTALL)
6481         test -z "$cf_dir" && cf_dir=.
6482         INSTALL="`cd \"$cf_dir\" && pwd`"/"`echo "$INSTALL" | sed -e 's%^.*/%%'`"
6483         ;;
6484 esac
6485 ])dnl
6486 dnl ---------------------------------------------------------------------------
6487 dnl CF_PROG_LDCONFIG version: 5 updated: 2015/04/18 08:56:57
6488 dnl ----------------
6489 dnl Check for ldconfig, needed to fixup shared libraries that would be built
6490 dnl and then used in the install.
6491 AC_DEFUN([CF_PROG_LDCONFIG],[
6492 if test "$cross_compiling" = yes ; then
6493         LDCONFIG=:
6494 else
6495         case "$cf_cv_system_name" in
6496         (dragonfly*|mirbsd*|freebsd*)
6497                 test -z "$LDCONFIG" && LDCONFIG="/sbin/ldconfig -R"
6498                 ;;
6499         (*) LDPATH=$PATH:/sbin:/usr/sbin
6500                 AC_PATH_PROG(LDCONFIG,ldconfig,,$LDPATH)
6501                 ;;
6502         esac
6503 fi
6504 AC_SUBST(LDCONFIG)
6505 ])dnl
6506 dnl ---------------------------------------------------------------------------
6507 dnl CF_PROG_LINT version: 4 updated: 2019/11/20 18:55:37
6508 dnl ------------
6509 AC_DEFUN([CF_PROG_LINT],
6510 [
6511 AC_CHECK_PROGS(LINT, lint cppcheck splint)
6512 case "x$LINT" in
6513 (xcppcheck|x*/cppcheck)
6514         test -z "$LINT_OPTS" && LINT_OPTS="--enable=all"
6515         ;;
6516 esac
6517 AC_SUBST(LINT_OPTS)
6518 ])dnl
6519 dnl ---------------------------------------------------------------------------
6520 dnl CF_PROG_LN_S version: 2 updated: 2010/08/14 18:25:37
6521 dnl ------------
6522 dnl Combine checks for "ln -s" and "ln -sf", updating $LN_S to include "-f"
6523 dnl option if it is supported.
6524 AC_DEFUN([CF_PROG_LN_S],[
6525 AC_PROG_LN_S
6526 AC_MSG_CHECKING(if $LN_S -f options work)
6527
6528 rm -f conf$$.src conf$$dst
6529 echo >conf$$.dst
6530 echo first >conf$$.src
6531 if $LN_S -f conf$$.src conf$$.dst 2>/dev/null; then
6532         cf_prog_ln_sf=yes
6533 else
6534         cf_prog_ln_sf=no
6535 fi
6536 rm -f conf$$.dst conf$$src
6537 AC_MSG_RESULT($cf_prog_ln_sf)
6538
6539 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
6540 ])dnl
6541 dnl ---------------------------------------------------------------------------
6542 dnl CF_REGEX version: 18 updated: 2021/01/01 16:53:59
6543 dnl --------
6544 dnl Attempt to determine if we've got one of the flavors of regular-expression
6545 dnl code that we can support.
6546 AC_DEFUN([CF_REGEX],
6547 [
6548
6549 cf_regex_func=no
6550 cf_regex_libs=
6551 case "$host_os" in
6552 (mingw*)
6553         # -lsystre -ltre -lintl -liconv
6554         AC_CHECK_LIB(systre,regcomp,[
6555                 AC_CHECK_LIB(iconv,libiconv_open,[CF_ADD_LIB(iconv)])
6556                 AC_CHECK_LIB(intl,libintl_gettext,[CF_ADD_LIB(intl)])
6557                 AC_CHECK_LIB(tre,tre_regcomp,[CF_ADD_LIB(tre)])
6558                 CF_ADD_LIB(systre)
6559                 cf_regex_func=regcomp
6560         ],[
6561                 AC_CHECK_LIB(gnurx,regcomp,[
6562                         CF_ADD_LIB(gnurx)
6563                         cf_regex_func=regcomp])
6564         ])
6565         ;;
6566 (*)
6567         cf_regex_libs="regex re"
6568         AC_CHECK_FUNC(regcomp,[cf_regex_func=regcomp],[
6569                 for cf_regex_lib in $cf_regex_libs
6570                 do
6571                         AC_CHECK_LIB($cf_regex_lib,regcomp,[
6572                                         CF_ADD_LIB($cf_regex_lib)
6573                                         cf_regex_func=regcomp
6574                                         break])
6575                 done
6576         ])
6577         ;;
6578 esac
6579
6580 if test "$cf_regex_func" = no ; then
6581         AC_CHECK_FUNC(compile,[cf_regex_func=compile],[
6582                 AC_CHECK_LIB(gen,compile,[
6583                                 CF_ADD_LIB(gen)
6584                                 cf_regex_func=compile])])
6585 fi
6586
6587 if test "$cf_regex_func" = no ; then
6588         AC_MSG_WARN(cannot find regular expression library)
6589 fi
6590
6591 AC_CACHE_CHECK(for regular-expression headers,cf_cv_regex_hdrs,[
6592
6593 cf_cv_regex_hdrs=no
6594 case "$cf_regex_func" in
6595 (compile)
6596         for cf_regex_hdr in regexp.h regexpr.h
6597         do
6598                 AC_TRY_LINK([#include <$cf_regex_hdr>],[
6599                         char *p = compile("", "", "", 0);
6600                         int x = step("", "");
6601                         (void)p;
6602                         (void)x;
6603                 ],[
6604                         cf_cv_regex_hdrs=$cf_regex_hdr
6605                         break
6606                 ])
6607         done
6608         ;;
6609 (*)
6610         for cf_regex_hdr in regex.h
6611         do
6612                 AC_TRY_LINK([#include <sys/types.h>
6613 #include <$cf_regex_hdr>],[
6614                         regex_t *p = 0;
6615                         int x = regcomp(p, "", 0);
6616                         int y = regexec(p, "", 0, 0, 0);
6617                         (void)x;
6618                         (void)y;
6619                         regfree(p);
6620                 ],[
6621                         cf_cv_regex_hdrs=$cf_regex_hdr
6622                         break
6623                 ])
6624         done
6625         ;;
6626 esac
6627
6628 ])
6629
6630 case "$cf_cv_regex_hdrs" in
6631         (no)            AC_MSG_WARN(no regular expression header found) ;;
6632         (regex.h)       AC_DEFINE(HAVE_REGEX_H_FUNCS,1,[Define to 1 to include regex.h for regular expressions]) ;;
6633         (regexp.h)      AC_DEFINE(HAVE_REGEXP_H_FUNCS,1,[Define to 1 to include regexp.h for regular expressions]) ;;
6634         (regexpr.h) AC_DEFINE(HAVE_REGEXPR_H_FUNCS,1,[Define to 1 to include regexpr.h for regular expressions]) ;;
6635 esac
6636 ])dnl
6637 dnl ---------------------------------------------------------------------------
6638 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
6639 dnl ----------------
6640 dnl Remove all -U and -D options that refer to the given symbol from a list
6641 dnl of C compiler options.  This works around the problem that not all
6642 dnl compilers process -U and -D options from left-to-right, so a -U option
6643 dnl cannot be used to cancel the effect of a preceding -D option.
6644 dnl
6645 dnl $1 = target (which could be the same as the source variable)
6646 dnl $2 = source (including '$')
6647 dnl $3 = symbol to remove
6648 define([CF_REMOVE_DEFINE],
6649 [
6650 $1=`echo "$2" | \
6651         sed     -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[[       ]]/ /g' \
6652                 -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[$]//g'`
6653 ])dnl
6654 dnl ---------------------------------------------------------------------------
6655 dnl CF_REMOVE_LIB version: 1 updated: 2007/02/17 14:11:52
6656 dnl -------------
6657 dnl Remove the given library from the symbol
6658 dnl
6659 dnl $1 = target (which could be the same as the source variable)
6660 dnl $2 = source (including '$')
6661 dnl $3 = library to remove
6662 define([CF_REMOVE_LIB],
6663 [
6664 # remove $3 library from $2
6665 $1=`echo "$2" | sed -e 's/-l$3[[        ]]//g' -e 's/-l$3[$]//'`
6666 ])dnl
6667 dnl ---------------------------------------------------------------------------
6668 dnl CF_RESTORE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:47:45
6669 dnl ---------------------
6670 dnl Restore flags saved in CF_SAVE_XTRA_FLAGS
6671 dnl $1 = name of current macro
6672 define([CF_RESTORE_XTRA_FLAGS],
6673 [
6674 LIBS="$cf_save_LIBS_$1"
6675 CFLAGS="$cf_save_CFLAGS_$1"
6676 CPPFLAGS="$cf_save_CPPFLAGS_$1"
6677 ])dnl
6678 dnl ---------------------------------------------------------------------------
6679 dnl CF_RPATH_HACK version: 13 updated: 2021/01/03 18:30:50
6680 dnl -------------
6681 AC_DEFUN([CF_RPATH_HACK],
6682 [AC_REQUIRE([AC_PROG_FGREP])dnl
6683 AC_REQUIRE([CF_LD_RPATH_OPT])dnl
6684
6685 AC_MSG_CHECKING(for updated LDFLAGS)
6686 if test -n "$LD_RPATH_OPT" ; then
6687         AC_MSG_RESULT(maybe)
6688
6689         AC_CHECK_PROGS(cf_ldd_prog,ldd,no)
6690         cf_rpath_list="/usr/lib /lib"
6691         if test "$cf_ldd_prog" != no
6692         then
6693                 cf_rpath_oops=
6694
6695 AC_TRY_LINK([#include <stdio.h>],
6696                 [printf("Hello");],
6697                 [cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
6698                  cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[[        ]]/%/%' -e 's%/[[^/]][[^/]]*$%%' |sort | uniq`])
6699
6700                 # If we passed the link-test, but get a "not found" on a given library,
6701                 # this could be due to inept reconfiguration of gcc to make it only
6702                 # partly honor /usr/local/lib (or whatever).  Sometimes this behavior
6703                 # is intentional, e.g., installing gcc in /usr/bin and suppressing the
6704                 # /usr/local libraries.
6705                 if test -n "$cf_rpath_oops"
6706                 then
6707                         for cf_rpath_src in $cf_rpath_oops
6708                         do
6709                                 for cf_rpath_dir in \
6710                                         /usr/local \
6711                                         /usr/pkg \
6712                                         /opt/sfw
6713                                 do
6714                                         if test -f "$cf_rpath_dir/lib/$cf_rpath_src"
6715                                         then
6716                                                 CF_VERBOSE(...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src)
6717                                                 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
6718                                                 break
6719                                         fi
6720                                 done
6721                         done
6722                 fi
6723         fi
6724
6725         CF_VERBOSE(...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS)
6726
6727         CF_RPATH_HACK_2(LDFLAGS)
6728         CF_RPATH_HACK_2(LIBS)
6729
6730         CF_VERBOSE(...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS)
6731 else
6732         AC_MSG_RESULT(no)
6733 fi
6734 AC_SUBST(EXTRA_LDFLAGS)
6735 ])dnl
6736 dnl ---------------------------------------------------------------------------
6737 dnl CF_RPATH_HACK_2 version: 8 updated: 2021/01/01 13:31:04
6738 dnl ---------------
6739 dnl Do one set of substitutions for CF_RPATH_HACK, adding an rpath option to
6740 dnl EXTRA_LDFLAGS for each -L option found.
6741 dnl
6742 dnl $cf_rpath_list contains a list of directories to ignore.
6743 dnl
6744 dnl $1 = variable name to update.  The LDFLAGS variable should be the only one,
6745 dnl      but LIBS often has misplaced -L options.
6746 AC_DEFUN([CF_RPATH_HACK_2],
6747 [
6748 CF_VERBOSE(...checking $1 [$]$1)
6749
6750 cf_rpath_dst=
6751 for cf_rpath_src in [$]$1
6752 do
6753         case "$cf_rpath_src" in
6754         (-L*)
6755
6756                 # check if this refers to a directory which we will ignore
6757                 cf_rpath_skip=no
6758                 if test -n "$cf_rpath_list"
6759                 then
6760                         for cf_rpath_item in $cf_rpath_list
6761                         do
6762                                 if test "x$cf_rpath_src" = "x-L$cf_rpath_item"
6763                                 then
6764                                         cf_rpath_skip=yes
6765                                         break
6766                                 fi
6767                         done
6768                 fi
6769
6770                 if test "$cf_rpath_skip" = no
6771                 then
6772                         # transform the option
6773                         if test "$LD_RPATH_OPT" = "-R " ; then
6774                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"`
6775                         else
6776                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"`
6777                         fi
6778
6779                         # if we have not already added this, add it now
6780                         cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"`
6781                         if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS"
6782                         then
6783                                 CF_VERBOSE(...Filter $cf_rpath_src ->$cf_rpath_tmp)
6784                                 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
6785                         fi
6786                 fi
6787                 ;;
6788         esac
6789         cf_rpath_dst="$cf_rpath_dst $cf_rpath_src"
6790 done
6791 $1=$cf_rpath_dst
6792
6793 CF_VERBOSE(...checked $1 [$]$1)
6794 AC_SUBST(EXTRA_LDFLAGS)
6795 ])dnl
6796 dnl ---------------------------------------------------------------------------
6797 dnl CF_SAVE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:46:44
6798 dnl ------------------
6799 dnl Use this macro to save CFLAGS/CPPFLAGS/LIBS before checks against X headers
6800 dnl and libraries which do not update those variables.
6801 dnl
6802 dnl $1 = name of current macro
6803 define([CF_SAVE_XTRA_FLAGS],
6804 [
6805 cf_save_LIBS_$1="$LIBS"
6806 cf_save_CFLAGS_$1="$CFLAGS"
6807 cf_save_CPPFLAGS_$1="$CPPFLAGS"
6808 LIBS="$LIBS ${X_PRE_LIBS} ${X_LIBS} ${X_EXTRA_LIBS}"
6809 for cf_X_CFLAGS in $X_CFLAGS
6810 do
6811         case "x$cf_X_CFLAGS" in
6812         x-[[IUD]]*)
6813                 CPPFLAGS="$CPPFLAGS $cf_X_CFLAGS"
6814                 ;;
6815         *)
6816                 CFLAGS="$CFLAGS $cf_X_CFLAGS"
6817                 ;;
6818         esac
6819 done
6820 ])dnl
6821 dnl ---------------------------------------------------------------------------
6822 dnl CF_SHARED_OPTS version: 105 updated: 2021/01/02 17:09:14
6823 dnl --------------
6824 dnl --------------
6825 dnl Attempt to determine the appropriate CC/LD options for creating a shared
6826 dnl library.
6827 dnl
6828 dnl Notes:
6829 dnl a) ${LOCAL_LDFLAGS} is used to link executables that will run within
6830 dnl the build-tree, i.e., by making use of the libraries that are compiled in
6831 dnl $rel_builddir/lib We avoid compiling-in a $rel_builddir/lib path for the
6832 dnl shared library since that can lead to unexpected results at runtime.
6833 dnl b) ${LOCAL_LDFLAGS2} has the same intention but assumes that the shared
6834 dnl libraries are compiled in ../../lib
6835 dnl
6836 dnl The variable 'cf_cv_do_symlinks' is used to control whether we configure
6837 dnl to install symbolic links to the rel/abi versions of shared libraries.
6838 dnl
6839 dnl The variable 'cf_cv_shlib_version' controls whether we use the rel or abi
6840 dnl version when making symbolic links.
6841 dnl
6842 dnl The variable 'cf_cv_shlib_version_infix' controls whether shared library
6843 dnl version numbers are infix (ex: libncurses.<ver>.dylib) or postfix
6844 dnl (ex: libncurses.so.<ver>).
6845 dnl
6846 dnl Some loaders leave 'so_locations' lying around.  It's nice to clean up.
6847 AC_DEFUN([CF_SHARED_OPTS],
6848 [
6849         AC_REQUIRE([CF_LD_RPATH_OPT])
6850
6851         RM_SHARED_OPTS=
6852         LOCAL_LDFLAGS=
6853         LOCAL_LDFLAGS2=
6854         LD_SHARED_OPTS=
6855         INSTALL_LIB="-m 644"
6856         : ${rel_builddir:=.}
6857
6858         shlibdir=$libdir
6859         AC_SUBST(shlibdir)
6860
6861         MAKE_DLLS="#"
6862         AC_SUBST(MAKE_DLLS)
6863
6864         cf_cv_do_symlinks=no
6865         cf_ld_rpath_opt=
6866         test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
6867
6868         AC_MSG_CHECKING(if release/abi version should be used for shared libs)
6869         AC_ARG_WITH(shlib-version,
6870         [  --with-shlib-version=X  Specify rel or abi version for shared libs],
6871         [test -z "$withval" && withval=auto
6872         case "$withval" in
6873         (yes)
6874                 cf_cv_shlib_version=auto
6875                 ;;
6876         (rel|abi|auto)
6877                 cf_cv_shlib_version=$withval
6878                 ;;
6879         (*)
6880                 AC_MSG_RESULT($withval)
6881                 AC_MSG_ERROR([option value must be one of: rel, abi, or auto])
6882                 ;;
6883         esac
6884         ],[cf_cv_shlib_version=auto])
6885         AC_MSG_RESULT($cf_cv_shlib_version)
6886
6887         cf_cv_rm_so_locs=no
6888         cf_try_cflags=
6889
6890         # Some less-capable ports of gcc support only -fpic
6891         CC_SHARED_OPTS=
6892
6893         cf_try_fPIC=no
6894         if test "$GCC" = yes
6895         then
6896                 cf_try_fPIC=yes
6897         else
6898                 case "$cf_cv_system_name" in
6899                 (*linux*)       # e.g., PGI compiler
6900                         cf_try_fPIC=yes
6901                         ;;
6902                 esac
6903         fi
6904
6905         if test "$cf_try_fPIC" = yes
6906         then
6907                 AC_MSG_CHECKING(which $CC option to use)
6908                 cf_save_CFLAGS="$CFLAGS"
6909                 for CC_SHARED_OPTS in -fPIC -fpic ''
6910                 do
6911                         CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
6912                         AC_TRY_COMPILE([#include <stdio.h>],[int x = 1],[break],[])
6913                 done
6914                 AC_MSG_RESULT($CC_SHARED_OPTS)
6915                 CFLAGS="$cf_save_CFLAGS"
6916         fi
6917
6918         cf_cv_shlib_version_infix=no
6919
6920         case "$cf_cv_system_name" in
6921         (aix4.[3-9]*|aix[[5-7]]*)
6922                 if test "$GCC" = yes; then
6923                         CC_SHARED_OPTS='-Wl,-brtl'
6924                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
6925                 else
6926                         CC_SHARED_OPTS='-brtl'
6927                         # as well as '-qpic=large -G' or perhaps "-bM:SRE -bnoentry -bexpall"
6928                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -G -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
6929                 fi
6930                 ;;
6931         (beos*)
6932                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -o $[@] -Xlinker -soname=`basename $[@]` -nostart -e 0'
6933                 ;;
6934         (cygwin*)
6935                 CC_SHARED_OPTS=
6936                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
6937                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
6938                 cf_cv_shlib_version=cygdll
6939                 cf_cv_shlib_version_infix=cygdll
6940                 shlibdir=$bindir
6941                 MAKE_DLLS=
6942                 cat >mk_shared_lib.sh <<-CF_EOF
6943                 #!$SHELL
6944                 SHARED_LIB=\[$]1
6945                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/cyg/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
6946                 shift
6947                 cat <<-EOF
6948                 Linking shared library
6949                 ** SHARED_LIB \[$]SHARED_LIB
6950                 ** IMPORT_LIB \[$]IMPORT_LIB
6951 EOF
6952                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
6953 CF_EOF
6954                 chmod +x mk_shared_lib.sh
6955                 ;;
6956         (msys*)
6957                 CC_SHARED_OPTS=
6958                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
6959                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
6960                 cf_cv_shlib_version=msysdll
6961                 cf_cv_shlib_version_infix=msysdll
6962                 shlibdir=$bindir
6963                 MAKE_DLLS=
6964                 cat >mk_shared_lib.sh <<-CF_EOF
6965                 #!$SHELL
6966                 SHARED_LIB=\[$]1
6967                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/msys-/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
6968                 shift
6969                 cat <<-EOF
6970                 Linking shared library
6971                 ** SHARED_LIB \[$]SHARED_LIB
6972                 ** IMPORT_LIB \[$]IMPORT_LIB
6973 EOF
6974                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
6975 CF_EOF
6976                 chmod +x mk_shared_lib.sh
6977                 ;;
6978         (darwin*)
6979                 cf_try_cflags="no-cpp-precomp"
6980                 CC_SHARED_OPTS="-dynamic"
6981                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $[@]` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $[@]'
6982                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
6983                 cf_cv_shlib_version_infix=yes
6984                 AC_CACHE_CHECK([if ld -search_paths_first works], cf_cv_ldflags_search_paths_first, [
6985                         cf_save_LDFLAGS=$LDFLAGS
6986                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
6987                         AC_TRY_LINK(, [int i;], cf_cv_ldflags_search_paths_first=yes, cf_cv_ldflags_search_paths_first=no)
6988                                 LDFLAGS=$cf_save_LDFLAGS])
6989                 if test "$cf_cv_ldflags_search_paths_first" = yes; then
6990                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
6991                 fi
6992                 ;;
6993         (hpux[[7-8]]*)
6994                 # HP-UX 8.07 ld lacks "+b" option used for libdir search-list
6995                 if test "$GCC" != yes; then
6996                         CC_SHARED_OPTS='+Z'
6997                 fi
6998                 MK_SHARED_LIB='${LD} ${LDFLAGS} -b -o $[@]'
6999                 INSTALL_LIB="-m 555"
7000                 ;;
7001         (hpux*)
7002                 # (tested with gcc 2.7.2 -- I don't have c89)
7003                 if test "$GCC" = yes; then
7004                         LD_SHARED_OPTS='-Xlinker +b -Xlinker ${libdir}'
7005                 else
7006                         CC_SHARED_OPTS='+Z'
7007                         LD_SHARED_OPTS='-Wl,+b,${libdir}'
7008                 fi
7009                 MK_SHARED_LIB='${LD} ${LDFLAGS} +b ${libdir} -b -o $[@]'
7010                 # HP-UX shared libraries must be executable, and should be
7011                 # readonly to exploit a quirk in the memory manager.
7012                 INSTALL_LIB="-m 555"
7013                 ;;
7014         (interix*)
7015                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7016                 if test "$cf_cv_shlib_version" = rel; then
7017                         cf_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
7018                 else
7019                         cf_shared_soname='`basename $[@]`'
7020                 fi
7021                 CC_SHARED_OPTS=
7022                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-rpath,${RPATH_LIST} -Wl,-h,'$cf_shared_soname' -o $[@]'
7023                 ;;
7024         (irix*)
7025                 if test "$cf_cv_enable_rpath" = yes ; then
7026                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7027                 fi
7028                 # tested with IRIX 5.2 and 'cc'.
7029                 if test "$GCC" != yes; then
7030                         CC_SHARED_OPTS='-KPIC'
7031                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -rdata_shared -soname `basename $[@]` -o $[@]'
7032                 else
7033                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,`basename $[@]` -o $[@]'
7034                 fi
7035                 cf_cv_rm_so_locs=yes
7036                 ;;
7037         (linux*|gnu*|k*bsd*-gnu)
7038                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7039                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7040                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7041                 fi
7042                 if test "$cf_cv_enable_rpath" = yes ; then
7043                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7044                 fi
7045                 CF_SHARED_SONAME
7046                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7047                 ;;
7048         (mingw*msvc*)
7049                 cf_cv_shlib_version=msvcdll
7050                 cf_cv_shlib_version_infix=msvcdll
7051                 shlibdir=$bindir
7052                 MAKE_DLLS=
7053                 if test "$DFT_LWR_MODEL" = "shared" ; then
7054                         LOCAL_LDFLAGS="-link -dll"
7055                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7056                         EXTRA_LDFLAGS="-link -dll $EXTRA_LDFLAGS"
7057                 fi
7058                 CC_SHARED_OPTS=
7059                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ ${LD} [$]{CFLAGS}'
7060                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.lib"
7061                 cat >mk_shared_lib.sh <<-CF_EOF
7062                 #!$SHELL
7063                 SHARED_LIB=\[$]1
7064                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.lib/'\`
7065                 shift
7066                 my_ld=\[$]1
7067                 shift
7068                 cat <<-EOF
7069                 Linking shared library
7070                 ** SHARED LIB \$SHARED_LIB
7071                 ** IMPORT_LIB \$IMPORT_LIB
7072 EOF
7073                 args=\$(echo \[$]* | sed -E "s#-l(\w*)#\1.dll.lib#g" | sed -E "s#-L(\w*)#-LIBPATH:\1#g")
7074                 exec \$my_ld -DLL -IMPLIB:"\${IMPORT_LIB}" -OUT:"\${SHARED_LIB}" ${LDFLAGS} \$args
7075                 mv "\${IMPORT_LIB}" "\${IMPORT_LIB}"
7076 CF_EOF
7077                 chmod +x mk_shared_lib.sh
7078                 cat >mk_prog.sh <<-CF_EOF
7079                 #!$SHELL
7080                 shift
7081                 # Ignore first argument (compiler) and use LD (link.exe) unconditionally
7082                 LD="[$]LD"
7083                 clopts=()
7084                 ldopts=("/subsystem:console")
7085                 libs=()
7086                 isdll=0
7087                 while test \[$]# -gt 0; do
7088                         case "\[$]1" in
7089                                 -link)
7090                                         # ignore -link argument
7091                                         ;;
7092                                 -M[[TD]] | -M[[TD]]d)
7093                                         # ignore runtime-library option
7094                                         ;;
7095                                 -dll)
7096                                         isdll=1
7097                                         ;;
7098                                 -W* | -w*)
7099                                         # ignore warnings
7100                                         ;;
7101                                 -D*)
7102                                         clopts+=("\[$]1")
7103                                         ;;
7104                                 -I*)
7105                                         clopts+=("\[$]1")
7106                                         ;;
7107                                 -l*)
7108                                         libs+=("\`echo \"\[$]1\" | sed \"s/^-l//\"\`")
7109                                         ;;
7110                                 -L*)
7111                                         ldopts+=("\`echo \"\[$]1\" | sed \"s/^-L/-LIBPATH:/\"\`")
7112                                         ;;
7113                                 *.obj | *.o)
7114                                         ldopts+=("\[$]1")
7115                                         ;;
7116                                 -Wl,*)
7117                                         for linkarg in \`echo '\[$]1' | sed -e 's/-Wl,//' -e 's/,/ /'\`; do
7118                                                 ldopts+=("\[$]{linkarg}")
7119                                         done
7120                                         ;;
7121                                 *.lib)
7122                                         ldopts+=("\[$]1")
7123                                         ;;
7124                                 -o)
7125                                         shift
7126                                         ldopts+=("-out:\[$]1")
7127                                         ;;
7128                                 *)
7129                                         clopts+=("\[$]1")
7130                                         ldopts+=("\[$]1")
7131                                         ;;
7132                         esac
7133                         shift
7134                 done
7135                 if [[ "\$isdll" -ne 0 ]]; then
7136                         for lib in \[$]{libs[[*]]}; do
7137                                 ldopts+=("\[$]lib.dll.lib")
7138                         done
7139                 else
7140                         for lib in \[$]{libs[[*]]}; do
7141                                 ldopts+=("\[$]lib.lib")
7142                         done
7143                 fi
7144                 cat <<-EOF
7145                 Creating program
7146                 ** ld options:   "\[$]{ldopts[[@]]}"
7147 EOF
7148                 exec \[$]LD \[$]{ldopts[[@]]}
7149 CF_EOF
7150                 chmod +x mk_prog.sh
7151                 LINK_PROGS="$SHELL ${rel_builddir}/mk_prog.sh"
7152                 LINK_TESTS="$SHELL ${rel_builddir}/mk_prog.sh"
7153                 ;;
7154         (mingw*)
7155                 cf_cv_shlib_version=mingw
7156                 cf_cv_shlib_version_infix=mingw
7157                 shlibdir=$bindir
7158                 MAKE_DLLS=
7159                 if test "$DFT_LWR_MODEL" = "shared" ; then
7160                         LOCAL_LDFLAGS="-Wl,--enable-auto-import"
7161                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7162                         EXTRA_LDFLAGS="-Wl,--enable-auto-import $EXTRA_LDFLAGS"
7163                 fi
7164                 CC_SHARED_OPTS=
7165                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
7166                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
7167                 cat >mk_shared_lib.sh <<-CF_EOF
7168                 #!$SHELL
7169                 SHARED_LIB=\[$]1
7170                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
7171                 shift
7172                 cat <<-EOF
7173                 Linking shared library
7174                 ** SHARED_LIB \[$]SHARED_LIB
7175                 ** IMPORT_LIB \[$]IMPORT_LIB
7176 EOF
7177                 exec \[$]* ${LDFLAGS} -shared -Wl,--enable-auto-import,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
7178 CF_EOF
7179                 chmod +x mk_shared_lib.sh
7180                 ;;
7181         (openbsd[[2-9]].*|mirbsd*)
7182                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7183                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7184                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7185                 fi
7186                 if test "$cf_cv_enable_rpath" = yes ; then
7187                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7188                 fi
7189                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7190                 CF_SHARED_SONAME
7191                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7192                 ;;
7193         (nskJ*)
7194                 CC_SHARED_OPTS=
7195                 MK_SHARED_LIB='${LD} -Wshared -Weld=-export_all -o $[@]'
7196                 ;;
7197         (nskL*)
7198                 CC_SHARED_OPTS=
7199                 MK_SHARED_LIB='${LD} -Wshared -Wxld=-export_all -o $[@]'
7200                 ;;
7201         (nto-qnx*|openbsd*|freebsd[[12]].*)
7202                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7203                 MK_SHARED_LIB='${LD} ${LDFLAGS} -Bshareable -o $[@]'
7204                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7205                 ;;
7206         (dragonfly*|freebsd*)
7207                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7208                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
7209                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
7210                         LOCAL_LDFLAGS2="${cf_ld_rpath_opt}\${RPATH_LIST} $LOCAL_LDFLAGS"
7211                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7212                 fi
7213                 CF_SHARED_SONAME
7214                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
7215                 ;;
7216         (netbsd*)
7217                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
7218                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
7219                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
7220                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7221                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
7222                         if test "$cf_cv_shlib_version" = auto; then
7223                         if test -f /usr/libexec/ld.elf_so; then
7224                                 cf_cv_shlib_version=abi
7225                         else
7226                                 cf_cv_shlib_version=rel
7227                         fi
7228                         fi
7229                         CF_SHARED_SONAME
7230                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $[@]'
7231                 else
7232                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -o $[@]'
7233                 fi
7234                 ;;
7235         (osf*|mls+*)
7236                 # tested with OSF/1 V3.2 and 'cc'
7237                 # tested with OSF/1 V3.2 and gcc 2.6.3 (but the c++ demo didn't
7238                 # link with shared libs).
7239                 MK_SHARED_LIB='${LD} ${LDFLAGS} -set_version ${REL_VERSION}:${ABI_VERSION} -expect_unresolved "*" -shared -soname `basename $[@]`'
7240                 case "$host_os" in
7241                 (osf4*)
7242                         MK_SHARED_LIB="${MK_SHARED_LIB} -msym"
7243                         ;;
7244                 esac
7245                 MK_SHARED_LIB="${MK_SHARED_LIB}"' -o $[@]'
7246                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
7247                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
7248                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7249                 fi
7250                 cf_cv_rm_so_locs=yes
7251                 ;;
7252         (sco3.2v5*)  # also uw2* and UW7: hops 13-Apr-98
7253                 # tested with osr5.0.5
7254                 if test "$GCC" != yes; then
7255                         CC_SHARED_OPTS='-belf -KPIC'
7256                 fi
7257                 MK_SHARED_LIB='${LD} ${LDFLAGS} -dy -G -h `basename $[@] .${REL_VERSION}`.${ABI_VERSION} -o [$]@'
7258                 if test "$cf_cv_enable_rpath" = yes ; then
7259                         # only way is to set LD_RUN_PATH but no switch for it
7260                         RUN_PATH=$libdir
7261                 fi
7262                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7263                 LINK_PROGS='LD_RUN_PATH=${libdir}'
7264                 LINK_TESTS='Pwd=`pwd`;LD_RUN_PATH=`dirname $${Pwd}`/lib'
7265                 ;;
7266         (sunos4*)
7267                 # tested with SunOS 4.1.1 and gcc 2.7.0
7268                 if test "$GCC" != yes; then
7269                         CC_SHARED_OPTS='-KPIC'
7270                 fi
7271                 MK_SHARED_LIB='${LD} ${LDFLAGS} -assert pure-text -o $[@]'
7272                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
7273                 ;;
7274         (solaris2*)
7275                 # tested with SunOS 5.5.1 (solaris 2.5.1) and gcc 2.7.2
7276                 # tested with SunOS 5.10 (solaris 10) and gcc 3.4.3
7277                 if test "$DFT_LWR_MODEL" = "shared" ; then
7278                         LOCAL_LDFLAGS="-R \$(LOCAL_LIBDIR):\${libdir}"
7279                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
7280                 fi
7281                 if test "$cf_cv_enable_rpath" = yes ; then
7282                         EXTRA_LDFLAGS="-R \${libdir} $EXTRA_LDFLAGS"
7283                 fi
7284                 CF_SHARED_SONAME
7285                 if test "$GCC" != yes; then
7286                         cf_save_CFLAGS="$CFLAGS"
7287                         for cf_shared_opts in -xcode=pic32 -xcode=pic13 -KPIC -Kpic -O
7288                         do
7289                                 CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
7290                                 AC_TRY_COMPILE([#include <stdio.h>],[printf("Hello\\n");],[break])
7291                         done
7292                         CFLAGS="$cf_save_CFLAGS"
7293                         CC_SHARED_OPTS=$cf_shared_opts
7294                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dy -G -h '$cf_cv_shared_soname' -o $[@]'
7295                 else
7296                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -dy -G -h '$cf_cv_shared_soname' -o $[@]'
7297                 fi
7298                 ;;
7299         (sysv5uw7*|unix_sv*)
7300                 # tested with UnixWare 7.1.0 (gcc 2.95.2 and cc)
7301                 if test "$GCC" != yes; then
7302                         CC_SHARED_OPTS='-KPIC'
7303                 fi
7304                 MK_SHARED_LIB='${LD} ${LDFLAGS} -d y -G -o [$]@'
7305                 ;;
7306         (*)
7307                 CC_SHARED_OPTS='unknown'
7308                 MK_SHARED_LIB='echo unknown'
7309                 ;;
7310         esac
7311
7312         # This works if the last tokens in $MK_SHARED_LIB are the -o target.
7313         case "$cf_cv_shlib_version" in
7314         (rel|abi)
7315                 case "$MK_SHARED_LIB" in
7316                 (*'-o $[@]')
7317                         test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
7318                         ;;
7319                 (*)
7320                         AC_MSG_WARN(ignored --with-shlib-version)
7321                         ;;
7322                 esac
7323                 ;;
7324         esac
7325
7326         if test -n "$cf_try_cflags"
7327         then
7328 cat > conftest.$ac_ext <<EOF
7329 #line __oline__ "${as_me:-configure}"
7330 #include <stdio.h>
7331 int main(int argc, char *argv[[]])
7332 {
7333         printf("hello\\n");
7334         return (argv[[argc-1]] == 0) ;
7335 }
7336 EOF
7337                 cf_save_CFLAGS="$CFLAGS"
7338                 for cf_opt in $cf_try_cflags
7339                 do
7340                         CFLAGS="$cf_save_CFLAGS -$cf_opt"
7341                         AC_MSG_CHECKING(if CFLAGS option -$cf_opt works)
7342                         if AC_TRY_EVAL(ac_compile); then
7343                                 AC_MSG_RESULT(yes)
7344                                 cf_save_CFLAGS="$CFLAGS"
7345                         else
7346                                 AC_MSG_RESULT(no)
7347                         fi
7348                 done
7349                 CFLAGS="$cf_save_CFLAGS"
7350         fi
7351
7352
7353         # RPATH_LIST is a colon-separated list of directories
7354         test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
7355         test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
7356
7357         test "$cf_cv_rm_so_locs" = yes && RM_SHARED_OPTS="$RM_SHARED_OPTS so_locations"
7358
7359         CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
7360         CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
7361
7362         AC_SUBST(CC_SHARED_OPTS)
7363         AC_SUBST(LD_RPATH_OPT)
7364         AC_SUBST(LD_SHARED_OPTS)
7365         AC_SUBST(MK_SHARED_LIB)
7366         AC_SUBST(RM_SHARED_OPTS)
7367
7368         AC_SUBST(LINK_PROGS)
7369         AC_SUBST(LINK_TESTS)
7370
7371         AC_SUBST(EXTRA_LDFLAGS)
7372         AC_SUBST(LOCAL_LDFLAGS)
7373         AC_SUBST(LOCAL_LDFLAGS2)
7374
7375         AC_SUBST(INSTALL_LIB)
7376         AC_SUBST(RPATH_LIST)
7377 ])dnl
7378 dnl ---------------------------------------------------------------------------
7379 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
7380 dnl ----------------
7381 dnl utility macro for CF_SHARED_OPTS, constructs "$cf_cv_shared_soname" for
7382 dnl substitution into MK_SHARED_LIB string for the "-soname" (or similar)
7383 dnl option.
7384 dnl
7385 dnl $1 is the default that should be used for "$cf_cv_shlib_version".
7386 dnl If missing, use "rel".
7387 define([CF_SHARED_SONAME],
7388 [
7389         test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=ifelse($1,,rel,$1)
7390         if test "$cf_cv_shlib_version" = rel; then
7391                 cf_cv_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
7392         else
7393                 cf_cv_shared_soname='`basename $[@]`'
7394         fi
7395 ])
7396 dnl ---------------------------------------------------------------------------
7397 dnl CF_SIGWINCH version: 6 updated: 2021/01/01 13:31:04
7398 dnl -----------
7399 dnl Use this macro after CF_XOPEN_SOURCE, but do not require it (not all
7400 dnl programs need this test).
7401 dnl
7402 dnl This is really a Mac OS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
7403 dnl forces SIGWINCH to be undefined (breaks xterm, ncurses).  Oddly, the struct
7404 dnl winsize declaration is left alone - we may revisit this if Apple choose to
7405 dnl break that part of the interface as well.
7406 AC_DEFUN([CF_SIGWINCH],
7407 [
7408 AC_CACHE_CHECK(if SIGWINCH is defined,cf_cv_define_sigwinch,[
7409         AC_TRY_COMPILE([
7410 #include <sys/types.h>
7411 #include <sys/signal.h>
7412 ],[int x = SIGWINCH; (void)x],
7413         [cf_cv_define_sigwinch=yes],
7414         [AC_TRY_COMPILE([
7415 #undef _XOPEN_SOURCE
7416 #undef _POSIX_SOURCE
7417 #undef _POSIX_C_SOURCE
7418 #include <sys/types.h>
7419 #include <sys/signal.h>
7420 ],[int x = SIGWINCH; (void)x],
7421         [cf_cv_define_sigwinch=maybe],
7422         [cf_cv_define_sigwinch=no])
7423 ])
7424 ])
7425
7426 if test "$cf_cv_define_sigwinch" = maybe ; then
7427 AC_CACHE_CHECK(for actual SIGWINCH definition,cf_cv_fixup_sigwinch,[
7428 cf_cv_fixup_sigwinch=unknown
7429 cf_sigwinch=32
7430 while test "$cf_sigwinch" != 1
7431 do
7432         AC_TRY_COMPILE([
7433 #undef _XOPEN_SOURCE
7434 #undef _POSIX_SOURCE
7435 #undef _POSIX_C_SOURCE
7436 #include <sys/types.h>
7437 #include <sys/signal.h>
7438 ],[
7439 #if SIGWINCH != $cf_sigwinch
7440 make an error
7441 #endif
7442 int x = SIGWINCH; (void)x],
7443         [cf_cv_fixup_sigwinch=$cf_sigwinch
7444          break])
7445
7446 cf_sigwinch="`expr "$cf_sigwinch" - 1`"
7447 done
7448 ])
7449
7450         if test "$cf_cv_fixup_sigwinch" != unknown ; then
7451                 CPPFLAGS="$CPPFLAGS -DSIGWINCH=$cf_cv_fixup_sigwinch"
7452         fi
7453 fi
7454 ])dnl
7455 dnl ---------------------------------------------------------------------------
7456 dnl CF_SIG_ATOMIC_T version: 5 updated: 2020/03/10 18:53:47
7457 dnl ---------------
7458 dnl signal handler, but there are some gcc dependencies in that recommendation.
7459 dnl Try anyway.
7460 AC_DEFUN([CF_SIG_ATOMIC_T],
7461 [
7462 AC_MSG_CHECKING(for signal global datatype)
7463 AC_CACHE_VAL(cf_cv_sig_atomic_t,[
7464         for cf_type in \
7465                 "volatile sig_atomic_t" \
7466                 "sig_atomic_t" \
7467                 "int"
7468         do
7469         AC_TRY_COMPILE([
7470 #include <sys/types.h>
7471 #include <signal.h>
7472 #include <stdio.h>
7473
7474 extern $cf_type x;
7475 $cf_type x;
7476 static void handler(int sig)
7477 {
7478         (void)sig;
7479         x = 5;
7480 }],
7481                 [signal(SIGINT, handler);
7482                  x = 1],
7483                 [cf_cv_sig_atomic_t=$cf_type],
7484                 [cf_cv_sig_atomic_t=no])
7485                 test "$cf_cv_sig_atomic_t" != no && break
7486         done
7487         ])
7488 AC_MSG_RESULT($cf_cv_sig_atomic_t)
7489 test "$cf_cv_sig_atomic_t" != no && AC_DEFINE_UNQUOTED(SIG_ATOMIC_T, $cf_cv_sig_atomic_t,[Define to signal global datatype])
7490 ])dnl
7491 dnl ---------------------------------------------------------------------------
7492 dnl CF_SIZECHANGE version: 17 updated: 2021/01/01 13:31:04
7493 dnl -------------
7494 dnl Check for definitions & structures needed for window size-changing
7495 dnl
7496 dnl https://stackoverflow.com/questions/18878141/difference-between-structures-ttysize-and-winsize/50769952#50769952
7497 AC_DEFUN([CF_SIZECHANGE],
7498 [
7499 AC_REQUIRE([CF_STRUCT_TERMIOS])
7500 AC_CACHE_CHECK(declaration of size-change, cf_cv_sizechange,[
7501         cf_cv_sizechange=unknown
7502         cf_save_CPPFLAGS="$CPPFLAGS"
7503
7504 for cf_opts in "" "NEED_PTEM_H"
7505 do
7506
7507         CPPFLAGS="$cf_save_CPPFLAGS"
7508         if test -n "$cf_opts"
7509         then
7510                 CF_APPEND_TEXT(CPPFLAGS,-D$cf_opts)
7511         fi
7512         AC_TRY_COMPILE([#include <sys/types.h>
7513 #ifdef HAVE_TERMIOS_H
7514 #include <termios.h>
7515 #else
7516 #ifdef HAVE_TERMIO_H
7517 #include <termio.h>
7518 #endif
7519 #endif
7520
7521 #ifdef NEED_PTEM_H
7522 /* This is a workaround for SCO:  they neglected to define struct winsize in
7523  * termios.h -- it's only in termio.h and ptem.h
7524  */
7525 #include <sys/stream.h>
7526 #include <sys/ptem.h>
7527 #endif
7528
7529 #ifdef HAVE_SYS_IOCTL_H
7530 #include <sys/ioctl.h>
7531 #endif
7532 ],[
7533 #ifdef TIOCGSIZE
7534         struct ttysize win;     /* SunOS 3.0... */
7535         int y = win.ts_lines = 2;
7536         int x = win.ts_cols = 1;
7537         (void)y;
7538         (void)x;
7539 #else
7540 #ifdef TIOCGWINSZ
7541         struct winsize win;     /* everything else */
7542         int y = win.ws_row = 2;
7543         int x = win.ws_col = 1;
7544         (void)y;
7545         (void)x;
7546 #else
7547         no TIOCGSIZE or TIOCGWINSZ
7548 #endif /* TIOCGWINSZ */
7549 #endif /* TIOCGSIZE */
7550         ],
7551         [cf_cv_sizechange=yes],
7552         [cf_cv_sizechange=no])
7553
7554         CPPFLAGS="$cf_save_CPPFLAGS"
7555         if test "$cf_cv_sizechange" = yes ; then
7556                 echo "size-change succeeded ($cf_opts)" >&AC_FD_CC
7557                 test -n "$cf_opts" && cf_cv_sizechange="$cf_opts"
7558                 break
7559         fi
7560 done
7561 ])
7562 if test "$cf_cv_sizechange" != no ; then
7563         AC_DEFINE(HAVE_SIZECHANGE,1,[Define to 1 if sizechange declarations are provided])
7564         case "$cf_cv_sizechange" in
7565         (NEED*)
7566                 AC_DEFINE_UNQUOTED($cf_cv_sizechange )
7567                 ;;
7568         esac
7569 fi
7570 ])dnl
7571 dnl ---------------------------------------------------------------------------
7572 dnl CF_SRC_MODULES version: 33 updated: 2021/01/01 13:31:04
7573 dnl --------------
7574 dnl For each parameter, test if the source-directory exists, and if it contains
7575 dnl a 'modules' file.  If so, add to the list $cf_cv_src_modules which we'll
7576 dnl use in CF_LIB_RULES.
7577 dnl
7578 dnl This uses the configured value to make the lists SRC_SUBDIRS and
7579 dnl SUB_MAKEFILES which are used in the makefile-generation scheme.
7580 AC_DEFUN([CF_SRC_MODULES],
7581 [
7582 AC_REQUIRE([CF_CHECK_GNAT_VERSION])
7583 AC_MSG_CHECKING(for src modules)
7584
7585 # dependencies and linker-arguments for test-programs
7586 TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEPS"
7587 TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEP2"
7588 if test "$DFT_LWR_MODEL" = "libtool"; then
7589         TEST_ARGS="${TEST_DEPS}"
7590         TEST_ARG2="${TEST_DEP2}"
7591 else
7592         TEST_ARGS="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARGS"
7593         TEST_ARG2="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARG2"
7594 fi
7595
7596 PC_MODULES_TO_MAKE="ncurses${USE_ARG_SUFFIX}"
7597 cf_cv_src_modules=
7598 for cf_dir in $1
7599 do
7600         if test -f "$srcdir/$cf_dir/modules" ; then
7601
7602                 # We may/may not have tack in the distribution, though the
7603                 # makefile is.
7604                 if test "$cf_dir" = tack ; then
7605                         if test "x$cf_with_tack" != "xyes"; then
7606                                 continue
7607                         fi
7608                 fi
7609
7610                 if test -z "$cf_cv_src_modules"; then
7611                         cf_cv_src_modules=$cf_dir
7612                 else
7613                         cf_cv_src_modules="$cf_cv_src_modules $cf_dir"
7614                 fi
7615
7616                 # Make the ncurses_cfg.h file record the library interface files as
7617                 # well.  These are header files that are the same name as their
7618                 # directory.  Ncurses is the only library that does not follow
7619                 # that pattern.
7620                 if test "$cf_dir" = tack ; then
7621                         continue
7622                 elif test -f "$srcdir/${cf_dir}/${cf_dir}.h" ; then
7623                         CF_UPPER(cf_have_include,$cf_dir)
7624                         AC_DEFINE_UNQUOTED(HAVE_${cf_have_include}_H)
7625                         AC_DEFINE_UNQUOTED(HAVE_LIB${cf_have_include})
7626                         CF_MAP_LIB_BASENAME(TEST_ROOT,$cf_dir)
7627                         TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${TEST_ROOT}${DFT_DEP_SUFFIX} $TEST_DEPS"
7628                         TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${TEST_ROOT}${DFT_DEP_SUFFIX} $TEST_DEP2"
7629                         if test "$DFT_LWR_MODEL" = "libtool"; then
7630                                 TEST_ARGS="${TEST_DEPS}"
7631                                 TEST_ARG2="${TEST_DEP2}"
7632                         else
7633                                 TEST_ARGS="-l${TEST_ROOT}${USE_ARG_SUFFIX} $TEST_ARGS"
7634                                 TEST_ARG2="-l${TEST_ROOT}${USE_ARG_SUFFIX} $TEST_ARG2"
7635                         fi
7636                         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ${cf_dir}${USE_ARG_SUFFIX}"
7637                 fi
7638         fi
7639 done
7640 AC_MSG_RESULT($cf_cv_src_modules)
7641
7642 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS"
7643 TEST_ARG2="-L${LIB_2ND} $TEST_ARG2"
7644
7645 AC_SUBST(TEST_ARGS)
7646 AC_SUBST(TEST_DEPS)
7647
7648 AC_SUBST(TEST_ARG2)
7649 AC_SUBST(TEST_DEP2)
7650
7651 SRC_SUBDIRS=
7652 if test "x$cf_with_manpages" != xno ; then
7653         SRC_SUBDIRS="$SRC_SUBDIRS man"
7654 fi
7655 SRC_SUBDIRS="$SRC_SUBDIRS include"
7656 for cf_dir in $cf_cv_src_modules
7657 do
7658         SRC_SUBDIRS="$SRC_SUBDIRS $cf_dir"
7659 done
7660 if test "x$cf_with_tests" != "xno" ; then
7661         SRC_SUBDIRS="$SRC_SUBDIRS test"
7662 fi
7663 # always make this, to install the ncurses-config script
7664 SRC_SUBDIRS="$SRC_SUBDIRS misc"
7665 if test "$cf_with_cxx_binding" != no; then
7666         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ncurses++${USE_ARG_SUFFIX}"
7667         SRC_SUBDIRS="$SRC_SUBDIRS c++"
7668 fi
7669
7670 test "x$with_termlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TINFO_ARG_SUFFIX"
7671 test "x$with_ticlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TICS_ARG_SUFFIX"
7672
7673 AC_SUBST(PC_MODULES_TO_MAKE)
7674
7675 ADA_SUBDIRS=
7676 if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = xyes && test -f "$srcdir/Ada95/Makefile.in" ; then
7677         SRC_SUBDIRS="$SRC_SUBDIRS Ada95"
7678         ADA_SUBDIRS="gen src"
7679         if test "x$cf_with_tests" != "xno" ; then
7680                 ADA_SUBDIRS="$ADA_SUBDIRS samples"
7681         fi
7682 fi
7683
7684 SUB_MAKEFILES=
7685 for cf_dir in $SRC_SUBDIRS
7686 do
7687         SUB_MAKEFILES="$SUB_MAKEFILES $cf_dir/Makefile"
7688 done
7689
7690 if test -n "$ADA_SUBDIRS"; then
7691         for cf_dir in $ADA_SUBDIRS
7692         do
7693                 SUB_MAKEFILES="$SUB_MAKEFILES Ada95/$cf_dir/Makefile"
7694         done
7695         AC_SUBST(ADA_SUBDIRS)
7696 fi
7697 ])dnl
7698 dnl ---------------------------------------------------------------------------
7699 dnl CF_STDCPP_LIBRARY version: 12 updated: 2021/01/01 13:31:04
7700 dnl -----------------
7701 dnl Check for -lstdc++, which is GNU's standard C++ library.
7702 dnl If $CXXLIBS is set, add that to the libraries used for test-linking.
7703 dnl If -lstdc++ was not already added to $LIBS or $CXXLIBS, and is needed,
7704 dnl add it to $CXXLIBS.
7705 AC_DEFUN([CF_STDCPP_LIBRARY],
7706 [
7707 if test -n "$GXX" ; then
7708
7709         cf_save="$LIBS"
7710         LIBS="$LIBS $CXXLIBS"
7711         AC_MSG_CHECKING(if we already have C++ library)
7712         AC_TRY_LINK([
7713                         #include <iostream>],[
7714                         std::cout << "Hello World!" << std::endl;],
7715                 [cf_have_libstdcpp=yes],
7716                 [cf_have_libstdcpp=no])
7717         AC_MSG_RESULT($cf_have_libstdcpp)
7718         LIBS="$cf_save"
7719
7720         if test "$cf_have_libstdcpp" != yes
7721         then
7722                 case "$cf_cv_system_name" in
7723                 (os2*)
7724                         if test -z "`g++ -dM -E - < /dev/null | grep __KLIBC__`"; then
7725                                 cf_stdcpp_libname=stdcpp
7726                         else
7727                                 cf_stdcpp_libname=stdc++
7728                         fi
7729                         ;;
7730                 (*)
7731                         cf_stdcpp_libname=stdc++
7732                         ;;
7733                 esac
7734
7735                 AC_CACHE_CHECK(for library $cf_stdcpp_libname,cf_cv_libstdcpp,[
7736                         cf_save="$LIBS"
7737                         LIBS="$LIBS $CXXLIBS"
7738                         CF_ADD_LIB($cf_stdcpp_libname)
7739                 AC_TRY_LINK([
7740                                 #include <iostream>],[
7741                                 std::cout << "Hello World!" << std::endl;],
7742                         [cf_cv_libstdcpp=yes],
7743                         [cf_cv_libstdcpp=no])
7744                         LIBS="$cf_save"
7745                 ])
7746                 test "$cf_cv_libstdcpp" = yes && { CF_ADD_LIB($cf_stdcpp_libname,CXXLIBS) }
7747         fi
7748 fi
7749 ])dnl
7750 dnl ---------------------------------------------------------------------------
7751 dnl CF_STRIP_G_OPT version: 4 updated: 2021/01/02 09:31:20
7752 dnl --------------
7753 dnl     Remove "-g" option from the compiler options
7754 AC_DEFUN([CF_STRIP_G_OPT],
7755 [$1=`echo "${$1}" | CF__SED_TRIMBLANKS(-e 's%-g %%' -e 's%-g$%%')`])dnl
7756 dnl ---------------------------------------------------------------------------
7757 dnl CF_STRUCT_SIGACTION version: 5 updated: 2012/10/06 17:56:13
7758 dnl -------------------
7759 dnl Check if we need _POSIX_SOURCE defined to use struct sigaction.  We'll only
7760 dnl do this if we've found the sigaction function.
7761 AC_DEFUN([CF_STRUCT_SIGACTION],[
7762 AC_REQUIRE([CF_XOPEN_SOURCE])
7763
7764 if test "$ac_cv_func_sigaction" = yes; then
7765 AC_MSG_CHECKING(whether sigaction needs _POSIX_SOURCE)
7766 AC_TRY_COMPILE([
7767 #include <sys/types.h>
7768 #include <signal.h>],
7769         [struct sigaction act],
7770         [sigact_bad=no],
7771         [
7772 AC_TRY_COMPILE([
7773 #define _POSIX_SOURCE
7774 #include <sys/types.h>
7775 #include <signal.h>],
7776         [struct sigaction act],
7777         [sigact_bad=yes
7778          AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE])],
7779          [sigact_bad=unknown])])
7780 AC_MSG_RESULT($sigact_bad)
7781 fi
7782 ])dnl
7783 dnl ---------------------------------------------------------------------------
7784 dnl CF_STRUCT_TERMIOS version: 11 updated: 2020/03/19 20:46:13
7785 dnl -----------------
7786 dnl Some machines require _POSIX_SOURCE to completely define struct termios.
7787 AC_DEFUN([CF_STRUCT_TERMIOS],[
7788 AC_REQUIRE([CF_XOPEN_SOURCE])
7789
7790 AC_CHECK_HEADERS( \
7791 termio.h \
7792 termios.h \
7793 unistd.h \
7794 sys/ioctl.h \
7795 sys/termio.h \
7796 )
7797
7798 if test "$ac_cv_header_termios_h" = yes ; then
7799         case "$CFLAGS $CPPFLAGS" in
7800         (*-D_POSIX_SOURCE*)
7801                 termios_bad=dunno ;;
7802         (*)     termios_bad=maybe ;;
7803         esac
7804         if test "$termios_bad" = maybe ; then
7805         AC_MSG_CHECKING(whether termios.h needs _POSIX_SOURCE)
7806         AC_TRY_COMPILE([#include <termios.h>],
7807                 [struct termios foo; int x = foo.c_iflag = 1; (void)x],
7808                 termios_bad=no, [
7809                 AC_TRY_COMPILE([
7810 #define _POSIX_SOURCE
7811 #include <termios.h>],
7812                         [struct termios foo; int x = foo.c_iflag = 2; (void)x],
7813                         termios_bad=unknown,
7814                         termios_bad=yes AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE]))
7815                         ])
7816         AC_MSG_RESULT($termios_bad)
7817         fi
7818 fi
7819 ])dnl
7820 dnl ---------------------------------------------------------------------------
7821 dnl CF_SUBDIR_PATH version: 7 updated: 2014/12/04 04:33:06
7822 dnl --------------
7823 dnl Construct a search-list for a nonstandard header/lib-file
7824 dnl     $1 = the variable to return as result
7825 dnl     $2 = the package name
7826 dnl     $3 = the subdirectory, e.g., bin, include or lib
7827 AC_DEFUN([CF_SUBDIR_PATH],
7828 [
7829 $1=
7830
7831 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
7832
7833 for cf_subdir_prefix in \
7834         /usr \
7835         /usr/local \
7836         /usr/pkg \
7837         /opt \
7838         /opt/local \
7839         [$]HOME
7840 do
7841         CF_ADD_SUBDIR_PATH($1,$2,$3,$cf_subdir_prefix,$prefix)
7842 done
7843 ])dnl
7844 dnl ---------------------------------------------------------------------------
7845 dnl CF_SUBST_IF version: 2 updated: 2006/06/17 12:33:03
7846 dnl -----------
7847 dnl     Shorthand macro for substituting things that the user may override
7848 dnl     with an environment variable.
7849 dnl
7850 dnl     $1 = condition to pass to "test"
7851 dnl     $2 = environment variable
7852 dnl     $3 = value if the test succeeds
7853 dnl     $4 = value if the test fails
7854 AC_DEFUN([CF_SUBST_IF],
7855 [
7856 if test $1 ; then
7857         $2=$3
7858 ifelse($4,,,[else
7859         $2=$4])
7860 fi
7861 AC_SUBST($2)
7862 ])dnl
7863 dnl ---------------------------------------------------------------------------
7864 dnl CF_SUBST_NCURSES_VERSION version: 10 updated: 2021/01/04 18:48:01
7865 dnl ------------------------
7866 dnl Get the version-number for use in shared-library naming, etc.
7867 AC_DEFUN([CF_SUBST_NCURSES_VERSION],
7868 [AC_REQUIRE([AC_PROG_EGREP])dnl
7869
7870 NCURSES_MAJOR="`${EGREP-egrep} '^NCURSES_MAJOR[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
7871 NCURSES_MINOR="`${EGREP-egrep} '^NCURSES_MINOR[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
7872 NCURSES_PATCH="`${EGREP-egrep} '^NCURSES_PATCH[[        ]]*=' "$srcdir/dist.mk" | sed -e 's/^[[^0-9]]*//'`"
7873 cf_cv_abi_version=${NCURSES_MAJOR}
7874 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
7875 dnl Show the computed version, for logging
7876 cf_cv_timestamp=`date`
7877 AC_MSG_RESULT(Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp))
7878 dnl We need these values in the generated headers
7879 AC_SUBST(NCURSES_MAJOR)
7880 AC_SUBST(NCURSES_MINOR)
7881 AC_SUBST(NCURSES_PATCH)
7882 dnl We need these values in the generated makefiles
7883 AC_SUBST(cf_cv_rel_version)
7884 AC_SUBST(cf_cv_abi_version)
7885 AC_SUBST(cf_cv_builtin_bool)
7886 AC_SUBST(cf_cv_header_stdbool_h)
7887 AC_SUBST(cf_cv_type_of_bool)dnl
7888 ])dnl
7889 dnl ---------------------------------------------------------------------------
7890 dnl CF_SYS_TIME_SELECT version: 6 updated: 2015/04/18 08:56:57
7891 dnl ------------------
7892 dnl Check if we can include <sys/time.h> with <sys/select.h>; this breaks on
7893 dnl older SCO configurations.
7894 AC_DEFUN([CF_SYS_TIME_SELECT],
7895 [
7896 AC_MSG_CHECKING(if sys/time.h works with sys/select.h)
7897 AC_CACHE_VAL(cf_cv_sys_time_select,[
7898 AC_TRY_COMPILE([
7899 #include <sys/types.h>
7900 #ifdef HAVE_SYS_TIME_H
7901 #include <sys/time.h>
7902 #endif
7903 #ifdef HAVE_SYS_SELECT_H
7904 #include <sys/select.h>
7905 #endif
7906 ],[],[cf_cv_sys_time_select=yes],
7907          [cf_cv_sys_time_select=no])
7908          ])
7909 AC_MSG_RESULT($cf_cv_sys_time_select)
7910 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>])
7911 ])dnl
7912 dnl ---------------------------------------------------------------------------
7913 dnl CF_TOP_BUILDDIR version: 2 updated: 2013/07/27 17:38:32
7914 dnl ---------------
7915 dnl Define a top_builddir symbol, for applications that need an absolute path.
7916 AC_DEFUN([CF_TOP_BUILDDIR],
7917 [
7918 top_builddir=ifelse($1,,`pwd`,$1)
7919 AC_SUBST(top_builddir)
7920 ])dnl
7921 dnl ---------------------------------------------------------------------------
7922 dnl CF_TRY_PKG_CONFIG version: 6 updated: 2020/12/31 10:54:15
7923 dnl -----------------
7924 dnl This is a simple wrapper to use for pkg-config, for libraries which may be
7925 dnl available in that form.
7926 dnl
7927 dnl $1 = package name, which may be a shell variable
7928 dnl $2 = extra logic to use, if any, after updating CFLAGS and LIBS
7929 dnl $3 = logic to use if pkg-config does not have the package
7930 AC_DEFUN([CF_TRY_PKG_CONFIG],[
7931 AC_REQUIRE([CF_PKG_CONFIG])
7932
7933 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$1"; then
7934         CF_VERBOSE(found package $1)
7935         cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$1" 2>/dev/null`"
7936         cf_pkgconfig_libs="`$PKG_CONFIG --libs   "$1" 2>/dev/null`"
7937         CF_VERBOSE(package $1 CFLAGS: $cf_pkgconfig_incs)
7938         CF_VERBOSE(package $1 LIBS: $cf_pkgconfig_libs)
7939         CF_ADD_CFLAGS($cf_pkgconfig_incs)
7940         CF_ADD_LIBS($cf_pkgconfig_libs)
7941         ifelse([$2],,:,[$2])
7942 else
7943         cf_pkgconfig_incs=
7944         cf_pkgconfig_libs=
7945         ifelse([$3],,:,[$3])
7946 fi
7947 ])
7948 dnl ---------------------------------------------------------------------------
7949 dnl CF_TRY_XOPEN_SOURCE version: 2 updated: 2018/06/20 20:23:13
7950 dnl -------------------
7951 dnl If _XOPEN_SOURCE is not defined in the compile environment, check if we
7952 dnl can define it successfully.
7953 AC_DEFUN([CF_TRY_XOPEN_SOURCE],[
7954 AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
7955         AC_TRY_COMPILE([
7956 #include <stdlib.h>
7957 #include <string.h>
7958 #include <sys/types.h>
7959 ],[
7960 #ifndef _XOPEN_SOURCE
7961 make an error
7962 #endif],
7963         [cf_cv_xopen_source=no],
7964         [cf_save="$CPPFLAGS"
7965          CF_APPEND_TEXT(CPPFLAGS,-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE)
7966          AC_TRY_COMPILE([
7967 #include <stdlib.h>
7968 #include <string.h>
7969 #include <sys/types.h>
7970 ],[
7971 #ifdef _XOPEN_SOURCE
7972 make an error
7973 #endif],
7974         [cf_cv_xopen_source=no],
7975         [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
7976         CPPFLAGS="$cf_save"
7977         ])
7978 ])
7979
7980 if test "$cf_cv_xopen_source" != no ; then
7981         CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
7982         CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
7983         cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
7984         CF_ADD_CFLAGS($cf_temp_xopen_source)
7985 fi
7986 ])
7987 dnl ---------------------------------------------------------------------------
7988 dnl CF_TYPEOF_CHTYPE version: 10 updated: 2017/01/21 11:06:25
7989 dnl ----------------
7990 dnl Determine the type we should use for chtype (and attr_t, which is treated
7991 dnl as the same thing).  We want around 32 bits, so on most machines want a
7992 dnl long, but on newer 64-bit machines, probably want an int.  If we're using
7993 dnl wide characters, we have to have a type compatible with that, as well.
7994 AC_DEFUN([CF_TYPEOF_CHTYPE],
7995 [
7996 AC_MSG_CHECKING([for type of chtype])
7997 AC_CACHE_VAL(cf_cv_typeof_chtype,[
7998                 AC_TRY_RUN([
7999 #define WANT_BITS 31
8000 #include <stdio.h>
8001 int main(void)
8002 {
8003         FILE *fp = fopen("cf_test.out", "w");
8004         if (fp != 0) {
8005                 char *result = "long";
8006                 if (sizeof(unsigned long) > sizeof(unsigned int)) {
8007                         int n;
8008                         unsigned int x, y;
8009                         for (n = 0; n < WANT_BITS; n++) {
8010                                 x = (1 << n);
8011                                 y = (x >> n);
8012                                 if (y != 1 || x == 0) {
8013                                         x = 0;
8014                                         break;
8015                                 }
8016                         }
8017                         /*
8018                          * If x is nonzero, an int is big enough for the bits
8019                          * that we want.
8020                          */
8021                         result = (x != 0) ? "int" : "long";
8022                 }
8023                 fputs(result, fp);
8024                 fclose(fp);
8025         }
8026         ${cf_cv_main_return:-return}(0);
8027 }
8028                 ],
8029                 [cf_cv_typeof_chtype=`cat cf_test.out`],
8030                 [cf_cv_typeof_chtype=long],
8031                 [cf_cv_typeof_chtype=long])
8032                 rm -f cf_test.out
8033         ])
8034 AC_MSG_RESULT($cf_cv_typeof_chtype)
8035
8036 AC_SUBST(cf_cv_typeof_chtype)
8037 AC_DEFINE_UNQUOTED(TYPEOF_CHTYPE,$cf_cv_typeof_chtype,[Define to actual type if needed for chtype])
8038 ])dnl
8039 dnl ---------------------------------------------------------------------------
8040 dnl CF_TYPE_SIGACTION version: 4 updated: 2012/10/06 17:56:13
8041 dnl -----------------
8042 dnl
8043 AC_DEFUN([CF_TYPE_SIGACTION],
8044 [
8045 AC_MSG_CHECKING([for type sigaction_t])
8046 AC_CACHE_VAL(cf_cv_type_sigaction,[
8047         AC_TRY_COMPILE([
8048 #include <signal.h>],
8049                 [sigaction_t x],
8050                 [cf_cv_type_sigaction=yes],
8051                 [cf_cv_type_sigaction=no])])
8052 AC_MSG_RESULT($cf_cv_type_sigaction)
8053 test "$cf_cv_type_sigaction" = yes && AC_DEFINE(HAVE_TYPE_SIGACTION,1,[Define to 1 if we have the sigaction_t type])
8054 ])dnl
8055 dnl ---------------------------------------------------------------------------
8056 dnl CF_UNSIGNED_LITERALS version: 2 updated: 1998/02/07 22:10:16
8057 dnl --------------------
8058 dnl Test if the compiler supports 'U' and 'L' suffixes.  Only old compilers
8059 dnl won't, but they're still there.
8060 AC_DEFUN([CF_UNSIGNED_LITERALS],
8061 [
8062 AC_MSG_CHECKING([if unsigned literals are legal])
8063 AC_CACHE_VAL(cf_cv_unsigned_literals,[
8064         AC_TRY_COMPILE([],[long x = 1L + 1UL + 1U + 1],
8065                 [cf_cv_unsigned_literals=yes],
8066                 [cf_cv_unsigned_literals=no])
8067         ])
8068 AC_MSG_RESULT($cf_cv_unsigned_literals)
8069 ])dnl
8070 dnl ---------------------------------------------------------------------------
8071 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
8072 dnl --------
8073 dnl Make an uppercase version of a variable
8074 dnl $1=uppercase($2)
8075 AC_DEFUN([CF_UPPER],
8076 [
8077 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
8078 ])dnl
8079 dnl ---------------------------------------------------------------------------
8080 dnl CF_UTF8_LIB version: 8 updated: 2012/10/06 08:57:51
8081 dnl -----------
8082 dnl Check for multibyte support, and if not found, utf8 compatibility library
8083 AC_DEFUN([CF_UTF8_LIB],
8084 [
8085 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
8086         cf_save_LIBS="$LIBS"
8087         AC_TRY_LINK([
8088 #include <stdlib.h>],[putwc(0,0);],
8089         [cf_cv_utf8_lib=yes],
8090         [CF_FIND_LINKAGE([
8091 #include <libutf8.h>],[putwc(0,0);],utf8,
8092                 [cf_cv_utf8_lib=add-on],
8093                 [cf_cv_utf8_lib=no])
8094 ])])
8095
8096 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
8097 # ncurses/ncursesw:
8098 if test "$cf_cv_utf8_lib" = "add-on" ; then
8099         AC_DEFINE(HAVE_LIBUTF8_H,1,[Define to 1 if we should include libutf8.h])
8100         CF_ADD_INCDIR($cf_cv_header_path_utf8)
8101         CF_ADD_LIBDIR($cf_cv_library_path_utf8)
8102         CF_ADD_LIBS($cf_cv_library_file_utf8)
8103 fi
8104 ])dnl
8105 dnl ---------------------------------------------------------------------------
8106 dnl CF_VA_COPY version: 6 updated: 2018/12/04 18:14:25
8107 dnl ----------
8108 dnl check for va_copy, part of stdarg.h starting with ISO C 1999.
8109 dnl Also, workaround for glibc's __va_copy, by checking for both.
8110 dnl Finally, try to accommodate pre-ISO C 1999 headers.
8111 AC_DEFUN([CF_VA_COPY],[
8112 AC_CACHE_CHECK(for va_copy, cf_cv_have_va_copy,[
8113 AC_TRY_LINK([
8114 #include <stdarg.h>
8115 ],[
8116         static va_list dst;
8117         static va_list src;
8118         va_copy(dst, src)],
8119         cf_cv_have_va_copy=yes,
8120         cf_cv_have_va_copy=no)])
8121
8122 if test "$cf_cv_have_va_copy" = yes;
8123 then
8124         AC_DEFINE(HAVE_VA_COPY,1,[Define to 1 if we have va_copy])
8125 else # !cf_cv_have_va_copy
8126
8127 AC_CACHE_CHECK(for __va_copy, cf_cv_have___va_copy,[
8128 AC_TRY_LINK([
8129 #include <stdarg.h>
8130 ],[
8131         static va_list dst;
8132         static va_list src;
8133         __va_copy(dst, src)],
8134         cf_cv_have___va_copy=yes,
8135         cf_cv_have___va_copy=no)])
8136
8137 if test "$cf_cv_have___va_copy" = yes
8138 then
8139         AC_DEFINE(HAVE___VA_COPY,1,[Define to 1 if we have __va_copy])
8140 else # !cf_cv_have___va_copy
8141
8142 AC_CACHE_CHECK(for __builtin_va_copy, cf_cv_have___builtin_va_copy,[
8143 AC_TRY_LINK([
8144 #include <stdarg.h>
8145 ],[
8146         static va_list dst;
8147         static va_list src;
8148         __builtin_va_copy(dst, src)],
8149         cf_cv_have___builtin_va_copy=yes,
8150         cf_cv_have___builtin_va_copy=no)])
8151
8152 test "$cf_cv_have___builtin_va_copy" = yes &&
8153         AC_DEFINE(HAVE___BUILTIN_VA_COPY,1,[Define to 1 if we have __builtin_va_copy])
8154
8155 fi # cf_cv_have___va_copy
8156
8157 fi # cf_cv_have_va_copy
8158
8159 case "${cf_cv_have_va_copy}${cf_cv_have___va_copy}${cf_cv_have___builtin_va_copy}" in
8160 (*yes*)
8161         ;;
8162
8163 (*)
8164         AC_CACHE_CHECK(if we can simply copy va_list, cf_cv_pointer_va_list,[
8165 AC_TRY_LINK([
8166 #include <stdarg.h>
8167 ],[
8168         va_list dst;
8169         va_list src;
8170         dst = src],
8171         cf_cv_pointer_va_list=yes,
8172         cf_cv_pointer_va_list=no)])
8173
8174         if test "$cf_cv_pointer_va_list" = no
8175         then
8176                 AC_CACHE_CHECK(if we can copy va_list indirectly, cf_cv_array_va_list,[
8177 AC_TRY_LINK([
8178 #include <stdarg.h>
8179 ],[
8180         va_list dst;
8181         va_list src;
8182         *dst = *src],
8183                         cf_cv_array_va_list=yes,
8184                         cf_cv_array_va_list=no)])
8185                 test "$cf_cv_array_va_list" = yes && AC_DEFINE(ARRAY_VA_LIST,1,[Define to 1 if we can copy va_list indirectly])
8186         fi
8187         ;;
8188 esac
8189 ])
8190 dnl ---------------------------------------------------------------------------
8191 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
8192 dnl ----------
8193 dnl Use AC_VERBOSE w/o the warnings
8194 AC_DEFUN([CF_VERBOSE],
8195 [test -n "$verbose" && echo "   $1" 1>&AC_FD_MSG
8196 CF_MSG_LOG([$1])
8197 ])dnl
8198 dnl ---------------------------------------------------------------------------
8199 dnl CF_VERSION_INFO version: 8 updated: 2021/01/01 13:31:04
8200 dnl ---------------
8201 dnl Define several useful symbols derived from the VERSION file.  A separate
8202 dnl file is preferred to embedding the version numbers in various scripts.
8203 dnl (automake is a textbook-example of why the latter is a bad idea, but there
8204 dnl are others).
8205 dnl
8206 dnl The file contents are:
8207 dnl     libtool-version release-version patch-version
8208 dnl or
8209 dnl     release-version
8210 dnl where
8211 dnl     libtool-version (see ?) consists of 3 integers separated by '.'
8212 dnl     release-version consists of a major version and minor version
8213 dnl             separated by '.', optionally followed by a patch-version
8214 dnl             separated by '-'.  The minor version need not be an
8215 dnl             integer (but it is preferred).
8216 dnl     patch-version is an integer in the form yyyymmdd, so ifdef's and
8217 dnl             scripts can easily compare versions.
8218 dnl
8219 dnl If libtool is used, the first form is required, since CF_WITH_LIBTOOL
8220 dnl simply extracts the first field using 'cut -f1'.
8221 dnl
8222 dnl Optional parameters:
8223 dnl $1 = internal name for package
8224 dnl $2 = external name for package
8225 AC_DEFUN([CF_VERSION_INFO],
8226 [
8227 if test -f "$srcdir/VERSION" ; then
8228         AC_MSG_CHECKING(for package version)
8229
8230         # if there are not enough fields, cut returns the last one...
8231         cf_field1=`sed -e '2,$d' "$srcdir/VERSION" |cut -f1`
8232         cf_field2=`sed -e '2,$d' "$srcdir/VERSION" |cut -f2`
8233         cf_field3=`sed -e '2,$d' "$srcdir/VERSION" |cut -f3`
8234
8235         # this is how CF_BUNDLED_INTL uses $VERSION:
8236         VERSION="$cf_field1"
8237
8238         VERSION_MAJOR=`echo "$cf_field2" | sed -e 's/\..*//'`
8239         test -z "$VERSION_MAJOR" && AC_MSG_ERROR(missing major-version)
8240
8241         VERSION_MINOR=`echo "$cf_field2" | sed -e 's/^[[^.]]*\.//' -e 's/-.*//'`
8242         test -z "$VERSION_MINOR" && AC_MSG_ERROR(missing minor-version)
8243
8244         AC_MSG_RESULT(${VERSION_MAJOR}.${VERSION_MINOR})
8245
8246         AC_MSG_CHECKING(for package patch date)
8247         VERSION_PATCH=`echo "$cf_field3" | sed -e 's/^[[^-]]*-//'`
8248         case .$VERSION_PATCH in
8249         (.)
8250                 AC_MSG_ERROR(missing patch-date $VERSION_PATCH)
8251                 ;;
8252         (.[[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]])
8253                 ;;
8254         (*)
8255                 AC_MSG_ERROR(illegal patch-date $VERSION_PATCH)
8256                 ;;
8257         esac
8258         AC_MSG_RESULT($VERSION_PATCH)
8259 else
8260         AC_MSG_ERROR(did not find $srcdir/VERSION)
8261 fi
8262
8263 # show the actual data that we have for versions:
8264 CF_VERBOSE(ABI VERSION $VERSION)
8265 CF_VERBOSE(VERSION_MAJOR $VERSION_MAJOR)
8266 CF_VERBOSE(VERSION_MINOR $VERSION_MINOR)
8267 CF_VERBOSE(VERSION_PATCH $VERSION_PATCH)
8268
8269 AC_SUBST(VERSION)
8270 AC_SUBST(VERSION_MAJOR)
8271 AC_SUBST(VERSION_MINOR)
8272 AC_SUBST(VERSION_PATCH)
8273
8274 dnl if a package name is given, define its corresponding version info.  We
8275 dnl need the package name to ensure that the defined symbols are unique.
8276 ifelse($1,,,[
8277         cf_PACKAGE=$1
8278         PACKAGE=ifelse($2,,$1,$2)
8279         AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",[Define to the package-name])
8280         AC_SUBST(PACKAGE)
8281         CF_UPPER(cf_PACKAGE,$cf_PACKAGE)
8282         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_VERSION,"${VERSION_MAJOR}.${VERSION_MINOR}")
8283         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_PATCHDATE,${VERSION_PATCH})
8284 ])
8285 ])dnl
8286 dnl ---------------------------------------------------------------------------
8287 dnl CF_WCHAR_TYPE version: 4 updated: 2012/10/06 16:39:58
8288 dnl -------------
8289 dnl Check if type wide-character type $1 is declared, and if so, which header
8290 dnl file is needed.  The second parameter is used to set a shell variable when
8291 dnl the type is not found.  The first parameter sets a shell variable for the
8292 dnl opposite sense.
8293 AC_DEFUN([CF_WCHAR_TYPE],
8294 [
8295 # This is needed on Tru64 5.0 to declare $1
8296 AC_CACHE_CHECK(if we must include wchar.h to declare $1,cf_cv_$1,[
8297 AC_TRY_COMPILE([
8298 #include <stdlib.h>
8299 #include <stdarg.h>
8300 #include <stdio.h>
8301 #ifdef HAVE_LIBUTF8_H
8302 #include <libutf8.h>
8303 #endif],
8304         [$1 state],
8305         [cf_cv_$1=no],
8306         [AC_TRY_COMPILE([
8307 #include <stdlib.h>
8308 #include <stdarg.h>
8309 #include <stdio.h>
8310 #include <wchar.h>
8311 #ifdef HAVE_LIBUTF8_H
8312 #include <libutf8.h>
8313 #endif],
8314         [$1 value],
8315         [cf_cv_$1=yes],
8316         [cf_cv_$1=unknown])])])
8317
8318 if test "$cf_cv_$1" = yes ; then
8319         AC_DEFINE(NEED_WCHAR_H,1,[Define to 1 if we must include wchar.h])
8320         NEED_WCHAR_H=1
8321 fi
8322
8323 ifelse([$2],,,[
8324 # if we do not find $1 in either place, use substitution to provide a fallback.
8325 if test "$cf_cv_$1" = unknown ; then
8326         $2=1
8327 fi
8328 ])
8329 ifelse($3,,,[
8330 # if we find $1 in either place, use substitution to provide a fallback.
8331 if test "$cf_cv_$1" != unknown ; then
8332         $3=1
8333 fi
8334 ])
8335 ])dnl
8336 dnl ---------------------------------------------------------------------------
8337 dnl CF_WEAK_SYMBOLS version: 1 updated: 2008/08/16 19:18:06
8338 dnl ---------------
8339 dnl Check for compiler-support for weak symbols.
8340 dnl This works with "recent" gcc.
8341 AC_DEFUN([CF_WEAK_SYMBOLS],[
8342 AC_CACHE_CHECK(if $CC supports weak symbols,cf_cv_weak_symbols,[
8343
8344 AC_TRY_COMPILE([
8345 #include <stdio.h>],
8346 [
8347 #if defined(__GNUC__)
8348 #  if defined __USE_ISOC99
8349 #    define _cat_pragma(exp)    _Pragma(#exp)
8350 #    define _weak_pragma(exp)   _cat_pragma(weak name)
8351 #  else
8352 #    define _weak_pragma(exp)
8353 #  endif
8354 #  define _declare(name)        __extension__ extern __typeof__(name) name
8355 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
8356 #endif
8357
8358 weak_symbol(fopen);
8359 ],[cf_cv_weak_symbols=yes],[cf_cv_weak_symbols=no])
8360 ])
8361 ])dnl
8362 dnl ---------------------------------------------------------------------------
8363 dnl CF_WITH_ABI_VERSION version: 4 updated: 2021/01/01 13:31:04
8364 dnl -------------------
8365 dnl Allow library's ABI to be overridden.  Generally this happens when a
8366 dnl packager has incremented the ABI past that used in the original package,
8367 dnl and wishes to keep doing this.
8368 dnl
8369 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
8370 dnl symbol.
8371 AC_DEFUN([CF_WITH_ABI_VERSION],[
8372 test -z "$cf_cv_abi_version" && cf_cv_abi_version=0
8373 AC_ARG_WITH(abi-version,
8374 [  --with-abi-version=XXX  override derived ABI version],[
8375         if test "x$cf_cv_abi_version" != "x$withval"
8376         then
8377                 AC_MSG_WARN(overriding ABI version $cf_cv_abi_version to $withval)
8378                 case "$cf_cv_rel_version" in
8379                 (5.*)
8380                         cf_cv_rel_version=$withval.0
8381                         ;;
8382                 (6.*)
8383                         cf_cv_rel_version=$withval.9    # FIXME: should be 10 as of 6.0 release
8384                         ;;
8385                 esac
8386         fi
8387         cf_cv_abi_version=$withval])
8388         CF_NUMBER_SYNTAX($cf_cv_abi_version,ABI version)
8389 ifelse($1,,,[
8390 $1_ABI=$cf_cv_abi_version
8391 ])
8392 ])dnl
8393 dnl ---------------------------------------------------------------------------
8394 dnl CF_WITH_ADA_COMPILER version: 2 updated: 2010/06/26 17:35:58
8395 dnl --------------------
8396 dnl Command-line option to specify the Ada95 compiler.
8397 AC_DEFUN([CF_WITH_ADA_COMPILER],[
8398 AC_MSG_CHECKING(for ada-compiler)
8399 AC_ARG_WITH(ada-compiler,
8400         [  --with-ada-compiler=CMD specify Ada95 compiler command (default gnatmake)],
8401         [cf_ada_compiler=$withval],
8402         [cf_ada_compiler=gnatmake])
8403 AC_SUBST(cf_ada_compiler)
8404 AC_MSG_RESULT($cf_ada_compiler)
8405 ])dnl
8406 dnl ---------------------------------------------------------------------------
8407 dnl CF_WITH_ADA_INCLUDE version: 2 updated: 2010/06/26 17:35:58
8408 dnl -------------------
8409 dnl Command-line option to specify where Ada includes will install.
8410 AC_DEFUN([CF_WITH_ADA_INCLUDE],[
8411 AC_MSG_CHECKING(for ada-include)
8412 CF_WITH_PATH(ada-include,
8413    [  --with-ada-include=DIR  Ada includes are in DIR],
8414    ADA_INCLUDE,
8415    PREFIX/share/ada/adainclude,
8416    [$]prefix/share/ada/adainclude)
8417 AC_SUBST(ADA_INCLUDE)
8418 AC_MSG_RESULT($ADA_INCLUDE)
8419 ])dnl
8420 dnl ---------------------------------------------------------------------------
8421 dnl CF_WITH_ADA_LIBNAME version: 1 updated: 2019/09/07 18:59:41
8422 dnl -------------------
8423 dnl CF_WITH_ADA_LIBNAME
8424 dnl -------------------
8425 dnl Command-line option to specify how to name the resulting Ada library.
8426 dnl $1 = default value
8427 AC_DEFUN([CF_WITH_ADA_LIBNAME],[
8428 AC_MSG_CHECKING(for ada-libname)
8429 AC_ARG_WITH(ada-libname,
8430    [  --with-ada-libname=XXX  override default Ada library-name],
8431    ADA_LIBNAME=[$]withval,
8432    ADA_LIBNAME=$1)
8433 case "x$ADA_LIBNAME" in
8434 (x|xyes|xno)
8435         ADA_LIBNAME=$1
8436         ;;
8437 esac
8438 AC_SUBST(ADA_LIBNAME)
8439 AC_MSG_RESULT($ADA_LIBNAME)
8440 ])dnl
8441 dnl ---------------------------------------------------------------------------
8442 dnl CF_WITH_ADA_OBJECTS version: 2 updated: 2010/06/26 17:35:58
8443 dnl -------------------
8444 dnl Command-line option to specify where Ada objects will install.
8445 AC_DEFUN([CF_WITH_ADA_OBJECTS],[
8446 AC_MSG_CHECKING(for ada-objects)
8447 CF_WITH_PATH(ada-objects,
8448    [  --with-ada-objects=DIR  Ada objects are in DIR],
8449    ADA_OBJECTS,
8450    PREFIX/lib/ada/adalib,
8451    [$]prefix/lib/ada/adalib)
8452 AC_SUBST(ADA_OBJECTS)
8453 AC_MSG_RESULT($ADA_OBJECTS)
8454 ])dnl
8455 dnl ---------------------------------------------------------------------------
8456 dnl CF_WITH_ADA_SHAREDLIB version: 5 updated: 2018/07/21 19:10:35
8457 dnl ---------------------
8458 dnl Command-line option to specify if an Ada95 shared-library should be built,
8459 dnl and optionally what its soname should be.
8460 AC_DEFUN([CF_WITH_ADA_SHAREDLIB],[
8461 AC_REQUIRE([CF_GNAT_PROJECTS])
8462 AC_MSG_CHECKING(if an Ada95 shared-library should be built)
8463 AC_ARG_WITH(ada-sharedlib,
8464         [  --with-ada-sharedlib=soname build shared-library (requires GNAT projects)],
8465         [with_ada_sharedlib=$withval],
8466         [with_ada_sharedlib=no])
8467 AC_MSG_RESULT($with_ada_sharedlib)
8468
8469 if test "x$with_ada_sharedlib" != xno
8470 then
8471         if test "x$cf_gnat_projects" != xyes
8472         then
8473                 AC_MSG_WARN(disabling shared-library since GNAT projects are not supported)
8474                 with_ada_sharedlib=no
8475         fi
8476 fi
8477
8478 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
8479 MAKE_ADA_SHAREDLIB="#"
8480
8481 if test "x$with_ada_sharedlib" != xno
8482 then
8483         MAKE_ADA_SHAREDLIB=
8484         if test "x$with_ada_sharedlib" != xyes
8485         then
8486                 ADA_SHAREDLIB="$with_ada_sharedlib"
8487         fi
8488 fi
8489
8490 AC_SUBST(ADA_SHAREDLIB)
8491 AC_SUBST(MAKE_ADA_SHAREDLIB)
8492 ])dnl
8493 dnl ---------------------------------------------------------------------------
8494 dnl CF_WITH_DBMALLOC version: 7 updated: 2010/06/21 17:26:47
8495 dnl ----------------
8496 dnl Configure-option for dbmalloc.  The optional parameter is used to override
8497 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
8498 AC_DEFUN([CF_WITH_DBMALLOC],[
8499 CF_NO_LEAKS_OPTION(dbmalloc,
8500         [  --with-dbmalloc         test: use Conor Cahill's dbmalloc library],
8501         [USE_DBMALLOC])
8502
8503 if test "$with_dbmalloc" = yes ; then
8504         AC_CHECK_HEADER(dbmalloc.h,
8505                 [AC_CHECK_LIB(dbmalloc,[debug_malloc]ifelse([$1],,[],[,$1]))])
8506 fi
8507 ])dnl
8508 dnl ---------------------------------------------------------------------------
8509 dnl CF_WITH_DMALLOC version: 7 updated: 2010/06/21 17:26:47
8510 dnl ---------------
8511 dnl Configure-option for dmalloc.  The optional parameter is used to override
8512 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
8513 AC_DEFUN([CF_WITH_DMALLOC],[
8514 CF_NO_LEAKS_OPTION(dmalloc,
8515         [  --with-dmalloc          test: use Gray Watson's dmalloc library],
8516         [USE_DMALLOC])
8517
8518 if test "$with_dmalloc" = yes ; then
8519         AC_CHECK_HEADER(dmalloc.h,
8520                 [AC_CHECK_LIB(dmalloc,[dmalloc_debug]ifelse([$1],,[],[,$1]))])
8521 fi
8522 ])dnl
8523 dnl ---------------------------------------------------------------------------
8524 dnl CF_WITH_EXPORT_SYMS version: 3 updated: 2014/12/20 19:16:08
8525 dnl -------------------
8526 dnl Use this with libtool to specify the list of symbols that may be exported.
8527 dnl The input file contains one symbol per line; comments work with "#".
8528 dnl
8529 dnl $1 = basename of the ".sym" file (default $PACKAGE)
8530 AC_DEFUN([CF_WITH_EXPORT_SYMS],
8531 [
8532 AC_MSG_CHECKING(if exported-symbols file should be used)
8533 AC_ARG_WITH(export-syms,
8534         [  --with-export-syms=XXX  limit exported symbols using libtool],
8535         [with_export_syms=$withval],
8536         [with_export_syms=no])
8537 if test "x$with_export_syms" = xyes
8538 then
8539         with_export_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).sym'
8540         AC_SUBST(PACKAGE)
8541 fi
8542 AC_MSG_RESULT($with_export_syms)
8543 if test "x$with_export_syms" != xno
8544 then
8545         EXPORT_SYMS="-export-symbols $with_export_syms"
8546         AC_SUBST(EXPORT_SYMS)
8547 fi
8548 ])dnl
8549 dnl ---------------------------------------------------------------------------
8550 dnl CF_WITH_GPM version: 10 updated: 2017/04/29 18:32:18
8551 dnl -----------
8552 dnl
8553 dnl The option parameter (if neither yes/no) is assumed to be the name of
8554 dnl the gpm library, e.g., for dynamic loading.
8555 AC_DEFUN([CF_WITH_GPM],
8556 [
8557 AC_MSG_CHECKING(if you want to link with the GPM mouse library)
8558 AC_ARG_WITH(gpm,
8559         [  --with-gpm              use Alessandro Rubini's GPM library],
8560         [with_gpm=$withval],
8561         [with_gpm=maybe])
8562 AC_MSG_RESULT($with_gpm)
8563
8564 if test "$with_gpm" != no ; then
8565         AC_CHECK_HEADER(gpm.h,[
8566                 AC_DEFINE(HAVE_GPM_H,1,[Define to 1 if we have gpm.h header])
8567                 if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
8568                         CF_VERBOSE(assuming we really have GPM library)
8569                         AC_DEFINE(HAVE_LIBGPM,1,[Define to 1 if we have the gpm library])
8570                         with_gpm=yes
8571                 else
8572                         AC_CHECK_LIB(gpm,Gpm_Open,[with_gpm=yes],[
8573                                 if test "$with_gpm" = maybe; then
8574                                         AC_MSG_WARN(Cannot link with GPM library)
8575                                         with_gpm=no
8576                                 else
8577                                         AC_MSG_ERROR(Cannot link with GPM library)
8578                                 fi
8579                         ])
8580                 fi
8581         ],[
8582                 test "$with_gpm" != maybe && AC_MSG_WARN(Cannot find GPM header)
8583                 with_gpm=no
8584         ])
8585 fi
8586 ])
8587 dnl ---------------------------------------------------------------------------
8588 dnl CF_WITH_LIBTOOL version: 36 updated: 2021/01/01 13:31:04
8589 dnl ---------------
8590 dnl Provide a configure option to incorporate libtool.  Define several useful
8591 dnl symbols for the makefile rules.
8592 dnl
8593 dnl The reference to AC_PROG_LIBTOOL does not normally work, since it uses
8594 dnl macros from libtool.m4 which is in the aclocal directory of automake.
8595 dnl Following is a simple script which turns on the AC_PROG_LIBTOOL macro.
8596 dnl But that still does not work properly since the macro is expanded outside
8597 dnl the CF_WITH_LIBTOOL macro:
8598 dnl
8599 dnl     #!/bin/sh
8600 dnl     ACLOCAL=`aclocal --print-ac-dir`
8601 dnl     if test -z "$ACLOCAL" ; then
8602 dnl             echo cannot find aclocal directory
8603 dnl             exit 1
8604 dnl     elif test ! -f $ACLOCAL/libtool.m4 ; then
8605 dnl             echo cannot find libtool.m4 file
8606 dnl             exit 1
8607 dnl     fi
8608 dnl
8609 dnl     LOCAL=aclocal.m4
8610 dnl     ORIG=aclocal.m4.orig
8611 dnl
8612 dnl     trap "mv $ORIG $LOCAL" 0 1 2 3 15
8613 dnl     rm -f $ORIG
8614 dnl     mv $LOCAL $ORIG
8615 dnl
8616 dnl     # sed the LIBTOOL= assignment to omit the current directory?
8617 dnl     sed -e 's/^LIBTOOL=.*/LIBTOOL=${LIBTOOL:-libtool}/' $ACLOCAL/libtool.m4 >>$LOCAL
8618 dnl     cat $ORIG >>$LOCAL
8619 dnl
8620 dnl     autoconf-257 $*
8621 dnl
8622 AC_DEFUN([CF_WITH_LIBTOOL],
8623 [
8624 AC_REQUIRE([CF_DISABLE_LIBTOOL_VERSION])
8625 ifdef([AC_PROG_LIBTOOL],,[
8626 LIBTOOL=
8627 ])
8628 # common library maintenance symbols that are convenient for libtool scripts:
8629 LIB_CREATE='${AR} -cr'
8630 LIB_OBJECT='${OBJECTS}'
8631 LIB_SUFFIX=.a
8632 LIB_PREP="$RANLIB"
8633
8634 # symbols used to prop libtool up to enable it to determine what it should be
8635 # doing:
8636 LIB_CLEAN=
8637 LIB_COMPILE=
8638 LIB_LINK='${CC}'
8639 LIB_INSTALL=
8640 LIB_UNINSTALL=
8641
8642 AC_MSG_CHECKING(if you want to build libraries with libtool)
8643 AC_ARG_WITH(libtool,
8644         [  --with-libtool          generate libraries with libtool],
8645         [with_libtool=$withval],
8646         [with_libtool=no])
8647 AC_MSG_RESULT($with_libtool)
8648 if test "$with_libtool" != "no"; then
8649 ifdef([AC_PROG_LIBTOOL],[
8650         # missing_content_AC_PROG_LIBTOOL{{
8651         AC_PROG_LIBTOOL
8652         # missing_content_AC_PROG_LIBTOOL}}
8653 ],[
8654         if test "$with_libtool" != "yes" ; then
8655                 CF_PATH_SYNTAX(with_libtool)
8656                 LIBTOOL=$with_libtool
8657         else
8658                 AC_CHECK_TOOLS(LIBTOOL,[libtool glibtool],none)
8659                 CF_LIBTOOL_VERSION
8660                 if test -z "$cf_cv_libtool_version" && test "$LIBTOOL" = libtool
8661                 then
8662                         CF_FORGET_TOOL(LIBTOOL)
8663                         AC_CHECK_TOOLS(LIBTOOL,[glibtool],none)
8664                         CF_LIBTOOL_VERSION
8665                 fi
8666         fi
8667         if test -z "$LIBTOOL" ; then
8668                 AC_MSG_ERROR(Cannot find libtool)
8669         fi
8670 ])dnl
8671         LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${libdir} ${LIBTOOL_VERSION} `cut -f1 ${top_srcdir}/VERSION` ${LIBTOOL_OPTS} ${LT_UNDEF} $(LIBS) -o'
8672         LIB_OBJECT='${OBJECTS:.o=.lo}'
8673         LIB_SUFFIX=.la
8674         LIB_CLEAN='${LIBTOOL} --mode=clean'
8675         LIB_COMPILE='${LIBTOOL} --mode=compile'
8676         LIB_LINK='${LIBTOOL} --mode=link ${CC} ${LIBTOOL_OPTS}'
8677         LIB_INSTALL='${LIBTOOL} --mode=install'
8678         LIB_UNINSTALL='${LIBTOOL} --mode=uninstall'
8679         LIB_PREP=:
8680
8681         CF_CHECK_LIBTOOL_VERSION
8682
8683         # special hack to add -no-undefined (which libtool should do for itself)
8684         LT_UNDEF=
8685         case "$cf_cv_system_name" in
8686         (cygwin*|msys*|mingw32*|os2*|uwin*|aix[[4-7]])
8687                 LT_UNDEF=-no-undefined
8688                 ;;
8689         esac
8690         AC_SUBST([LT_UNDEF])
8691
8692         # special hack to add --tag option for C++ compiler
8693         case "$cf_cv_libtool_version" in
8694         (1.[[5-9]]*|[[2-9]].[[0-9.a-z]]*)
8695                 LIBTOOL_CXX="$LIBTOOL --tag=CXX"
8696                 LIBTOOL="$LIBTOOL --tag=CC"
8697                 ;;
8698         (*)
8699                 LIBTOOL_CXX="$LIBTOOL"
8700                 ;;
8701         esac
8702 else
8703         LIBTOOL=""
8704         LIBTOOL_CXX=""
8705 fi
8706
8707 test -z "$LIBTOOL" && ECHO_LT=
8708
8709 AC_SUBST(LIBTOOL)
8710 AC_SUBST(LIBTOOL_CXX)
8711 AC_SUBST(LIBTOOL_OPTS)
8712
8713 AC_SUBST(LIB_CREATE)
8714 AC_SUBST(LIB_OBJECT)
8715 AC_SUBST(LIB_SUFFIX)
8716 AC_SUBST(LIB_PREP)
8717
8718 AC_SUBST(LIB_CLEAN)
8719 AC_SUBST(LIB_COMPILE)
8720 AC_SUBST(LIB_LINK)
8721 AC_SUBST(LIB_INSTALL)
8722 AC_SUBST(LIB_UNINSTALL)
8723
8724 ])dnl
8725 dnl ---------------------------------------------------------------------------
8726 dnl CF_WITH_LIBTOOL_OPTS version: 4 updated: 2015/04/17 21:13:04
8727 dnl --------------------
8728 dnl Allow user to pass additional libtool options into the library creation
8729 dnl and link steps.  The main use for this is to do something like
8730 dnl     ./configure --with-libtool-opts=-static
8731 dnl to get the same behavior as automake-flavored
8732 dnl     ./configure --enable-static
8733 AC_DEFUN([CF_WITH_LIBTOOL_OPTS],[
8734 AC_MSG_CHECKING(for additional libtool options)
8735 AC_ARG_WITH(libtool-opts,
8736         [  --with-libtool-opts=XXX specify additional libtool options],
8737         [with_libtool_opts=$withval],
8738         [with_libtool_opts=no])
8739 AC_MSG_RESULT($with_libtool_opts)
8740
8741 case .$with_libtool_opts in
8742 (.yes|.no|.)
8743         ;;
8744 (*)
8745         LIBTOOL_OPTS="$LIBTOOL_OPTS $with_libtool_opts"
8746         ;;
8747 esac
8748
8749 AC_SUBST(LIBTOOL_OPTS)
8750 ])dnl
8751 dnl ---------------------------------------------------------------------------
8752 dnl CF_WITH_LIB_BASENAME version: 1 updated: 2020/03/07 20:05:14
8753 dnl --------------------
8754 dnl Allow for overriding the basename of a library, i.e., the part to which
8755 dnl prefixes/suffixes are attached.
8756 dnl
8757 dnl $1 = variable to set
8758 dnl $2 = option name
8759 dnl $3 = default basename for library, if omitted use $2
8760 AC_DEFUN([CF_WITH_LIB_BASENAME],
8761 [
8762 AC_MSG_CHECKING(for desired basename for $2 library)
8763 AC_ARG_WITH($2-libname,
8764         [  --with-$2-libname=XXX override ifelse($3,,$2,$3) basename of library],
8765         [with_lib_basename=$withval],
8766         [with_lib_basename=ifelse($3,,$2,$3)])
8767 $1="$with_lib_basename"
8768
8769 case "x[$]$1" in
8770 (x|xno|xnone|xyes)
8771         $1=ifelse($3,,$2,$3)
8772         ;;
8773 (*)
8774         ;;
8775 esac
8776
8777 AC_MSG_RESULT([$]$1)
8778 AC_SUBST($1)
8779 ])dnl
8780 dnl ---------------------------------------------------------------------------
8781 dnl CF_WITH_LIB_PREFIX version: 2 updated: 2021/01/01 16:53:59
8782 dnl ------------------
8783 dnl Allow the library-prefix to be overridden.  OS/2 EMX originally had no
8784 dnl "lib" prefix, e.g., because it used the dll naming convention.
8785 dnl
8786 dnl $1 = variable to set
8787 AC_DEFUN([CF_WITH_LIB_PREFIX],
8788 [
8789 AC_MSG_CHECKING(if you want to have a library-prefix)
8790 AC_ARG_WITH(lib-prefix,
8791         [  --with-lib-prefix       override library-prefix],
8792         [with_lib_prefix=$withval],
8793         [with_lib_prefix=auto])
8794 AC_MSG_RESULT($with_lib_prefix)
8795
8796 if test "$with_lib_prefix" = auto
8797 then
8798         CF_LIB_PREFIX($1)
8799 elif test "$with_lib_prefix" = no
8800 then
8801         LIB_PREFIX=
8802 else
8803         LIB_PREFIX=$with_lib_prefix
8804 fi
8805 ])dnl
8806 dnl ---------------------------------------------------------------------------
8807 dnl CF_WITH_PATH version: 11 updated: 2012/09/29 15:04:19
8808 dnl ------------
8809 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
8810 dnl defaulting to yes/no.
8811 dnl
8812 dnl $1 = option name
8813 dnl $2 = help-text
8814 dnl $3 = environment variable to set
8815 dnl $4 = default value, shown in the help-message, must be a constant
8816 dnl $5 = default value, if it's an expression & cannot be in the help-message
8817 dnl
8818 AC_DEFUN([CF_WITH_PATH],
8819 [AC_ARG_WITH($1,[$2 ](default: ifelse([$4],,empty,[$4])),,
8820 ifelse([$4],,[withval="${$3}"],[withval="${$3:-ifelse([$5],,[$4],[$5])}"]))dnl
8821 if ifelse([$5],,true,[test -n "$5"]) ; then
8822 CF_PATH_SYNTAX(withval)
8823 fi
8824 eval $3="$withval"
8825 AC_SUBST($3)dnl
8826 ])dnl
8827 dnl ---------------------------------------------------------------------------
8828 dnl CF_WITH_PATHLIST version: 12 updated: 2021/01/01 13:31:04
8829 dnl ----------------
8830 dnl Process an option specifying a list of colon-separated paths.
8831 dnl
8832 dnl $1 = option name
8833 dnl $2 = help-text
8834 dnl $3 = environment variable to set
8835 dnl $4 = default value, shown in the help-message, must be a constant
8836 dnl $5 = default value, if it's an expression & cannot be in the help-message
8837 dnl $6 = flag to tell if we want to define or substitute
8838 dnl
8839 AC_DEFUN([CF_WITH_PATHLIST],[
8840 AC_REQUIRE([CF_PATHSEP])
8841 AC_ARG_WITH($1,[$2 ](default: ifelse($4,,empty,$4)),,
8842 ifelse($4,,[withval=${$3}],[withval=${$3:-ifelse($5,,$4,$5)}]))dnl
8843
8844 IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${PATH_SEPARATOR}"
8845 cf_dst_path=
8846 for cf_src_path in $withval
8847 do
8848   CF_PATH_SYNTAX(cf_src_path)
8849   test -n "$cf_dst_path" && cf_dst_path="${cf_dst_path}$PATH_SEPARATOR"
8850   cf_dst_path="${cf_dst_path}${cf_src_path}"
8851 done
8852 IFS="$ac_save_ifs"
8853
8854 ifelse($6,define,[
8855 # Strip single quotes from the value, e.g., when it was supplied as a literal
8856 # for $4 or $5.
8857 case "$cf_dst_path" in
8858 (\'*)
8859   cf_dst_path="`echo "$cf_dst_path" |sed -e s/\'// -e s/\'\$//`"
8860   ;;
8861 esac
8862 cf_dst_path=`echo "$cf_dst_path" | sed -e 's/\\\\/\\\\\\\\/g'`
8863 ])
8864
8865 # This may use the prefix/exec_prefix symbols which will only yield "NONE"
8866 # so we have to check/work around.  We do prefer the result of "eval"...
8867 eval cf_dst_eval="$cf_dst_path"
8868 case "x$cf_dst_eval" in
8869 (xNONE*)
8870         $3=$cf_dst_path
8871         ;;
8872 (*)
8873         $3="$cf_dst_eval"
8874         ;;
8875 esac
8876 AC_SUBST($3)dnl
8877
8878 ])dnl
8879 dnl ---------------------------------------------------------------------------
8880 dnl CF_WITH_PATH_PROG version: 1 updated: 2019/06/30 19:44:43
8881 dnl -----------------
8882 dnl Check for a given program, like CF_PATH_PROG, but allow override using a
8883 dnl "--with-xxx" option.
8884 dnl
8885 dnl Parameters:
8886 dnl             $1 = environment variable to set/update
8887 dnl             $2 = program name
8888 dnl             $3 = help-text
8889 dnl             $4 = $PATH
8890 AC_DEFUN([CF_WITH_PATH_PROG],[
8891 AC_ARG_WITH($2-path,
8892         [  --with-$2-path=XXX     specify path of $2 ifelse($3,,,$3)],
8893         [AC_MSG_CHECKING(for $2 program ifelse($3,,,$3))
8894                 $1=$withval
8895                 AC_MSG_RESULT([$]$1)
8896                 CF_PATH_SYNTAX($1)
8897         ],
8898         [CF_PATH_PROG($1,$2,,ifelse($4,,,$4))
8899                 if test -z "[$]$1"
8900                 then
8901                         AC_MSG_WARN(no $2 program found ifelse($3,,,$3))
8902                 fi
8903         ])
8904 ])
8905 dnl ---------------------------------------------------------------------------
8906 dnl CF_WITH_PCRE2 version: 5 updated: 2021/01/26 18:45:12
8907 dnl -------------
8908 dnl Add PCRE2 (Perl-compatible regular expressions v2) to the build if it is
8909 dnl available and the user requests it.  Assume the application will otherwise
8910 dnl use the POSIX interface.
8911 dnl
8912 dnl TODO allow $withval to specify package location
8913 AC_DEFUN([CF_WITH_PCRE2],
8914 [
8915 AC_REQUIRE([CF_PKG_CONFIG])
8916
8917 AC_MSG_CHECKING(if you want to use PCRE2 for regular-expressions)
8918 AC_ARG_WITH(pcre2,
8919         [  --with-pcre2            use PCRE2 for regular-expressions])
8920 test -z "$with_pcre2" && with_pcre2=no
8921 AC_MSG_RESULT($with_pcre2)
8922
8923 if test "x$with_pcre2" != xno ; then
8924         cf_with_pcre2_ok=no
8925         for cf_with_pcre2 in libpcre2 libpcre2-posix libpcre
8926         do
8927                 CF_TRY_PKG_CONFIG($cf_with_pcre2,[cf_with_pcre2_ok=yes; break])
8928         done
8929         cf_with_pcre2_ok=yes || AC_MSG_ERROR(Cannot find PCRE2 library)
8930
8931         AC_DEFINE(HAVE_LIB_PCRE2,1,[Define to 1 if we can/should compile with the PCRE2 library])
8932
8933         # if pkgconfig gave no results, look for the libraries directly
8934         case "$LIBS" in
8935         (*pcre2-posix*|*pcreposix*)
8936                 ;;
8937         (*)
8938                 AC_CHECK_LIB(pcre2-posix,regcomp,[
8939                         CF_ADD_LIB(pcre2-posix)],
8940                         [AC_CHECK_LIB(pcreposix,regcomp,[
8941                          CF_ADD_LIB(pcreposix)
8942                         ],[AC_MSG_ERROR(Cannot find PCRE2 POSIX library)])])
8943                 ;;
8944         esac
8945
8946         # either way, check for the library header files
8947         AC_CHECK_HEADERS(pcre2posix.h pcreposix.h)
8948 fi
8949 ])dnl
8950 dnl ---------------------------------------------------------------------------
8951 dnl CF_WITH_PKG_CONFIG_LIBDIR version: 11 updated: 2021/01/01 16:16:30
8952 dnl -------------------------
8953 dnl Allow the choice of the pkg-config library directory to be overridden.
8954 AC_DEFUN([CF_WITH_PKG_CONFIG_LIBDIR],[
8955
8956 case "$PKG_CONFIG" in
8957 (no|none|yes)
8958         AC_MSG_CHECKING(for pkg-config library directory)
8959         ;;
8960 (*)
8961         AC_MSG_CHECKING(for $PKG_CONFIG library directory)
8962         ;;
8963 esac
8964
8965 PKG_CONFIG_LIBDIR=no
8966 AC_ARG_WITH(pkg-config-libdir,
8967         [  --with-pkg-config-libdir=XXX use given directory for installing pc-files],
8968         [PKG_CONFIG_LIBDIR=$withval],
8969         [test "x$PKG_CONFIG" != xnone && PKG_CONFIG_LIBDIR=yes])
8970
8971 case x$PKG_CONFIG_LIBDIR in
8972 (x/*)
8973         ;;
8974 (xyes)
8975         # Look for the library directory using the same prefix as the executable
8976         if test "x$PKG_CONFIG" = xnone
8977         then
8978                 cf_path=$prefix
8979         else
8980                 cf_path=`echo "$PKG_CONFIG" | sed -e 's,/[[^/]]*/[[^/]]*$,,'`
8981         fi
8982
8983         # If you don't like using the default architecture, you have to specify the
8984         # intended library directory and corresponding compiler/linker options.
8985         #
8986         # This case allows for Debian's 2014-flavor of multiarch, along with the
8987         # most common variations before that point.  Some other variants spell the
8988         # directory differently, e.g., "pkg-config", and put it in unusual places.
8989         # pkg-config has always been poorly standardized, which is ironic...
8990         case x`(arch) 2>/dev/null` in
8991         (*64)
8992                 cf_search_path="\
8993                         $cf_path/lib/*64-linux-gnu \
8994                         $cf_path/share \
8995                         $cf_path/lib64 \
8996                         $cf_path/lib32 \
8997                         $cf_path/lib"
8998                 ;;
8999         (*)
9000                 cf_search_path="\
9001                         $cf_path/lib/*-linux-gnu \
9002                         $cf_path/share \
9003                         $cf_path/lib32 \
9004                         $cf_path/lib \
9005                         $cf_path/libdata"
9006                 ;;
9007         esac
9008
9009         CF_VERBOSE(list...)
9010         for cf_config in $cf_search_path
9011         do
9012                 CF_VERBOSE(checking $cf_config/pkgconfig)
9013                 if test -d "$cf_config/pkgconfig"
9014                 then
9015                         PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
9016                         AC_MSG_CHECKING(done)
9017                         break
9018                 fi
9019         done
9020         ;;
9021 (*)
9022         ;;
9023 esac
9024
9025 if test "x$PKG_CONFIG_LIBDIR" != xno ; then
9026         AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
9027 fi
9028
9029 AC_SUBST(PKG_CONFIG_LIBDIR)
9030 ])dnl
9031 dnl ---------------------------------------------------------------------------
9032 dnl CF_WITH_PTHREAD version: 7 updated: 2015/04/18 08:56:57
9033 dnl ---------------
9034 dnl Check for POSIX thread library.
9035 AC_DEFUN([CF_WITH_PTHREAD],
9036 [
9037 AC_MSG_CHECKING(if you want to link with the pthread library)
9038 AC_ARG_WITH(pthread,
9039         [  --with-pthread          use POSIX thread library],
9040         [with_pthread=$withval],
9041         [with_pthread=no])
9042 AC_MSG_RESULT($with_pthread)
9043
9044 if test "$with_pthread" != no ; then
9045         AC_CHECK_HEADER(pthread.h,[
9046         AC_DEFINE(HAVE_PTHREADS_H,1,[Define to 1 if we have pthreads.h header])
9047
9048         for cf_lib_pthread in pthread c_r
9049         do
9050             AC_MSG_CHECKING(if we can link with the $cf_lib_pthread library)
9051             cf_save_LIBS="$LIBS"
9052             CF_ADD_LIB($cf_lib_pthread)
9053             AC_TRY_LINK([
9054 #include <pthread.h>
9055 ],[
9056                 int rc = pthread_create(0,0,0,0);
9057                 int r2 = pthread_mutexattr_settype(0, 0);
9058 ],[with_pthread=yes],[with_pthread=no])
9059             LIBS="$cf_save_LIBS"
9060             AC_MSG_RESULT($with_pthread)
9061             test "$with_pthread" = yes && break
9062         done
9063
9064         if test "$with_pthread" = yes ; then
9065             CF_ADD_LIB($cf_lib_pthread)
9066             AC_DEFINE(HAVE_LIBPTHREADS,1,[Define to 1 if we have pthreads library])
9067         else
9068             AC_MSG_ERROR(Cannot link with pthread library)
9069         fi
9070         ])
9071 fi
9072 ])
9073 dnl ---------------------------------------------------------------------------
9074 dnl CF_WITH_REL_VERSION version: 1 updated: 2003/09/20 18:12:49
9075 dnl -------------------
9076 dnl Allow library's release-version to be overridden.  Generally this happens when a
9077 dnl packager has incremented the release-version past that used in the original package,
9078 dnl and wishes to keep doing this.
9079 dnl
9080 dnl $1 is the package name, if any, to derive corresponding {package}_MAJOR
9081 dnl and {package}_MINOR symbols
9082 dnl symbol.
9083 AC_DEFUN([CF_WITH_REL_VERSION],[
9084 test -z "$cf_cv_rel_version" && cf_cv_rel_version=0.0
9085 AC_ARG_WITH(rel-version,
9086 [  --with-rel-version=XXX  override derived release version],
9087 [AC_MSG_WARN(overriding release version $cf_cv_rel_version to $withval)
9088  cf_cv_rel_version=$withval])
9089 ifelse($1,,[
9090  CF_NUMBER_SYNTAX($cf_cv_rel_version,Release version)
9091 ],[
9092  $1_MAJOR=`echo "$cf_cv_rel_version" | sed -e 's/\..*//'`
9093  $1_MINOR=`echo "$cf_cv_rel_version" | sed -e 's/^[[^.]]*//' -e 's/^\.//' -e 's/\..*//'`
9094  CF_NUMBER_SYNTAX([$]$1_MAJOR,Release major-version)
9095  CF_NUMBER_SYNTAX([$]$1_MINOR,Release minor-version)
9096 ])
9097 ])dnl
9098 dnl ---------------------------------------------------------------------------
9099 dnl CF_WITH_SYSMOUSE version: 3 updated: 2012/10/06 17:56:13
9100 dnl ----------------
9101 dnl If we can compile with sysmouse, make it available unless it is not wanted.
9102 AC_DEFUN([CF_WITH_SYSMOUSE],[
9103 # not everyone has "test -c"
9104 if test -c /dev/sysmouse 2>/dev/null ; then
9105 AC_MSG_CHECKING(if you want to use sysmouse)
9106 AC_ARG_WITH(sysmouse,
9107         [  --with-sysmouse         use sysmouse (FreeBSD console)],
9108         [cf_with_sysmouse=$withval],
9109         [cf_with_sysmouse=maybe])
9110         if test "$cf_with_sysmouse" != no ; then
9111         AC_TRY_COMPILE([
9112 #include <osreldate.h>
9113 #if (__FreeBSD_version >= 400017)
9114 #include <sys/consio.h>
9115 #include <sys/fbio.h>
9116 #else
9117 #include <machine/console.h>
9118 #endif
9119 ],[
9120         struct mouse_info the_mouse;
9121         ioctl(0, CONS_MOUSECTL, &the_mouse);
9122 ],[cf_with_sysmouse=yes],[cf_with_sysmouse=no])
9123         fi
9124 AC_MSG_RESULT($cf_with_sysmouse)
9125 test "$cf_with_sysmouse" = yes && AC_DEFINE(USE_SYSMOUSE,1,[Define to 1 if we can/should use the sysmouse interface])
9126 fi
9127 ])dnl
9128 dnl ---------------------------------------------------------------------------
9129 dnl CF_WITH_SYSTYPE version: 1 updated: 2013/01/26 16:26:12
9130 dnl ---------------
9131 dnl For testing, override the derived host system-type which is used to decide
9132 dnl things such as the linker commands used to build shared libraries.  This is
9133 dnl normally chosen automatically based on the type of system which you are
9134 dnl building on.  We use it for testing the configure script.
9135 dnl
9136 dnl This is different from the --host option: it is used only for testing parts
9137 dnl of the configure script which would not be reachable with --host since that
9138 dnl relies on the build environment being real, rather than mocked up.
9139 AC_DEFUN([CF_WITH_SYSTYPE],[
9140 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
9141 AC_ARG_WITH(system-type,
9142         [  --with-system-type=XXX  test: override derived host system-type],
9143 [AC_MSG_WARN(overriding system type to $withval)
9144         cf_cv_system_name=$withval
9145         host_os=$withval
9146 ])
9147 ])dnl
9148 dnl ---------------------------------------------------------------------------
9149 dnl CF_WITH_VALGRIND version: 1 updated: 2006/12/14 18:00:21
9150 dnl ----------------
9151 AC_DEFUN([CF_WITH_VALGRIND],[
9152 CF_NO_LEAKS_OPTION(valgrind,
9153         [  --with-valgrind         test: use valgrind],
9154         [USE_VALGRIND])
9155 ])dnl
9156 dnl ---------------------------------------------------------------------------
9157 dnl CF_WITH_VERSIONED_SYMS version: 10 updated: 2021/01/04 18:48:01
9158 dnl ----------------------
9159 dnl Use this when building shared library with ELF, to markup symbols with the
9160 dnl version identifier from the given input file.  Generally that identifier is
9161 dnl the same as the SONAME at which the symbol was first introduced.
9162 dnl
9163 dnl $1 = basename of the ".map" file (default $PACKAGE)
9164 AC_DEFUN([CF_WITH_VERSIONED_SYMS],
9165 [AC_REQUIRE([AC_PROG_FGREP])dnl
9166 AC_REQUIRE([AC_PROG_EGREP])dnl
9167
9168 AC_MSG_CHECKING(if versioned-symbols file should be used)
9169 AC_ARG_WITH(versioned-syms,
9170         [  --with-versioned-syms=X markup versioned symbols using ld],
9171         [with_versioned_syms=$withval],
9172         [with_versioned_syms=no])
9173 case "x$with_versioned_syms" in
9174 (xyes)
9175         with_versioned_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).map'
9176         AC_SUBST(PACKAGE)
9177         ;;
9178 (xno)
9179         ;;
9180 (x/*)
9181         test -f "$with_versioned_syms" || AC_MSG_ERROR(expected a filename: $with_versioned_syms)
9182         ;;
9183 (*)
9184         test -f "$with_versioned_syms" || AC_MSG_ERROR(expected a filename: $with_versioned_syms)
9185         with_versioned_syms=`pwd`/"$with_versioned_syms"
9186         ;;
9187 esac
9188 AC_MSG_RESULT($with_versioned_syms)
9189
9190 RESULTING_SYMS=
9191 VERSIONED_SYMS=
9192 WILDCARD_SYMS=
9193
9194 if test "x$with_versioned_syms" != xno
9195 then
9196         RESULTING_SYMS=$with_versioned_syms
9197         case "x$MK_SHARED_LIB" in
9198         (*-Wl,*)
9199                 VERSIONED_SYMS="-Wl,--version-script,\${RESULTING_SYMS}"
9200                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-Wl,%\\[$]{VERSIONED_SYMS} -Wl,%"`
9201                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
9202                 ;;
9203         (*-dy\ *)
9204                 VERSIONED_SYMS="-Wl,-M,\${RESULTING_SYMS}"
9205                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-dy%\\[$]{VERSIONED_SYMS} -dy%"`
9206                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
9207                 ;;
9208         (*)
9209                 AC_MSG_WARN(this system does not support versioned-symbols)
9210                 ;;
9211         esac
9212
9213         # Linux ld can selectively override scope, e.g., of symbols beginning with
9214         # "_" by first declaring some as global, and then using a wildcard to
9215         # declare the others as local.  Some other loaders cannot do this.  Check
9216         # by constructing a (very) simple shared library and inspecting its
9217         # symbols.
9218         if test "x$VERSIONED_SYMS" != "x"
9219         then
9220                 AC_MSG_CHECKING(if wildcards can be used to selectively omit symbols)
9221                 WILDCARD_SYMS=no
9222
9223                 # make sources
9224                 rm -f conftest.*
9225
9226                 cat >conftest.ver <<EOF
9227 module_1.0 {
9228 global:
9229         globalf1;
9230 local:
9231         localf1;
9232 };
9233 module_2.0 {
9234 global:
9235         globalf2;
9236 local:
9237         localf2;
9238         _*;
9239 } module_1.0;
9240 submodule_1.0 {
9241 global:
9242         subglobalf1;
9243         _ismissing;
9244 local:
9245         sublocalf1;
9246 };
9247 submodule_2.0 {
9248 global:
9249         subglobalf2;
9250 local:
9251         sublocalf2;
9252         _*;
9253 } submodule_1.0;
9254 EOF
9255                 cat >conftest.$ac_ext <<EOF
9256 #line __oline__ "configure"
9257 int     _ismissing(void) { return 1; }
9258 int     _localf1(void) { return 1; }
9259 int     _localf2(void) { return 2; }
9260 int     globalf1(void) { return 1; }
9261 int     globalf2(void) { return 2; }
9262 int     _sublocalf1(void) { return 1; }
9263 int     _sublocalf2(void) { return 2; }
9264 int     subglobalf1(void) { return 1; }
9265 int     subglobalf2(void) { return 2; }
9266 EOF
9267                 cat >conftest.mk <<EOF
9268 CC=${CC}
9269 CFLAGS=${CFLAGS}
9270 CPPFLAGS=${CPPFLAGS}
9271 LDFLAGS=${LDFLAGS}
9272 LIBS=${LIBS}
9273 VERSIONED_SYMS=${VERSIONED_SYMS}
9274 RESULTING_SYMS=conftest.ver
9275 MK_SHARED_LIB=${MK_SHARED_LIB}
9276 conftest.so: conftest.$ac_cv_objext
9277                 \$(MK_SHARED_LIB) conftest.$ac_cv_objext
9278 EOF
9279
9280                 # compile source, make library
9281                 if make -f conftest.mk 2>&AC_FD_CC >/dev/null
9282                 then
9283                         # test for missing symbol in either Data or Text section
9284                         cf_missing="`nm -P conftest.so 2>&AC_FD_CC |${FGREP-fgrep} _ismissing | ${EGREP-egrep} '[[      ]][[DT]][[      ]]'`"
9285                         test -n "$cf_missing" && WILDCARD_SYMS=yes
9286                 fi
9287                 AC_MSG_RESULT($WILDCARD_SYMS)
9288                 rm -f conftest.*
9289         fi
9290 fi
9291 AC_SUBST(RESULTING_SYMS)
9292 AC_SUBST(VERSIONED_SYMS)
9293 AC_SUBST(WILDCARD_SYMS)
9294 ])dnl
9295 dnl ---------------------------------------------------------------------------
9296 dnl CF_WITH_X11_RGB version: 2 updated: 2019/12/31 08:53:54
9297 dnl ---------------
9298 dnl Handle configure option "--with-x11-rgb", setting these shell
9299 dnl variables:
9300 dnl
9301 dnl $RGB_PATH is the option value, used for finding the X11 rgb file.
9302 dnl $no_x11_rgb is a "#" (comment) if "--without-x11-rgb" is given.
9303 dnl
9304 dnl Most Linux's use this:
9305 dnl     /usr/share/X11/rgb.txt
9306 dnl Debian uses this:
9307 dnl     /etc/X11/rgb.txt
9308 dnl DragonFlyBSD ports uses this:
9309 dnl     /usr/pkg/lib/X11/rgb.txt
9310 dnl FreeBSD ports use these:
9311 dnl     /usr/local/lib/X11/rgb.txt
9312 dnl     /usr/local/share/X11/rgb.txt
9313 dnl Mandriva has these:
9314 dnl     /usr/lib/X11/rgb.txt
9315 dnl     /usr/lib64/X11/rgb.txt
9316 dnl NetBSD has these
9317 dnl     /usr/X11R7/lib/X11/rgb.txt
9318 dnl OpenSolaris uses
9319 dnl     32-bit:
9320 dnl     /usr/X11/etc/X11/rgb.txt
9321 dnl     /usr/X11/share/X11/rgb.txt
9322 dnl     /usr/X11/lib/X11/rgb.txt
9323 dnl OSX uses
9324 dnl             /opt/local/share/X11/rgb.txt (MacPorts)
9325 dnl             /opt/X11/share/X11/rgb.txt (non-ports)
9326 dnl     64-bit:
9327 dnl     /usr/X11/etc/X11/rgb.txt
9328 dnl     /usr/X11/share/X11/rgb.txt (perhaps)
9329 dnl     /usr/X11/lib/amd64/X11/rgb.txt
9330 dnl Solaris10 uses (in this order):
9331 dnl     /usr/openwin/lib/X11/rgb.txt
9332 dnl     /usr/X11/lib/X11/rgb.txt
9333 AC_DEFUN([CF_WITH_X11_RGB],[
9334 AC_MSG_CHECKING(for X11 rgb file)
9335 AC_ARG_WITH(x11-rgb,
9336         [  --with-x11-rgb=FILE   file containing X11 rgb information (EPREFIX/lib/X11/rgb.txt)],
9337         [RGB_PATH=$withval],
9338         [RGB_PATH=auto])
9339
9340 if test "x[$]RGB_PATH" = xauto
9341 then
9342         RGB_PATH='${exec_prefix}/lib/X11/rgb.txt'
9343         for cf_path in \
9344                 /opt/local/share/X11/rgb.txt \
9345                 /opt/X11/share/X11/rgb.txt \
9346                 /usr/share/X11/rgb.txt \
9347                 /usr/X11/share/X11/rgb.txt \
9348                 /usr/X11/lib/X11/rgb.txt \
9349                 /usr/lib/X11/rgb.txt \
9350                 /etc/X11/rgb.txt \
9351                 /usr/pkg/lib/X11/rgb.txt \
9352                 /usr/X11R7/lib/X11/rgb.txt \
9353                 /usr/X11R6/lib/X11/rgb.txt \
9354                 /usr/X11R5/lib/X11/rgb.txt \
9355                 /usr/X11R4/lib/X11/rgb.txt \
9356                 /usr/local/lib/X11/rgb.txt \
9357                 /usr/local/share/X11/rgb.txt \
9358                 /usr/lib64/X11/rgb.txt
9359         do
9360                 if test -f "$cf_path" ; then
9361                         RGB_PATH="$cf_path"
9362                         break
9363                 fi
9364         done
9365 else
9366         cf_path=$RGB_PATH
9367         CF_PATH_SYNTAX(cf_path)
9368 fi
9369
9370 AC_MSG_RESULT($RGB_PATH)
9371 AC_SUBST(RGB_PATH)
9372 AC_DEFINE_UNQUOTED(RGB_PATH,"$cf_path",[Define to the full pathname of rgb.txt])
9373
9374 no_x11_rgb=
9375 if test "$RGB_PATH" = no
9376 then
9377         no_x11_rgb="#"
9378 fi
9379 AC_SUBST(no_x11_rgb)
9380 ])dnl
9381 dnl ---------------------------------------------------------------------------
9382 dnl CF_XOPEN_SOURCE version: 57 updated: 2021/01/01 16:53:59
9383 dnl ---------------
9384 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
9385 dnl or adapt to the vendor's definitions to get equivalent functionality,
9386 dnl without losing the common non-POSIX features.
9387 dnl
9388 dnl Parameters:
9389 dnl     $1 is the nominal value for _XOPEN_SOURCE
9390 dnl     $2 is the nominal value for _POSIX_C_SOURCE
9391 AC_DEFUN([CF_XOPEN_SOURCE],[
9392 AC_REQUIRE([AC_CANONICAL_HOST])
9393 AC_REQUIRE([CF_POSIX_VISIBLE])
9394
9395 if test "$cf_cv_posix_visible" = no; then
9396
9397 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
9398 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
9399 cf_xopen_source=
9400
9401 case "$host_os" in
9402 (aix[[4-7]]*)
9403         cf_xopen_source="-D_ALL_SOURCE"
9404         ;;
9405 (msys)
9406         cf_XOPEN_SOURCE=600
9407         ;;
9408 (darwin[[0-8]].*)
9409         cf_xopen_source="-D_APPLE_C_SOURCE"
9410         ;;
9411 (darwin*)
9412         cf_xopen_source="-D_DARWIN_C_SOURCE"
9413         cf_XOPEN_SOURCE=
9414         ;;
9415 (freebsd*|dragonfly*|midnightbsd*)
9416         # 5.x headers associate
9417         #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
9418         #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
9419         cf_POSIX_C_SOURCE=200112L
9420         cf_XOPEN_SOURCE=600
9421         cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
9422         ;;
9423 (hpux11*)
9424         cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
9425         ;;
9426 (hpux*)
9427         cf_xopen_source="-D_HPUX_SOURCE"
9428         ;;
9429 (irix[[56]].*)
9430         cf_xopen_source="-D_SGI_SOURCE"
9431         cf_XOPEN_SOURCE=
9432         ;;
9433 (linux*|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin)
9434         CF_GNU_SOURCE($cf_XOPEN_SOURCE)
9435         ;;
9436 (minix*)
9437         cf_xopen_source="-D_NETBSD_SOURCE" # POSIX.1-2001 features are ifdef'd with this...
9438         ;;
9439 (mirbsd*)
9440         # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types
9441         cf_XOPEN_SOURCE=
9442         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
9443         ;;
9444 (netbsd*)
9445         cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
9446         ;;
9447 (openbsd[[4-9]]*)
9448         # setting _XOPEN_SOURCE lower than 500 breaks g++ compile with wchar.h, needed for ncursesw
9449         cf_xopen_source="-D_BSD_SOURCE"
9450         cf_XOPEN_SOURCE=600
9451         ;;
9452 (openbsd*)
9453         # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
9454         ;;
9455 (osf[[45]]*)
9456         cf_xopen_source="-D_OSF_SOURCE"
9457         ;;
9458 (nto-qnx*)
9459         cf_xopen_source="-D_QNX_SOURCE"
9460         ;;
9461 (sco*)
9462         # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
9463         ;;
9464 (solaris2.*)
9465         cf_xopen_source="-D__EXTENSIONS__"
9466         cf_cv_xopen_source=broken
9467         ;;
9468 (sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2)
9469         cf_XOPEN_SOURCE=
9470         cf_POSIX_C_SOURCE=
9471         ;;
9472 (*)
9473         CF_TRY_XOPEN_SOURCE
9474         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
9475         ;;
9476 esac
9477
9478 if test -n "$cf_xopen_source" ; then
9479         CF_ADD_CFLAGS($cf_xopen_source,true)
9480 fi
9481
9482 dnl In anything but the default case, we may have system-specific setting
9483 dnl which is still not guaranteed to provide all of the entrypoints that
9484 dnl _XOPEN_SOURCE would yield.
9485 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
9486         AC_MSG_CHECKING(if _XOPEN_SOURCE really is set)
9487         AC_TRY_COMPILE([#include <stdlib.h>],[
9488 #ifndef _XOPEN_SOURCE
9489 make an error
9490 #endif],
9491         [cf_XOPEN_SOURCE_set=yes],
9492         [cf_XOPEN_SOURCE_set=no])
9493         AC_MSG_RESULT($cf_XOPEN_SOURCE_set)
9494         if test "$cf_XOPEN_SOURCE_set" = yes
9495         then
9496                 AC_TRY_COMPILE([#include <stdlib.h>],[
9497 #if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
9498 make an error
9499 #endif],
9500                 [cf_XOPEN_SOURCE_set_ok=yes],
9501                 [cf_XOPEN_SOURCE_set_ok=no])
9502                 if test "$cf_XOPEN_SOURCE_set_ok" = no
9503                 then
9504                         AC_MSG_WARN(_XOPEN_SOURCE is lower than requested)
9505                 fi
9506         else
9507                 CF_TRY_XOPEN_SOURCE
9508         fi
9509 fi
9510 fi # cf_cv_posix_visible
9511 ])
9512 dnl ---------------------------------------------------------------------------
9513 dnl CF__SED_TRIMBLANKS version: 1 updated: 2021/01/02 09:31:20
9514 dnl ------------------
9515 dnl Trim something using sed, then trim extra whitespace
9516 dnl $1 = extra parameters, e.g., in CF_STRIP_G_OPT
9517 define([CF__SED_TRIMBLANKS],[sed ifelse($1,,,[$1] )-e 's%[[     ]]% %g' -e 's% [[ ]]*% %g' -e 's%^ %%' -e 's% [$]%%'])dnl