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