]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/aclocal.m4
e99bf65f75a6bc1c1b667c10737e972e799f03e6
[ncurses.git] / Ada95 / aclocal.m4
1 dnl***************************************************************************
2 dnl Copyright 2018-2020,2021 Thomas E. Dickey                                *
3 dnl Copyright 2010-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
31 dnl
32 dnl $Id: aclocal.m4,v 1.187 2021/10/26 20:50:11 tom Exp $
33 dnl Macros used in NCURSES Ada95 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 CF_ACVERSION_CHECK version: 5 updated: 2014/06/04 19:11:49
46 dnl ------------------
47 dnl Conditionally generate script according to whether we're using a given autoconf.
48 dnl
49 dnl $1 = version to compare against
50 dnl $2 = code to use if AC_ACVERSION is at least as high as $1.
51 dnl $3 = code to use if AC_ACVERSION is older than $1.
52 define([CF_ACVERSION_CHECK],
53 [
54 ifdef([AC_ACVERSION], ,[ifdef([AC_AUTOCONF_VERSION],[m4_copy([AC_AUTOCONF_VERSION],[AC_ACVERSION])],[m4_copy([m4_PACKAGE_VERSION],[AC_ACVERSION])])])dnl
55 ifdef([m4_version_compare],
56 [m4_if(m4_version_compare(m4_defn([AC_ACVERSION]), [$1]), -1, [$3], [$2])],
57 [CF_ACVERSION_COMPARE(
58 AC_PREREQ_CANON(AC_PREREQ_SPLIT([$1])),
59 AC_PREREQ_CANON(AC_PREREQ_SPLIT(AC_ACVERSION)), AC_ACVERSION, [$2], [$3])])])dnl
60 dnl ---------------------------------------------------------------------------
61 dnl CF_ACVERSION_COMPARE version: 3 updated: 2012/10/03 18:39:53
62 dnl --------------------
63 dnl CF_ACVERSION_COMPARE(MAJOR1, MINOR1, TERNARY1,
64 dnl                      MAJOR2, MINOR2, TERNARY2,
65 dnl                      PRINTABLE2, not FOUND, FOUND)
66 define([CF_ACVERSION_COMPARE],
67 [ifelse(builtin([eval], [$2 < $5]), 1,
68 [ifelse([$8], , ,[$8])],
69 [ifelse([$9], , ,[$9])])])dnl
70 dnl ---------------------------------------------------------------------------
71 dnl CF_ADA_INCLUDE_DIRS version: 8 updated: 2013/10/14 04:24:07
72 dnl -------------------
73 dnl Construct the list of include-options for the C programs in the Ada95
74 dnl binding.
75 AC_DEFUN([CF_ADA_INCLUDE_DIRS],
76 [
77 ACPPFLAGS="-I. -I../include -I../../include $ACPPFLAGS"
78 if test "$srcdir" != "."; then
79         ACPPFLAGS="-I\${srcdir}/../../include $ACPPFLAGS"
80 fi
81 if test "$GCC" != yes; then
82         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
83 elif test "$includedir" != "/usr/include"; then
84         if test "$includedir" = '${prefix}/include' ; then
85                 if test x$prefix != x/usr ; then
86                         ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
87                 fi
88         else
89                 ACPPFLAGS="$ACPPFLAGS -I\${includedir}"
90         fi
91 fi
92 AC_SUBST(ACPPFLAGS)
93 ])dnl
94 dnl ---------------------------------------------------------------------------
95 dnl CF_ADD_ADAFLAGS version: 1 updated: 2010/06/19 15:22:18
96 dnl ---------------
97 dnl Add to $ADAFLAGS, which is substituted into makefile and scripts.
98 AC_DEFUN([CF_ADD_ADAFLAGS],[
99         ADAFLAGS="$ADAFLAGS $1"
100         AC_SUBST(ADAFLAGS)
101 ])dnl
102 dnl ---------------------------------------------------------------------------
103 dnl CF_ADD_CFLAGS version: 15 updated: 2020/12/31 10:54:15
104 dnl -------------
105 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
106 dnl $1 = flags to add
107 dnl $2 = if given makes this macro verbose.
108 dnl
109 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
110 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
111 dnl confused by the quotes (which require backslashes to keep them usable).
112 AC_DEFUN([CF_ADD_CFLAGS],
113 [
114 cf_fix_cppflags=no
115 cf_new_cflags=
116 cf_new_cppflags=
117 cf_new_extra_cppflags=
118
119 for cf_add_cflags in $1
120 do
121 case "$cf_fix_cppflags" in
122 (no)
123         case "$cf_add_cflags" in
124         (-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C)
125                 case "$cf_add_cflags" in
126                 (-D*)
127                         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
128
129                         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
130                                 && test -z "${cf_tst_cflags}" \
131                                 && cf_fix_cppflags=yes
132
133                         if test "$cf_fix_cppflags" = yes ; then
134                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
135                                 continue
136                         elif test "${cf_tst_cflags}" = "\"'" ; then
137                                 CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
138                                 continue
139                         fi
140                         ;;
141                 esac
142                 case "$CPPFLAGS" in
143                 (*$cf_add_cflags)
144                         ;;
145                 (*)
146                         case "$cf_add_cflags" in
147                         (-D*)
148                                 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
149                                 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
150                                 ;;
151                         esac
152                         CF_APPEND_TEXT(cf_new_cppflags,$cf_add_cflags)
153                         ;;
154                 esac
155                 ;;
156         (*)
157                 CF_APPEND_TEXT(cf_new_cflags,$cf_add_cflags)
158                 ;;
159         esac
160         ;;
161 (yes)
162         CF_APPEND_TEXT(cf_new_extra_cppflags,$cf_add_cflags)
163
164         cf_tst_cflags=`echo "${cf_add_cflags}" |sed -e 's/^[[^"]]*"'\''//'`
165
166         test "x${cf_add_cflags}" != "x${cf_tst_cflags}" \
167                 && test -z "${cf_tst_cflags}" \
168                 && cf_fix_cppflags=no
169         ;;
170 esac
171 done
172
173 if test -n "$cf_new_cflags" ; then
174         ifelse([$2],,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])
175         CF_APPEND_TEXT(CFLAGS,$cf_new_cflags)
176 fi
177
178 if test -n "$cf_new_cppflags" ; then
179         ifelse([$2],,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])
180         CF_APPEND_TEXT(CPPFLAGS,$cf_new_cppflags)
181 fi
182
183 if test -n "$cf_new_extra_cppflags" ; then
184         ifelse([$2],,,[CF_VERBOSE(add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags)])
185         CF_APPEND_TEXT(EXTRA_CPPFLAGS,$cf_new_extra_cppflags)
186 fi
187
188 AC_SUBST(EXTRA_CPPFLAGS)
189
190 ])dnl
191 dnl ---------------------------------------------------------------------------
192 dnl CF_ADD_INCDIR version: 17 updated: 2021/09/04 06:35:04
193 dnl -------------
194 dnl Add an include-directory to $CPPFLAGS.  Don't add /usr/include, since it is
195 dnl redundant.  We don't normally need to add -I/usr/local/include for gcc,
196 dnl but old versions (and some misinstalled ones) need that.  To make things
197 dnl worse, gcc 3.x may give error messages if -I/usr/local/include is added to
198 dnl the include-path).
199 AC_DEFUN([CF_ADD_INCDIR],
200 [
201 if test -n "$1" ; then
202   for cf_add_incdir in $1
203   do
204         while test "$cf_add_incdir" != /usr/include
205         do
206           if test -d "$cf_add_incdir"
207           then
208                 cf_have_incdir=no
209                 if test -n "$CFLAGS$CPPFLAGS" ; then
210                   # a loop is needed to ensure we can add subdirs of existing dirs
211                   for cf_test_incdir in $CFLAGS $CPPFLAGS ; do
212                         if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then
213                           cf_have_incdir=yes; break
214                         fi
215                   done
216                 fi
217
218                 if test "$cf_have_incdir" = no ; then
219                   if test "$cf_add_incdir" = /usr/local/include ; then
220                         if test "$GCC" = yes
221                         then
222                           cf_save_CPPFLAGS=$CPPFLAGS
223                           CF_APPEND_TEXT(CPPFLAGS,-I$cf_add_incdir)
224                           AC_TRY_COMPILE([#include <stdio.h>],
225                                   [printf("Hello")],
226                                   [],
227                                   [cf_have_incdir=yes])
228                           CPPFLAGS=$cf_save_CPPFLAGS
229                         fi
230                   fi
231                 fi
232
233                 if test "$cf_have_incdir" = no ; then
234                   CF_VERBOSE(adding $cf_add_incdir to include-path)
235                   ifelse([$2],,CPPFLAGS,[$2])="$ifelse([$2],,CPPFLAGS,[$2]) -I$cf_add_incdir"
236
237                   cf_top_incdir=`echo "$cf_add_incdir" | sed -e 's%/include/.*$%/include%'`
238                   test "$cf_top_incdir" = "$cf_add_incdir" && break
239                   cf_add_incdir="$cf_top_incdir"
240                 else
241                   break
242                 fi
243           else
244                 break
245           fi
246         done
247   done
248 fi
249 ])dnl
250 dnl ---------------------------------------------------------------------------
251 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
252 dnl ----------
253 dnl Add a library, used to enforce consistency.
254 dnl
255 dnl $1 = library to add, without the "-l"
256 dnl $2 = variable to update (default $LIBS)
257 AC_DEFUN([CF_ADD_LIB],[CF_ADD_LIBS(-l$1,ifelse($2,,LIBS,[$2]))])dnl
258 dnl ---------------------------------------------------------------------------
259 dnl CF_ADD_LIBDIR version: 11 updated: 2020/12/31 20:19:42
260 dnl -------------
261 dnl     Adds to the library-path
262 dnl
263 dnl     Some machines have trouble with multiple -L options.
264 dnl
265 dnl $1 is the (list of) directory(s) to add
266 dnl $2 is the optional name of the variable to update (default LDFLAGS)
267 dnl
268 AC_DEFUN([CF_ADD_LIBDIR],
269 [
270 if test -n "$1" ; then
271         for cf_add_libdir in $1
272         do
273                 if test "$cf_add_libdir" = /usr/lib ; then
274                         :
275                 elif test -d "$cf_add_libdir"
276                 then
277                         cf_have_libdir=no
278                         if test -n "$LDFLAGS$LIBS" ; then
279                                 # a loop is needed to ensure we can add subdirs of existing dirs
280                                 for cf_test_libdir in $LDFLAGS $LIBS ; do
281                                         if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then
282                                                 cf_have_libdir=yes; break
283                                         fi
284                                 done
285                         fi
286                         if test "$cf_have_libdir" = no ; then
287                                 CF_VERBOSE(adding $cf_add_libdir to library-path)
288                                 ifelse([$2],,LDFLAGS,[$2])="-L$cf_add_libdir $ifelse([$2],,LDFLAGS,[$2])"
289                         fi
290                 fi
291         done
292 fi
293 ])dnl
294 dnl ---------------------------------------------------------------------------
295 dnl CF_ADD_LIBS version: 3 updated: 2019/11/02 16:47:33
296 dnl -----------
297 dnl Add one or more libraries, used to enforce consistency.  Libraries are
298 dnl prepended to an existing list, since their dependencies are assumed to
299 dnl already exist in the list.
300 dnl
301 dnl $1 = libraries to add, with the "-l", etc.
302 dnl $2 = variable to update (default $LIBS)
303 AC_DEFUN([CF_ADD_LIBS],[
304 cf_add_libs="[$]ifelse($2,,LIBS,[$2])"
305 # reverse order
306 cf_add_0lib=
307 for cf_add_1lib in $1; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done
308 # filter duplicates
309 for cf_add_1lib in $cf_add_0lib; do
310         for cf_add_2lib in $cf_add_libs; do
311                 if test "x$cf_add_1lib" = "x$cf_add_2lib"; then
312                         cf_add_1lib=
313                         break
314                 fi
315         done
316         test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs"
317 done
318 ifelse($2,,LIBS,[$2])="$cf_add_libs"
319 ])dnl
320 dnl ---------------------------------------------------------------------------
321 dnl CF_ADD_SUBDIR_PATH version: 5 updated: 2020/12/31 20:19:42
322 dnl ------------------
323 dnl Append to a search-list for a nonstandard header/lib-file
324 dnl     $1 = the variable to return as result
325 dnl     $2 = the package name
326 dnl     $3 = the subdirectory, e.g., bin, include or lib
327 dnl $4 = the directory under which we will test for subdirectories
328 dnl $5 = a directory that we do not want $4 to match
329 AC_DEFUN([CF_ADD_SUBDIR_PATH],
330 [
331 test "x$4" != "x$5" && \
332 test -d "$4" && \
333 ifelse([$5],NONE,,[{ test -z "$5" || test "x$5" = xNONE || test "x$4" != "x$5"; } &&]) {
334         test -n "$verbose" && echo "    ... testing for $3-directories under $4"
335         test -d "$4/$3" &&          $1="[$]$1 $4/$3"
336         test -d "$4/$3/$2" &&       $1="[$]$1 $4/$3/$2"
337         test -d "$4/$3/$2/$3" &&    $1="[$]$1 $4/$3/$2/$3"
338         test -d "$4/$2/$3" &&       $1="[$]$1 $4/$2/$3"
339         test -d "$4/$2/$3/$2" &&    $1="[$]$1 $4/$2/$3/$2"
340 }
341 ])dnl
342 dnl ---------------------------------------------------------------------------
343 dnl CF_APPEND_CFLAGS version: 3 updated: 2021/09/05 17:25:40
344 dnl ----------------
345 dnl Use CF_ADD_CFLAGS after first checking for potential redefinitions.
346 dnl $1 = flags to add
347 dnl $2 = if given makes this macro verbose.
348 define([CF_APPEND_CFLAGS],
349 [
350 for cf_add_cflags in $1
351 do
352         case "x$cf_add_cflags" in
353         (x-[[DU]]*)
354                 CF_REMOVE_CFLAGS($cf_add_cflags,CFLAGS,[$2])
355                 CF_REMOVE_CFLAGS($cf_add_cflags,CPPFLAGS,[$2])
356                 ;;
357         esac
358         CF_ADD_CFLAGS([$cf_add_cflags],[$2])
359 done
360 ])dnl
361 dnl ---------------------------------------------------------------------------
362 dnl CF_APPEND_TEXT version: 1 updated: 2017/02/25 18:58:55
363 dnl --------------
364 dnl use this macro for appending text without introducing an extra blank at
365 dnl the beginning
366 define([CF_APPEND_TEXT],
367 [
368         test -n "[$]$1" && $1="[$]$1 "
369         $1="[$]{$1}$2"
370 ])dnl
371 dnl ---------------------------------------------------------------------------
372 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
373 dnl --------------
374 dnl Allow user to disable a normally-on option.
375 AC_DEFUN([CF_ARG_DISABLE],
376 [CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
377 dnl ---------------------------------------------------------------------------
378 dnl CF_ARG_ENABLE version: 3 updated: 1999/03/30 17:24:31
379 dnl -------------
380 dnl Allow user to enable a normally-off option.
381 AC_DEFUN([CF_ARG_ENABLE],
382 [CF_ARG_OPTION($1,[$2],[$3],[$4],no)])dnl
383 dnl ---------------------------------------------------------------------------
384 dnl CF_ARG_OPTION version: 5 updated: 2015/05/10 19:52:14
385 dnl -------------
386 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
387 dnl values.
388 dnl
389 dnl Parameters:
390 dnl $1 = option name
391 dnl $2 = help-string
392 dnl $3 = action to perform if option is not default
393 dnl $4 = action if perform if option is default
394 dnl $5 = default option value (either 'yes' or 'no')
395 AC_DEFUN([CF_ARG_OPTION],
396 [AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
397         if test "$enableval" != "$5" ; then
398 ifelse([$3],,[    :]dnl
399 ,[    $3]) ifelse([$4],,,[
400         else
401                 $4])
402         fi],[enableval=$5 ifelse([$4],,,[
403         $4
404 ])dnl
405 ])])dnl
406 dnl ---------------------------------------------------------------------------
407 dnl CF_AR_FLAGS version: 9 updated: 2021/01/01 13:31:04
408 dnl -----------
409 dnl Check for suitable "ar" (archiver) options for updating an archive.
410 dnl
411 dnl In particular, handle some obsolete cases where the "-" might be omitted,
412 dnl as well as a workaround for breakage of make's archive rules by the GNU
413 dnl binutils "ar" program.
414 AC_DEFUN([CF_AR_FLAGS],[
415 AC_REQUIRE([CF_PROG_AR])
416
417 AC_CACHE_CHECK(for options to update archives, cf_cv_ar_flags,[
418         case "$cf_cv_system_name" in
419         (*-msvc*)
420                 cf_cv_ar_flags=''
421                 cat >mk_static_lib.sh <<-EOF
422                 #!$SHELL
423                 MSVC_BIN="[$]AR"
424                 out="\[$]1"
425                 shift
426                 exec \[$]MSVC_BIN -out:"\[$]out" \[$]@
427                 EOF
428                 chmod +x mk_static_lib.sh
429                 AR=`pwd`/mk_static_lib.sh
430                 ;;
431         (*)
432                 cf_cv_ar_flags=unknown
433                 for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
434                 do
435
436                         # check if $ARFLAGS already contains this choice
437                         if test "x$ARFLAGS" != "x" ; then
438                                 cf_check_ar_flags=`echo "x$ARFLAGS" | sed -e "s/$cf_ar_flags\$//" -e "s/$cf_ar_flags / /"`
439                                 if test "x$ARFLAGS" != "$cf_check_ar_flags" ; then
440                                         cf_cv_ar_flags=
441                                         break
442                                 fi
443                         fi
444
445                         rm -f "conftest.$ac_cv_objext"
446                         rm -f conftest.a
447
448                         cat >"conftest.$ac_ext" <<EOF
449 #line __oline__ "configure"
450 int     testdata[[3]] = { 123, 456, 789 };
451 EOF
452                         if AC_TRY_EVAL(ac_compile) ; then
453                                 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&AC_FD_CC
454                                 $AR $ARFLAGS "$cf_ar_flags" conftest.a "conftest.$ac_cv_objext" 2>&AC_FD_CC 1>/dev/null
455                                 if test -f conftest.a ; then
456                                         cf_cv_ar_flags="$cf_ar_flags"
457                                         break
458                                 fi
459                         else
460                                 CF_VERBOSE(cannot compile test-program)
461                                 break
462                         fi
463                 done
464                 rm -f conftest.a "conftest.$ac_ext" "conftest.$ac_cv_objext"
465                 ;;
466         esac
467 ])
468
469 if test -n "$ARFLAGS" ; then
470         if test -n "$cf_cv_ar_flags" ; then
471                 ARFLAGS="$ARFLAGS $cf_cv_ar_flags"
472         fi
473 else
474         ARFLAGS=$cf_cv_ar_flags
475 fi
476
477 AC_SUBST(ARFLAGS)
478 ])
479 dnl ---------------------------------------------------------------------------
480 dnl CF_BUILD_CC version: 9 updated: 2021/01/02 09:31:20
481 dnl -----------
482 dnl If we're cross-compiling, allow the user to override the tools and their
483 dnl options.  The configure script is oriented toward identifying the host
484 dnl compiler, etc., but we need a build compiler to generate parts of the
485 dnl source.
486 dnl
487 dnl $1 = default for $CPPFLAGS
488 dnl $2 = default for $LIBS
489 AC_DEFUN([CF_BUILD_CC],[
490 CF_ACVERSION_CHECK(2.52,,
491         [AC_REQUIRE([CF_PROG_EXT])])
492 if test "$cross_compiling" = yes ; then
493
494         # defaults that we might want to override
495         : ${BUILD_CFLAGS:=''}
496         : ${BUILD_CPPFLAGS:='ifelse([$1],,,[$1])'}
497         : ${BUILD_LDFLAGS:=''}
498         : ${BUILD_LIBS:='ifelse([$2],,,[$2])'}
499         : ${BUILD_EXEEXT:='$x'}
500         : ${BUILD_OBJEXT:='o'}
501
502         AC_ARG_WITH(build-cc,
503                 [  --with-build-cc=XXX     the build C compiler ($BUILD_CC)],
504                 [BUILD_CC="$withval"],
505                 [AC_CHECK_PROGS(BUILD_CC, [gcc clang c99 c89 cc cl],none)])
506         AC_MSG_CHECKING(for native build C compiler)
507         AC_MSG_RESULT($BUILD_CC)
508
509         AC_MSG_CHECKING(for native build C preprocessor)
510         AC_ARG_WITH(build-cpp,
511                 [  --with-build-cpp=XXX    the build C preprocessor ($BUILD_CPP)],
512                 [BUILD_CPP="$withval"],
513                 [BUILD_CPP='${BUILD_CC} -E'])
514         AC_MSG_RESULT($BUILD_CPP)
515
516         AC_MSG_CHECKING(for native build C flags)
517         AC_ARG_WITH(build-cflags,
518                 [  --with-build-cflags=XXX the build C compiler-flags ($BUILD_CFLAGS)],
519                 [BUILD_CFLAGS="$withval"])
520         AC_MSG_RESULT($BUILD_CFLAGS)
521
522         AC_MSG_CHECKING(for native build C preprocessor-flags)
523         AC_ARG_WITH(build-cppflags,
524                 [  --with-build-cppflags=XXX the build C preprocessor-flags ($BUILD_CPPFLAGS)],
525                 [BUILD_CPPFLAGS="$withval"])
526         AC_MSG_RESULT($BUILD_CPPFLAGS)
527
528         AC_MSG_CHECKING(for native build linker-flags)
529         AC_ARG_WITH(build-ldflags,
530                 [  --with-build-ldflags=XXX the build linker-flags ($BUILD_LDFLAGS)],
531                 [BUILD_LDFLAGS="$withval"])
532         AC_MSG_RESULT($BUILD_LDFLAGS)
533
534         AC_MSG_CHECKING(for native build linker-libraries)
535         AC_ARG_WITH(build-libs,
536                 [  --with-build-libs=XXX   the build libraries (${BUILD_LIBS})],
537                 [BUILD_LIBS="$withval"])
538         AC_MSG_RESULT($BUILD_LIBS)
539
540         # this assumes we're on Unix.
541         BUILD_EXEEXT=
542         BUILD_OBJEXT=o
543
544         : ${BUILD_CC:='${CC}'}
545
546         if { test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}'; } ; then
547                 AC_MSG_ERROR([Cross-build requires two compilers.
548 Use --with-build-cc to specify the native compiler.])
549         fi
550
551 else
552         : ${BUILD_CC:='${CC}'}
553         : ${BUILD_CPP:='${CPP}'}
554         : ${BUILD_CFLAGS:='${CFLAGS}'}
555         : ${BUILD_CPPFLAGS:='${CPPFLAGS}'}
556         : ${BUILD_LDFLAGS:='${LDFLAGS}'}
557         : ${BUILD_LIBS:='${LIBS}'}
558         : ${BUILD_EXEEXT:='$x'}
559         : ${BUILD_OBJEXT:='o'}
560 fi
561
562 AC_SUBST(BUILD_CC)
563 AC_SUBST(BUILD_CPP)
564 AC_SUBST(BUILD_CFLAGS)
565 AC_SUBST(BUILD_CPPFLAGS)
566 AC_SUBST(BUILD_LDFLAGS)
567 AC_SUBST(BUILD_LIBS)
568 AC_SUBST(BUILD_EXEEXT)
569 AC_SUBST(BUILD_OBJEXT)
570 ])dnl
571 dnl ---------------------------------------------------------------------------
572 dnl CF_C11_NORETURN version: 3 updated: 2021/03/28 11:36:23
573 dnl ---------------
574 AC_DEFUN([CF_C11_NORETURN],
575 [
576 AC_MSG_CHECKING(if you want to use C11 _Noreturn feature)
577 CF_ARG_ENABLE(stdnoreturn,
578         [  --enable-stdnoreturn    enable C11 _Noreturn feature for diagnostics],
579         [enable_stdnoreturn=yes],
580         [enable_stdnoreturn=no])
581 AC_MSG_RESULT($enable_stdnoreturn)
582
583 if test $enable_stdnoreturn = yes; then
584 AC_CACHE_CHECK([for C11 _Noreturn feature], cf_cv_c11_noreturn,
585         [AC_TRY_COMPILE([
586 #include <stdio.h>
587 #include <stdlib.h>
588 #include <stdnoreturn.h>
589 static _Noreturn void giveup(void) { exit(0); }
590         ],
591         [if (feof(stdin)) giveup()],
592         cf_cv_c11_noreturn=yes,
593         cf_cv_c11_noreturn=no)
594         ])
595 else
596         cf_cv_c11_noreturn=no,
597 fi
598
599 if test "$cf_cv_c11_noreturn" = yes; then
600         AC_DEFINE(HAVE_STDNORETURN_H, 1,[Define if <stdnoreturn.h> header is available and working])
601         AC_DEFINE_UNQUOTED(STDC_NORETURN,_Noreturn,[Define if C11 _Noreturn keyword is supported])
602         HAVE_STDNORETURN_H=1
603 else
604         HAVE_STDNORETURN_H=0
605 fi
606
607 AC_SUBST(HAVE_STDNORETURN_H)
608 AC_SUBST(STDC_NORETURN)
609 ])dnl
610 dnl ---------------------------------------------------------------------------
611 dnl CF_CC_ENV_FLAGS version: 10 updated: 2020/12/31 18:40:20
612 dnl ---------------
613 dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
614 dnl into CC.  This will not help with broken scripts that wrap the compiler
615 dnl with options, but eliminates a more common category of user confusion.
616 dnl
617 dnl In particular, it addresses the problem of being able to run the C
618 dnl preprocessor in a consistent manner.
619 dnl
620 dnl Caveat: this also disallows blanks in the pathname for the compiler, but
621 dnl the nuisance of having inconsistent settings for compiler and preprocessor
622 dnl outweighs that limitation.
623 AC_DEFUN([CF_CC_ENV_FLAGS],
624 [
625 # This should have been defined by AC_PROG_CC
626 : "${CC:=cc}"
627
628 AC_MSG_CHECKING(\$CFLAGS variable)
629 case "x$CFLAGS" in
630 (*-[[IUD]]*)
631         AC_MSG_RESULT(broken)
632         AC_MSG_WARN(your environment uses the CFLAGS variable to hold CPPFLAGS options)
633         cf_flags="$CFLAGS"
634         CFLAGS=
635         for cf_arg in $cf_flags
636         do
637                 CF_ADD_CFLAGS($cf_arg)
638         done
639         ;;
640 (*)
641         AC_MSG_RESULT(ok)
642         ;;
643 esac
644
645 AC_MSG_CHECKING(\$CC variable)
646 case "$CC" in
647 (*[[\ \ ]]-*)
648         AC_MSG_RESULT(broken)
649         AC_MSG_WARN(your environment uses the CC variable to hold CFLAGS/CPPFLAGS options)
650         # humor him...
651         cf_prog=`echo "$CC" | sed -e 's/        / /g' -e 's/[[ ]]* / /g' -e 's/[[ ]]*[[ ]]-[[^ ]].*//'`
652         cf_flags=`echo "$CC" | ${AWK:-awk} -v prog="$cf_prog" '{ printf("%s", [substr]([$]0,1+length(prog))); }'`
653         CC="$cf_prog"
654         for cf_arg in $cf_flags
655         do
656                 case "x$cf_arg" in
657                 (x-[[IUDfgOW]]*)
658                         CF_ADD_CFLAGS($cf_arg)
659                         ;;
660                 (*)
661                         CC="$CC $cf_arg"
662                         ;;
663                 esac
664         done
665         CF_VERBOSE(resulting CC: '$CC')
666         CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
667         CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
668         ;;
669 (*)
670         AC_MSG_RESULT(ok)
671         ;;
672 esac
673 ])dnl
674 dnl ---------------------------------------------------------------------------
675 dnl CF_CFG_DEFAULTS version: 16 updated: 2021/01/04 19:33:05
676 dnl ---------------
677 dnl Determine the default configuration into which we'll install ncurses.  This
678 dnl can be overridden by the user's command-line options.  There's two items to
679 dnl look for:
680 dnl     1. the prefix (e.g., /usr)
681 dnl     2. the header files (e.g., /usr/include/ncurses)
682 dnl We'll look for a previous installation of ncurses and use the same defaults.
683 dnl
684 dnl We don't use AC_PREFIX_DEFAULT, because it gets evaluated too soon, and
685 dnl we don't use AC_PREFIX_PROGRAM, because we cannot distinguish ncurses's
686 dnl programs from a vendor's.
687 AC_DEFUN([CF_CFG_DEFAULTS],
688 [AC_REQUIRE([AC_PROG_FGREP])dnl
689
690 AC_MSG_CHECKING(for prefix)
691 if test "x$prefix" = "xNONE" ; then
692         case "$cf_cv_system_name" in
693                 # non-vendor systems don't have a conflict
694         (openbsd*|freebsd*|mirbsd*|linux*|cygwin*|msys*|k*bsd*-gnu|mingw*)
695                 prefix=/usr
696                 ;;
697         (*)     prefix=$ac_default_prefix
698                 ;;
699         esac
700 fi
701 AC_MSG_RESULT($prefix)
702
703 if test "x$prefix" = "xNONE" ; then
704 AC_MSG_CHECKING(for default include-directory)
705 test -n "$verbose" && echo 1>&AC_FD_MSG
706 for cf_symbol in \
707         "$includedir" \
708         "$includedir/ncurses" \
709         "$prefix/include" \
710         "$prefix/include/ncurses" \
711         /usr/local/include \
712         /usr/local/include/ncurses \
713         /usr/include \
714         /usr/include/ncurses
715 do
716         cf_dir=`eval echo "$cf_symbol"`
717         if test -f "$cf_dir/curses.h" ; then
718         if ( ${FGREP-fgrep} NCURSES_VERSION "$cf_dir/curses.h" >/dev/null 2>&1 ) ; then
719                 includedir="$cf_symbol"
720                 test -n "$verbose"  && echo $ECHO_N "   found " 1>&AC_FD_MSG
721                 break
722         fi
723         fi
724         test -n "$verbose"  && echo "   tested $cf_dir" 1>&AC_FD_MSG
725 done
726 AC_MSG_RESULT($includedir)
727 fi
728 ])dnl
729 dnl ---------------------------------------------------------------------------
730 dnl CF_CHECK_CACHE version: 13 updated: 2020/12/31 10:54:15
731 dnl --------------
732 dnl Check if we're accidentally using a cache from a different machine.
733 dnl Derive the system name, as a check for reusing the autoconf cache.
734 dnl
735 dnl If we've packaged config.guess and config.sub, run that (since it does a
736 dnl better job than uname).  Normally we'll use AC_CANONICAL_HOST, but allow
737 dnl an extra parameter that we may override, e.g., for AC_CANONICAL_SYSTEM
738 dnl which is useful in cross-compiles.
739 dnl
740 dnl Note: we would use $ac_config_sub, but that is one of the places where
741 dnl autoconf 2.5x broke compatibility with autoconf 2.13
742 AC_DEFUN([CF_CHECK_CACHE],
743 [
744 if test -f "$srcdir/config.guess" || test -f "$ac_aux_dir/config.guess" ; then
745         ifelse([$1],,[AC_CANONICAL_HOST],[$1])
746         system_name="$host_os"
747 else
748         system_name="`(uname -s -r) 2>/dev/null`"
749         if test -z "$system_name" ; then
750                 system_name="`(hostname) 2>/dev/null`"
751         fi
752 fi
753 test -n "$system_name" && AC_DEFINE_UNQUOTED(SYSTEM_NAME,"$system_name",[Define to the system name.])
754 AC_CACHE_VAL(cf_cv_system_name,[cf_cv_system_name="$system_name"])
755
756 test -z "$system_name" && system_name="$cf_cv_system_name"
757 test -n "$cf_cv_system_name" && AC_MSG_RESULT(Configuring for $cf_cv_system_name)
758
759 if test ".$system_name" != ".$cf_cv_system_name" ; then
760         AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
761         AC_MSG_ERROR("Please remove config.cache and try again.")
762 fi
763 ])dnl
764 dnl ---------------------------------------------------------------------------
765 dnl CF_CHECK_GNAT_VERSION version: 4 updated: 2021/01/01 13:31:04
766 dnl ---------------------
767 AC_DEFUN([CF_CHECK_GNAT_VERSION],
768 [
769 AC_REQUIRE([CF_GNAT_VERSION])
770 case "$cf_cv_gnat_version" in
771 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
772         cf_cv_prog_gnat_correct=yes
773         ;;
774 (*)
775         AC_MSG_WARN(Unsupported GNAT version $cf_cv_gnat_version. We require 3.11 or better. Disabling Ada95 binding.)
776         cf_cv_prog_gnat_correct=no
777         ;;
778 esac
779 ])
780 dnl ---------------------------------------------------------------------------
781 dnl CF_CLANG_COMPILER version: 8 updated: 2021/01/01 13:31:04
782 dnl -----------------
783 dnl Check if the given compiler is really clang.  clang's C driver defines
784 dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
785 dnl not ignore some gcc options.
786 dnl
787 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
788 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
789 dnl the wrappers for gcc and g++ warnings.
790 dnl
791 dnl $1 = GCC (default) or GXX
792 dnl $2 = CLANG_COMPILER (default)
793 dnl $3 = CFLAGS (default) or CXXFLAGS
794 AC_DEFUN([CF_CLANG_COMPILER],[
795 ifelse([$2],,CLANG_COMPILER,[$2])=no
796
797 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
798         AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
799         cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
800         AC_TRY_COMPILE([],[
801 #ifdef __clang__
802 #else
803 make an error
804 #endif
805 ],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
806 ],[])
807         ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
808         AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
809 fi
810
811 CLANG_VERSION=none
812
813 if test "x$ifelse([$2],,CLANG_COMPILER,[$2])" = "xyes" ; then
814         case "$CC" in
815         (c[[1-9]][[0-9]]|*/c[[1-9]][[0-9]])
816                 AC_MSG_WARN(replacing broken compiler alias $CC)
817                 CFLAGS="$CFLAGS -std=`echo "$CC" | sed -e 's%.*/%%'`"
818                 CC=clang
819                 ;;
820         esac
821
822         AC_MSG_CHECKING(version of $CC)
823         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.]].*//'`"
824         test -z "$CLANG_VERSION" && CLANG_VERSION=unknown
825         AC_MSG_RESULT($CLANG_VERSION)
826
827         for cf_clang_opt in \
828                 -Qunused-arguments \
829                 -Wno-error=implicit-function-declaration
830         do
831                 AC_MSG_CHECKING(if option $cf_clang_opt works)
832                 cf_save_CFLAGS="$CFLAGS"
833                 CFLAGS="$CFLAGS $cf_clang_opt"
834                 AC_TRY_LINK([
835                         #include <stdio.h>],[
836                         printf("hello!\\n");],[
837                         cf_clang_optok=yes],[
838                         cf_clang_optok=no])
839                 AC_MSG_RESULT($cf_clang_optok)
840                 CFLAGS="$cf_save_CFLAGS"
841                 if test "$cf_clang_optok" = yes; then
842                         CF_VERBOSE(adding option $cf_clang_opt)
843                         CF_APPEND_TEXT(CFLAGS,$cf_clang_opt)
844                 fi
845         done
846 fi
847 ])
848 dnl ---------------------------------------------------------------------------
849 dnl CF_CONST_X_STRING version: 7 updated: 2021/06/07 17:39:17
850 dnl -----------------
851 dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
852 dnl character-strings.
853 dnl
854 dnl It is ambiguous because the specification accommodated the pre-ANSI
855 dnl compilers bundled by more than one vendor in lieu of providing a standard C
856 dnl compiler other than by costly add-ons.  Because of this, the specification
857 dnl did not take into account the use of const for telling the compiler that
858 dnl string literals would be in readonly memory.
859 dnl
860 dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
861 dnl let the compiler decide how to represent Xt's strings which were #define'd.
862 dnl That does not solve the problem of using the block of Xt's strings which
863 dnl are compiled into the library (and is less efficient than one might want).
864 dnl
865 dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
866 dnl when compiling the library and compiling using the library, to tell the
867 dnl compiler that String is const.
868 AC_DEFUN([CF_CONST_X_STRING],
869 [
870 AC_REQUIRE([AC_PATH_XTRA])
871
872 CF_SAVE_XTRA_FLAGS([CF_CONST_X_STRING])
873
874 AC_TRY_COMPILE(
875 [
876 #include <stdlib.h>
877 #include <X11/Intrinsic.h>
878 ],
879 [String foo = malloc(1); free((void*)foo)],[
880
881 AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
882         AC_TRY_COMPILE(
883                 [
884 #define _CONST_X_STRING /* X11R7.8 (perhaps) */
885 #undef  XTSTRINGDEFINES /* X11R5 and later */
886 #include <stdlib.h>
887 #include <X11/Intrinsic.h>
888                 ],[String foo = malloc(1); *foo = 0],[
889                         cf_cv_const_x_string=no
890                 ],[
891                         cf_cv_const_x_string=yes
892                 ])
893 ])
894
895 CF_RESTORE_XTRA_FLAGS([CF_CONST_X_STRING])
896
897 case "$cf_cv_const_x_string" in
898 (no)
899         CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
900         ;;
901 (*)
902         CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
903         ;;
904 esac
905
906 ])
907 ])dnl
908 dnl ---------------------------------------------------------------------------
909 dnl CF_CONST_X_STRING version: 7 updated: 2021/06/07 17:39:17
910 dnl -----------------
911 dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
912 dnl character-strings.
913 dnl
914 dnl It is ambiguous because the specification accommodated the pre-ANSI
915 dnl compilers bundled by more than one vendor in lieu of providing a standard C
916 dnl compiler other than by costly add-ons.  Because of this, the specification
917 dnl did not take into account the use of const for telling the compiler that
918 dnl string literals would be in readonly memory.
919 dnl
920 dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
921 dnl let the compiler decide how to represent Xt's strings which were #define'd.
922 dnl That does not solve the problem of using the block of Xt's strings which
923 dnl are compiled into the library (and is less efficient than one might want).
924 dnl
925 dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
926 dnl when compiling the library and compiling using the library, to tell the
927 dnl compiler that String is const.
928 AC_DEFUN([CF_CONST_X_STRING],
929 [
930 AC_REQUIRE([AC_PATH_XTRA])
931
932 CF_SAVE_XTRA_FLAGS([CF_CONST_X_STRING])
933
934 AC_TRY_COMPILE(
935 [
936 #include <stdlib.h>
937 #include <X11/Intrinsic.h>
938 ],
939 [String foo = malloc(1); free((void*)foo)],[
940
941 AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
942         AC_TRY_COMPILE(
943                 [
944 #define _CONST_X_STRING /* X11R7.8 (perhaps) */
945 #undef  XTSTRINGDEFINES /* X11R5 and later */
946 #include <stdlib.h>
947 #include <X11/Intrinsic.h>
948                 ],[String foo = malloc(1); *foo = 0],[
949                         cf_cv_const_x_string=no
950                 ],[
951                         cf_cv_const_x_string=yes
952                 ])
953 ])
954
955 CF_RESTORE_XTRA_FLAGS([CF_CONST_X_STRING])
956
957 case "$cf_cv_const_x_string" in
958 (no)
959         CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
960         ;;
961 (*)
962         CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
963         ;;
964 esac
965
966 ])
967 ])dnl
968 dnl ---------------------------------------------------------------------------
969 dnl CF_CURSES_HEADER version: 5 updated: 2015/04/23 20:35:30
970 dnl ----------------
971 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
972 dnl variations of ncurses' installs.
973 dnl
974 dnl $1 = ncurses when looking for ncurses, or is empty
975 AC_DEFUN([CF_CURSES_HEADER],[
976 AC_CACHE_CHECK(if we have identified curses headers,cf_cv_ncurses_header,[
977 cf_cv_ncurses_header=none
978 for cf_header in \
979         ncurses.h ifelse($1,,,[$1/ncurses.h]) \
980         curses.h ifelse($1,,,[$1/curses.h]) ifelse($1,,[ncurses/ncurses.h ncurses/curses.h])
981 do
982 AC_TRY_COMPILE([#include <${cf_header}>],
983         [initscr(); tgoto("?", 0,0)],
984         [cf_cv_ncurses_header=$cf_header; break],[])
985 done
986 ])
987
988 if test "$cf_cv_ncurses_header" = none ; then
989         AC_MSG_ERROR(No curses header-files found)
990 fi
991
992 # cheat, to get the right #define's for HAVE_NCURSES_H, etc.
993 AC_CHECK_HEADERS($cf_cv_ncurses_header)
994 ])dnl
995 dnl ---------------------------------------------------------------------------
996 dnl CF_DIRNAME version: 5 updated: 2020/12/31 20:19:42
997 dnl ----------
998 dnl "dirname" is not portable, so we fake it with a shell script.
999 AC_DEFUN([CF_DIRNAME],[$1=`echo "$2" | sed -e 's%/[[^/]]*$%%'`])dnl
1000 dnl ---------------------------------------------------------------------------
1001 dnl CF_DISABLE_ECHO version: 14 updated: 2021/09/04 06:35:04
1002 dnl ---------------
1003 dnl You can always use "make -n" to see the actual options, but it is hard to
1004 dnl pick out/analyze warning messages when the compile-line is long.
1005 dnl
1006 dnl Sets:
1007 dnl     ECHO_LT - symbol to control if libtool is verbose
1008 dnl     ECHO_LD - symbol to prefix "cc -o" lines
1009 dnl     RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
1010 dnl     SHOW_CC - symbol to put before explicit "cc -c" lines
1011 dnl     ECHO_CC - symbol to put before any "cc" line
1012 dnl
1013 AC_DEFUN([CF_DISABLE_ECHO],[
1014 AC_MSG_CHECKING(if you want to see long compiling messages)
1015 CF_ARG_DISABLE(echo,
1016         [  --disable-echo          do not display "compiling" commands],
1017         [
1018         ECHO_LT='--silent'
1019         ECHO_LD='@echo linking [$]@;'
1020         RULE_CC='@echo compiling [$]<'
1021         SHOW_CC='@echo compiling [$]@'
1022         ECHO_CC='@'
1023 ],[
1024         ECHO_LT=''
1025         ECHO_LD=''
1026         RULE_CC=''
1027         SHOW_CC=''
1028         ECHO_CC=''
1029 ])
1030 AC_MSG_RESULT($enableval)
1031 AC_SUBST(ECHO_LT)
1032 AC_SUBST(ECHO_LD)
1033 AC_SUBST(RULE_CC)
1034 AC_SUBST(SHOW_CC)
1035 AC_SUBST(ECHO_CC)
1036 ])dnl
1037 dnl ---------------------------------------------------------------------------
1038 dnl CF_DISABLE_GNAT_PROJECTS version: 1 updated: 2014/06/01 11:34:00
1039 dnl ------------------------
1040 AC_DEFUN([CF_DISABLE_GNAT_PROJECTS],[
1041 AC_MSG_CHECKING(if we want to use GNAT projects)
1042 CF_ARG_DISABLE(gnat-projects,
1043         [  --disable-gnat-projects test: disable GNAT projects even if usable],
1044         [enable_gnat_projects=no],
1045         [enable_gnat_projects=yes])
1046 AC_MSG_RESULT($enable_gnat_projects)
1047 ])dnl
1048 dnl ---------------------------------------------------------------------------
1049 dnl CF_ENABLE_BROKEN_LINKER version: 2 updated: 2021/01/02 17:09:14
1050 dnl -----------------------
1051 dnl Some linkers cannot reference a data-only object.  Cygwin used to be one.
1052 dnl This usually follows CF_LINK_DATAONLY, but is not required in case we need
1053 dnl an unconditional feature.
1054 AC_DEFUN([CF_ENABLE_BROKEN_LINKER],[
1055
1056 AC_MSG_CHECKING(if you want broken-linker support code)
1057 AC_ARG_ENABLE(broken_linker,
1058         [  --enable-broken_linker  compile with broken-linker support code],
1059         [with_broken_linker=$enableval],
1060         [with_broken_linker=no])
1061 AC_MSG_RESULT($with_broken_linker)
1062
1063 : "${BROKEN_LINKER:=0}"
1064 if test "x$with_broken_linker" = xyes ; then
1065         AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
1066         BROKEN_LINKER=1
1067 fi
1068 AC_SUBST(BROKEN_LINKER)
1069 ])dnl
1070 dnl ---------------------------------------------------------------------------
1071 dnl CF_ENABLE_WARNINGS version: 9 updated: 2021/01/05 19:40:50
1072 dnl ------------------
1073 dnl Configure-option to enable gcc warnings
1074 dnl
1075 dnl $1 = extra options to add, if supported
1076 dnl $2 = option for checking attributes.  By default, this is done when
1077 dnl      warnings are enabled.  For other values:
1078 dnl      yes: always do this, e.g., to use in generated library-headers
1079 dnl      no: never do this
1080 AC_DEFUN([CF_ENABLE_WARNINGS],[
1081 if test "$GCC" = yes || test "$GXX" = yes
1082 then
1083 CF_FIX_WARNINGS(CFLAGS)
1084 CF_FIX_WARNINGS(CPPFLAGS)
1085 CF_FIX_WARNINGS(LDFLAGS)
1086 AC_MSG_CHECKING(if you want to turn on gcc warnings)
1087 CF_ARG_ENABLE(warnings,
1088         [  --enable-warnings       test: turn on gcc compiler warnings],
1089         [enable_warnings=yes],
1090         [enable_warnings=no])
1091 AC_MSG_RESULT($enable_warnings)
1092 if test "$enable_warnings" = "yes"
1093 then
1094         ifelse($2,,[CF_GCC_ATTRIBUTES])
1095         CF_GCC_WARNINGS($1)
1096 fi
1097 ifelse($2,yes,[CF_GCC_ATTRIBUTES])
1098 fi
1099 ])dnl
1100 dnl ---------------------------------------------------------------------------
1101 dnl CF_FIND_LIBRARY version: 11 updated: 2021/01/02 09:31:20
1102 dnl ---------------
1103 dnl Look for a non-standard library, given parameters for AC_TRY_LINK.  We
1104 dnl prefer a standard location, and use -L options only if we do not find the
1105 dnl library in the standard library location(s).
1106 dnl     $1 = library name
1107 dnl     $2 = library class, usually the same as library name
1108 dnl     $3 = includes
1109 dnl     $4 = code fragment to compile/link
1110 dnl     $5 = corresponding function-name
1111 dnl     $6 = flag, nonnull if failure should not cause an error-exit
1112 dnl
1113 dnl Sets the variable "$cf_libdir" as a side-effect, so we can see if we had
1114 dnl to use a -L option.
1115 AC_DEFUN([CF_FIND_LIBRARY],
1116 [
1117         eval 'cf_cv_have_lib_'"$1"'=no'
1118         cf_libdir=""
1119         AC_CHECK_FUNC($5,
1120                 eval 'cf_cv_have_lib_'"$1"'=yes',[
1121                 cf_save_LIBS="$LIBS"
1122                 AC_MSG_CHECKING(for $5 in -l$1)
1123                 LIBS="-l$1 $LIBS"
1124                 AC_TRY_LINK([$3],[$4],
1125                         [AC_MSG_RESULT(yes)
1126                          eval 'cf_cv_have_lib_'"$1"'=yes'
1127                         ],
1128                         [AC_MSG_RESULT(no)
1129                         CF_LIBRARY_PATH(cf_search,$2)
1130                         for cf_libdir in $cf_search
1131                         do
1132                                 AC_MSG_CHECKING(for -l$1 in $cf_libdir)
1133                                 LIBS="-L$cf_libdir -l$1 $cf_save_LIBS"
1134                                 AC_TRY_LINK([$3],[$4],
1135                                         [AC_MSG_RESULT(yes)
1136                                          eval 'cf_cv_have_lib_'"$1"'=yes'
1137                                          break],
1138                                         [AC_MSG_RESULT(no)
1139                                          LIBS="$cf_save_LIBS"])
1140                         done
1141                         ])
1142                 ])
1143 eval 'cf_found_library="[$]cf_cv_have_lib_'"$1"\"
1144 ifelse($6,,[
1145 if test "$cf_found_library" = no ; then
1146         AC_MSG_ERROR(Cannot link $1 library)
1147 fi
1148 ])
1149 ])dnl
1150 dnl ---------------------------------------------------------------------------
1151 dnl CF_FIND_LINKAGE version: 22 updated: 2020/12/31 20:19:42
1152 dnl ---------------
1153 dnl Find a library (specifically the linkage used in the code fragment),
1154 dnl searching for it if it is not already in the library path.
1155 dnl See also CF_ADD_SEARCHPATH.
1156 dnl
1157 dnl Parameters (4-on are optional):
1158 dnl     $1 = headers for library entrypoint
1159 dnl     $2 = code fragment for library entrypoint
1160 dnl     $3 = the library name without the "-l" option or ".so" suffix.
1161 dnl     $4 = action to perform if successful (default: update CPPFLAGS, etc)
1162 dnl     $5 = action to perform if not successful
1163 dnl     $6 = module name, if not the same as the library name
1164 dnl     $7 = extra libraries
1165 dnl
1166 dnl Sets these variables:
1167 dnl     $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
1168 dnl     $cf_cv_header_path_$3 - include-directory if needed
1169 dnl     $cf_cv_library_path_$3 - library-directory if needed
1170 dnl     $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
1171 AC_DEFUN([CF_FIND_LINKAGE],[
1172
1173 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
1174 # will be set on completion of the AC_TRY_LINK below.
1175 cf_cv_header_path_$3=
1176 cf_cv_library_path_$3=
1177
1178 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
1179
1180 cf_save_LIBS="$LIBS"
1181
1182 AC_TRY_LINK([$1],[$2],[
1183         cf_cv_find_linkage_$3=yes
1184         cf_cv_header_path_$3=/usr/include
1185         cf_cv_library_path_$3=/usr/lib
1186 ],[
1187
1188 LIBS="-l$3 $7 $cf_save_LIBS"
1189
1190 AC_TRY_LINK([$1],[$2],[
1191         cf_cv_find_linkage_$3=yes
1192         cf_cv_header_path_$3=/usr/include
1193         cf_cv_library_path_$3=/usr/lib
1194         cf_cv_library_file_$3="-l$3"
1195 ],[
1196         cf_cv_find_linkage_$3=no
1197         LIBS="$cf_save_LIBS"
1198
1199         CF_VERBOSE(find linkage for $3 library)
1200         CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
1201
1202         cf_save_CPPFLAGS="$CPPFLAGS"
1203         cf_test_CPPFLAGS="$CPPFLAGS"
1204
1205         CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
1206         for cf_cv_header_path_$3 in $cf_search
1207         do
1208                 if test -d "$cf_cv_header_path_$3" ; then
1209                         CF_VERBOSE(... testing $cf_cv_header_path_$3)
1210                         CPPFLAGS="$cf_save_CPPFLAGS"
1211                         CF_APPEND_TEXT(CPPFLAGS,-I$cf_cv_header_path_$3)
1212                         AC_TRY_COMPILE([$1],[$2],[
1213                                 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
1214                                 cf_cv_find_linkage_$3=maybe
1215                                 cf_test_CPPFLAGS="$CPPFLAGS"
1216                                 break],[
1217                                 CPPFLAGS="$cf_save_CPPFLAGS"
1218                                 ])
1219                 fi
1220         done
1221
1222         if test "$cf_cv_find_linkage_$3" = maybe ; then
1223
1224                 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
1225
1226                 cf_save_LIBS="$LIBS"
1227                 cf_save_LDFLAGS="$LDFLAGS"
1228
1229                 ifelse([$6],,,[
1230                 CPPFLAGS="$cf_test_CPPFLAGS"
1231                 LIBS="-l$3 $7 $cf_save_LIBS"
1232                 AC_TRY_LINK([$1],[$2],[
1233                         CF_VERBOSE(... found $3 library in system)
1234                         cf_cv_find_linkage_$3=yes])
1235                         CPPFLAGS="$cf_save_CPPFLAGS"
1236                         LIBS="$cf_save_LIBS"
1237                         ])
1238
1239                 if test "$cf_cv_find_linkage_$3" != yes ; then
1240                         CF_LIBRARY_PATH(cf_search,$3)
1241                         for cf_cv_library_path_$3 in $cf_search
1242                         do
1243                                 if test -d "$cf_cv_library_path_$3" ; then
1244                                         CF_VERBOSE(... testing $cf_cv_library_path_$3)
1245                                         CPPFLAGS="$cf_test_CPPFLAGS"
1246                                         LIBS="-l$3 $7 $cf_save_LIBS"
1247                                         LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
1248                                         AC_TRY_LINK([$1],[$2],[
1249                                         CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
1250                                         cf_cv_find_linkage_$3=yes
1251                                         cf_cv_library_file_$3="-l$3"
1252                                         break],[
1253                                         CPPFLAGS="$cf_save_CPPFLAGS"
1254                                         LIBS="$cf_save_LIBS"
1255                                         LDFLAGS="$cf_save_LDFLAGS"
1256                                         ])
1257                                 fi
1258                         done
1259                         CPPFLAGS="$cf_save_CPPFLAGS"
1260                         LDFLAGS="$cf_save_LDFLAGS"
1261                 fi
1262
1263         else
1264                 cf_cv_find_linkage_$3=no
1265         fi
1266         ],$7)
1267 ])
1268
1269 LIBS="$cf_save_LIBS"
1270
1271 if test "$cf_cv_find_linkage_$3" = yes ; then
1272 ifelse([$4],,[
1273         CF_ADD_INCDIR($cf_cv_header_path_$3)
1274         CF_ADD_LIBDIR($cf_cv_library_path_$3)
1275         CF_ADD_LIB($3)
1276 ],[$4])
1277 else
1278 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
1279 fi
1280 ])dnl
1281 dnl ---------------------------------------------------------------------------
1282 dnl CF_FIXUP_ADAFLAGS version: 2 updated: 2015/04/17 21:13:04
1283 dnl -----------------
1284 dnl make ADAFLAGS consistent with CFLAGS
1285 AC_DEFUN([CF_FIXUP_ADAFLAGS],[
1286         AC_MSG_CHECKING(optimization options for ADAFLAGS)
1287         case "$CFLAGS" in
1288         (*-g*)
1289                 CF_ADD_ADAFLAGS(-g)
1290                 ;;
1291         esac
1292         case "$CFLAGS" in
1293         (*-O*)
1294                 cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
1295                 CF_ADD_ADAFLAGS($cf_O_flag)
1296                 ;;
1297         esac
1298         AC_MSG_RESULT($ADAFLAGS)
1299 ])dnl
1300 dnl ---------------------------------------------------------------------------
1301 dnl CF_FIX_WARNINGS version: 3 updated: 2020/12/31 18:40:20
1302 dnl ---------------
1303 dnl Warning flags do not belong in CFLAGS, CPPFLAGS, etc.  Any of gcc's
1304 dnl "-Werror" flags can interfere with configure-checks.  Those go into
1305 dnl EXTRA_CFLAGS.
1306 dnl
1307 dnl $1 = variable name to repair
1308 define([CF_FIX_WARNINGS],[
1309 if test "$GCC" = yes || test "$GXX" = yes
1310 then
1311         case [$]$1 in
1312         (*-Werror=*)
1313                 CF_VERBOSE(repairing $1: [$]$1)
1314                 cf_temp_flags=
1315                 for cf_temp_scan in [$]$1
1316                 do
1317                         case "x$cf_temp_scan" in
1318                         (x-Werror=*)
1319                                 CF_APPEND_TEXT(EXTRA_CFLAGS,$cf_temp_scan)
1320                                 ;;
1321                         (*)
1322                                 CF_APPEND_TEXT(cf_temp_flags,$cf_temp_scan)
1323                                 ;;
1324                         esac
1325                 done
1326                 $1="$cf_temp_flags"
1327                 CF_VERBOSE(... fixed [$]$1)
1328                 CF_VERBOSE(... extra $EXTRA_CFLAGS)
1329                 ;;
1330         esac
1331 fi
1332 AC_SUBST(EXTRA_CFLAGS)
1333 ])dnl
1334 dnl ---------------------------------------------------------------------------
1335 dnl CF_GCC_ATTRIBUTES version: 24 updated: 2021/03/20 12:00:25
1336 dnl -----------------
1337 dnl Test for availability of useful gcc __attribute__ directives to quiet
1338 dnl compiler warnings.  Though useful, not all are supported -- and contrary
1339 dnl to documentation, unrecognized directives cause older compilers to barf.
1340 AC_DEFUN([CF_GCC_ATTRIBUTES],
1341 [AC_REQUIRE([AC_PROG_FGREP])dnl
1342 AC_REQUIRE([CF_C11_NORETURN])dnl
1343
1344 if test "$GCC" = yes || test "$GXX" = yes
1345 then
1346 cat > conftest.i <<EOF
1347 #ifndef GCC_PRINTF
1348 #define GCC_PRINTF 0
1349 #endif
1350 #ifndef GCC_SCANF
1351 #define GCC_SCANF 0
1352 #endif
1353 #ifndef GCC_NORETURN
1354 #define GCC_NORETURN /* nothing */
1355 #endif
1356 #ifndef GCC_UNUSED
1357 #define GCC_UNUSED /* nothing */
1358 #endif
1359 EOF
1360 if test "$GCC" = yes
1361 then
1362         AC_CHECKING([for $CC __attribute__ directives])
1363 cat > "conftest.$ac_ext" <<EOF
1364 #line __oline__ "${as_me:-configure}"
1365 #include "confdefs.h"
1366 #include "conftest.h"
1367 #include "conftest.i"
1368 #if     GCC_PRINTF
1369 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
1370 #else
1371 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
1372 #endif
1373 #if     GCC_SCANF
1374 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
1375 #else
1376 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
1377 #endif
1378 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
1379 extern GCC_NORETURN void oops(char *,...) GCC_PRINTFLIKE(1,2);
1380 extern GCC_NORETURN void foo(void);
1381 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { (void)argc; (void)argv; return 0; }
1382 EOF
1383         cf_printf_attribute=no
1384         cf_scanf_attribute=no
1385         for cf_attribute in scanf printf unused noreturn
1386         do
1387                 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
1388                 cf_directive="__attribute__(($cf_attribute))"
1389                 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
1390
1391                 case "$cf_attribute" in
1392                 (printf)
1393                         cf_printf_attribute=yes
1394                         cat >conftest.h <<EOF
1395 #define GCC_$cf_ATTRIBUTE 1
1396 EOF
1397                         ;;
1398                 (scanf)
1399                         cf_scanf_attribute=yes
1400                         cat >conftest.h <<EOF
1401 #define GCC_$cf_ATTRIBUTE 1
1402 EOF
1403                         ;;
1404                 (*)
1405                         cat >conftest.h <<EOF
1406 #define GCC_$cf_ATTRIBUTE $cf_directive
1407 EOF
1408                         ;;
1409                 esac
1410
1411                 if AC_TRY_EVAL(ac_compile); then
1412                         test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
1413                         cat conftest.h >>confdefs.h
1414                         case "$cf_attribute" in
1415                         (noreturn)
1416                                 AC_DEFINE_UNQUOTED(GCC_NORETURN,$cf_directive,[Define to noreturn-attribute for gcc])
1417                                 ;;
1418                         (printf)
1419                                 cf_value='/* nothing */'
1420                                 if test "$cf_printf_attribute" != no ; then
1421                                         cf_value='__attribute__((format(printf,fmt,var)))'
1422                                         AC_DEFINE(GCC_PRINTF,1,[Define to 1 if the compiler supports gcc-like printf attribute.])
1423                                 fi
1424                                 AC_DEFINE_UNQUOTED(GCC_PRINTFLIKE(fmt,var),$cf_value,[Define to printf-attribute for gcc])
1425                                 ;;
1426                         (scanf)
1427                                 cf_value='/* nothing */'
1428                                 if test "$cf_scanf_attribute" != no ; then
1429                                         cf_value='__attribute__((format(scanf,fmt,var)))'
1430                                         AC_DEFINE(GCC_SCANF,1,[Define to 1 if the compiler supports gcc-like scanf attribute.])
1431                                 fi
1432                                 AC_DEFINE_UNQUOTED(GCC_SCANFLIKE(fmt,var),$cf_value,[Define to sscanf-attribute for gcc])
1433                                 ;;
1434                         (unused)
1435                                 AC_DEFINE_UNQUOTED(GCC_UNUSED,$cf_directive,[Define to unused-attribute for gcc])
1436                                 ;;
1437                         esac
1438                 fi
1439         done
1440 else
1441         ${FGREP-fgrep} define conftest.i >>confdefs.h
1442 fi
1443 rm -rf ./conftest*
1444 fi
1445 ])dnl
1446 dnl ---------------------------------------------------------------------------
1447 dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
1448 dnl --------------
1449 dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
1450 dnl compatible), attempt to determine if icc/clang is actually used.
1451 AC_DEFUN([CF_GCC_VERSION],[
1452 AC_REQUIRE([AC_PROG_CC])
1453 GCC_VERSION=none
1454 if test "$GCC" = yes ; then
1455         AC_MSG_CHECKING(version of $CC)
1456         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.]].*//'`"
1457         test -z "$GCC_VERSION" && GCC_VERSION=unknown
1458         AC_MSG_RESULT($GCC_VERSION)
1459 fi
1460 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
1461 CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
1462 ])dnl
1463 dnl ---------------------------------------------------------------------------
1464 dnl CF_GCC_WARNINGS version: 41 updated: 2021/01/01 16:53:59
1465 dnl ---------------
1466 dnl Check if the compiler supports useful warning options.  There's a few that
1467 dnl we don't use, simply because they're too noisy:
1468 dnl
1469 dnl     -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
1470 dnl     -Winline (usually not worthwhile)
1471 dnl     -Wredundant-decls (system headers make this too noisy)
1472 dnl     -Wtraditional (combines too many unrelated messages, only a few useful)
1473 dnl     -Wwrite-strings (too noisy, but should review occasionally).  This
1474 dnl             is enabled for ncurses using "--enable-const".
1475 dnl     -pedantic
1476 dnl
1477 dnl Parameter:
1478 dnl     $1 is an optional list of gcc warning flags that a particular
1479 dnl             application might want to use, e.g., "no-unused" for
1480 dnl             -Wno-unused
1481 dnl Special:
1482 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
1483 dnl
1484 AC_DEFUN([CF_GCC_WARNINGS],
1485 [
1486 AC_REQUIRE([CF_GCC_VERSION])
1487 if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
1488 cat > "conftest.$ac_ext" <<EOF
1489 #line __oline__ "${as_me:-configure}"
1490 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
1491 EOF
1492 if test "$INTEL_COMPILER" = yes
1493 then
1494 # The "-wdXXX" options suppress warnings:
1495 # remark #1419: external declaration in primary source file
1496 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
1497 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
1498 # remark #193: zero used for undefined preprocessing identifier
1499 # remark #593: variable "curs_sb_left_arrow" was set but never used
1500 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
1501 # remark #869: parameter "tw" was never referenced
1502 # remark #981: operands are evaluated in unspecified order
1503 # warning #279: controlling expression is constant
1504
1505         AC_CHECKING([for $CC warning options])
1506         cf_save_CFLAGS="$CFLAGS"
1507         EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
1508         for cf_opt in \
1509                 wd1419 \
1510                 wd1683 \
1511                 wd1684 \
1512                 wd193 \
1513                 wd593 \
1514                 wd279 \
1515                 wd810 \
1516                 wd869 \
1517                 wd981
1518         do
1519                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1520                 if AC_TRY_EVAL(ac_compile); then
1521                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1522                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1523                 fi
1524         done
1525         CFLAGS="$cf_save_CFLAGS"
1526 elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown"
1527 then
1528         AC_CHECKING([for $CC warning options])
1529         cf_save_CFLAGS="$CFLAGS"
1530         cf_warn_CONST=""
1531         test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
1532         cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs"
1533         test "x$CLANG_COMPILER" = xyes && cf_gcc_warnings=
1534         for cf_opt in W Wall \
1535                 Wbad-function-cast \
1536                 Wcast-align \
1537                 Wcast-qual \
1538                 Wdeclaration-after-statement \
1539                 Wextra \
1540                 Winline \
1541                 Wmissing-declarations \
1542                 Wmissing-prototypes \
1543                 Wnested-externs \
1544                 Wpointer-arith \
1545                 Wshadow \
1546                 Wstrict-prototypes \
1547                 Wundef Wno-inline $cf_gcc_warnings $cf_warn_CONST $1
1548         do
1549                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1550                 if AC_TRY_EVAL(ac_compile); then
1551                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1552                         case "$cf_opt" in
1553                         (Winline)
1554                                 case "$GCC_VERSION" in
1555                                 ([[34]].*)
1556                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
1557                                         continue;;
1558                                 esac
1559                                 ;;
1560                         (Wpointer-arith)
1561                                 case "$GCC_VERSION" in
1562                                 ([[12]].*)
1563                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
1564                                         continue;;
1565                                 esac
1566                                 ;;
1567                         esac
1568                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1569                 fi
1570         done
1571         CFLAGS="$cf_save_CFLAGS"
1572 fi
1573 rm -rf ./conftest*
1574
1575 AC_SUBST(EXTRA_CFLAGS)
1576 ])dnl
1577 dnl ---------------------------------------------------------------------------
1578 dnl CF_GNATPREP_OPT_T version: 1 updated: 2014/08/02 18:37:25
1579 dnl -----------------
1580 AC_DEFUN([CF_GNATPREP_OPT_T],[
1581 AC_CACHE_CHECK(if GNATPREP supports -T option,cf_cv_gnatprep_opt_t,[
1582 cf_cv_gnatprep_opt_t=no
1583 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
1584 ])
1585 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
1586 AC_SUBST(GNATPREP_OPTS)
1587 ])dnl
1588 dnl ---------------------------------------------------------------------------
1589 dnl CF_GNAT_GENERICS version: 7 updated: 2021/01/01 13:31:04
1590 dnl ----------------
1591 AC_DEFUN([CF_GNAT_GENERICS],
1592 [
1593 AC_REQUIRE([CF_GNAT_VERSION])
1594
1595 AC_MSG_CHECKING(if GNAT supports generics)
1596 case "$cf_cv_gnat_version" in
1597 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|[[1-9]][[0-9]].[[0-9]]*|20[[0-9]][[0-9]])
1598         cf_gnat_generics=yes
1599         ;;
1600 (*)
1601         cf_gnat_generics=no
1602         ;;
1603 esac
1604 AC_MSG_RESULT($cf_gnat_generics)
1605
1606 if test "$cf_gnat_generics" = yes
1607 then
1608         cf_compile_generics=generics
1609         cf_generic_objects="\${GENOBJS}"
1610 else
1611         cf_compile_generics=
1612         cf_generic_objects=
1613 fi
1614
1615 AC_SUBST(cf_compile_generics)
1616 AC_SUBST(cf_generic_objects)
1617 ])dnl
1618 dnl ---------------------------------------------------------------------------
1619 dnl CF_GNAT_PROJECTS version: 13 updated: 2021/01/02 17:09:14
1620 dnl ----------------
1621 dnl GNAT projects are configured with ".gpr" project files.
1622 dnl GNAT libraries are a further development, using the project feature.
1623 AC_DEFUN([CF_GNAT_PROJECTS],
1624 [
1625 AC_REQUIRE([CF_GNAT_VERSION])
1626 AC_REQUIRE([CF_DISABLE_GNAT_PROJECTS])
1627
1628 cf_gnat_libraries=no
1629 cf_gnat_projects=no
1630
1631 if test "$enable_gnat_projects" != no ; then
1632 AC_MSG_CHECKING(if GNAT supports project files)
1633 case "$cf_cv_gnat_version" in
1634 (3.[[0-9]]*)
1635         ;;
1636 (*)
1637         case "$cf_cv_system_name" in
1638         (cygwin*|msys*)
1639                 ;;
1640         (*)
1641                 rm -rf ./conftest* ./*~conftest*
1642                 if mkdir conftest.src conftest.bin conftest.lib
1643                 then
1644                         cd conftest.src
1645                         rm -rf ./conftest* ./*~conftest*
1646                         cat >>library.gpr <<CF_EOF
1647 project Library is
1648   Kind := External ("LIB_KIND");
1649   for Library_Name use "ConfTest";
1650   for Object_Dir use ".";
1651   for Library_ALI_Dir use External("LIBRARY_DIR");
1652   for Library_Version use External ("SONAME");
1653   for Library_Kind use Kind;
1654   for Library_Dir use External("BUILD_DIR");
1655   Source_Dir := External ("SOURCE_DIR");
1656   for Source_Dirs use (Source_Dir);
1657 end Library;
1658 CF_EOF
1659                         cat >>confpackage.ads <<CF_EOF
1660 package ConfPackage is
1661    procedure conftest;
1662 end ConfPackage;
1663 CF_EOF
1664                         cat >>confpackage.adb <<CF_EOF
1665 with Text_IO;
1666 package body ConfPackage is
1667    procedure conftest is
1668    begin
1669       Text_IO.Put ("Hello World");
1670       Text_IO.New_Line;
1671    end conftest;
1672 end ConfPackage;
1673 CF_EOF
1674                         if ( "$cf_ada_make" $ADAFLAGS \
1675                                         -Plibrary.gpr \
1676                                         -XBUILD_DIR="`cd ../conftest.bin;pwd`" \
1677                                         -XLIBRARY_DIR="`cd ../conftest.lib;pwd`" \
1678                                         -XSOURCE_DIR="`pwd`" \
1679                                         -XSONAME=libConfTest.so.1 \
1680                                         -XLIB_KIND=static 1>&AC_FD_CC 2>&1 ) ; then
1681                                 cf_gnat_projects=yes
1682                         fi
1683                         cd ..
1684                 fi
1685                 if test -f conftest.lib/confpackage.ali
1686                 then
1687                         cf_gnat_libraries=yes
1688                 fi
1689                 rm -rf ./conftest* ./*~conftest*
1690                 ;;
1691         esac
1692         ;;
1693 esac
1694 AC_MSG_RESULT($cf_gnat_projects)
1695 fi # enable_gnat_projects
1696
1697 if test "$cf_gnat_projects" = yes
1698 then
1699         AC_MSG_CHECKING(if GNAT supports libraries)
1700         AC_MSG_RESULT($cf_gnat_libraries)
1701 fi
1702
1703 USE_OLD_MAKERULES=""
1704 USE_GNAT_PROJECTS="#"
1705 USE_GNAT_MAKE_GPR="#"
1706 USE_GNAT_GPRBUILD="#"
1707
1708 if test "$cf_gnat_projects" = yes
1709 then
1710         USE_OLD_MAKERULES="#"
1711         USE_GNAT_PROJECTS=""
1712         if test "$cf_cv_VERSION_GPRBUILD" != no
1713         then
1714                 USE_GNAT_GPRBUILD=""
1715         elif test "$cf_cv_VERSION_GNATMAKE" != no
1716         then
1717                 USE_GNAT_MAKE_GPR=""
1718         else
1719                 AC_MSG_WARN(use old makefile rules since tools are missing)
1720         fi
1721 fi
1722
1723 if test "$cf_gnat_libraries" = yes
1724 then
1725         USE_GNAT_LIBRARIES=""
1726 else
1727         USE_GNAT_LIBRARIES="#"
1728 fi
1729
1730 AC_SUBST(USE_OLD_MAKERULES)
1731 AC_SUBST(USE_GNAT_PROJECTS)
1732 AC_SUBST(USE_GNAT_LIBRARIES)
1733 AC_SUBST(USE_GNAT_MAKE_GPR)
1734 AC_SUBST(USE_GNAT_GPRBUILD)
1735 ])dnl
1736 dnl ---------------------------------------------------------------------------
1737 dnl CF_GNAT_SIGINT version: 2 updated: 2021/01/01 13:31:04
1738 dnl --------------
1739 dnl Check if gnat supports SIGINT, and presumably tasking.  For the latter, it
1740 dnl is noted that gnat may compile a tasking unit even for configurations which
1741 dnl fail at runtime.
1742 AC_DEFUN([CF_GNAT_SIGINT],[
1743 AC_CACHE_CHECK(if GNAT supports SIGINT,cf_cv_gnat_sigint,[
1744 CF_GNAT_TRY_LINK([with Ada.Interrupts.Names;
1745
1746 package ConfTest is
1747
1748    pragma Warnings (Off);  --  the next pragma exists since 3.11p
1749    pragma Unreserve_All_Interrupts;
1750    pragma Warnings (On);
1751
1752    protected Process is
1753       procedure Stop;
1754       function Continue return Boolean;
1755       pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT);
1756    private
1757       Done : Boolean := False;
1758    end Process;
1759
1760 end ConfTest;],
1761 [package body ConfTest is
1762    protected body Process is
1763       procedure Stop is
1764       begin
1765          Done := True;
1766       end Stop;
1767       function Continue return Boolean is
1768       begin
1769          return not Done;
1770       end Continue;
1771    end Process;
1772 end ConfTest;],
1773         [cf_cv_gnat_sigint=yes],
1774         [cf_cv_gnat_sigint=no])])
1775
1776 if test "$cf_cv_gnat_sigint" = yes ; then
1777         USE_GNAT_SIGINT=""
1778 else
1779         USE_GNAT_SIGINT="#"
1780 fi
1781 AC_SUBST(USE_GNAT_SIGINT)
1782 ])dnl
1783 dnl ---------------------------------------------------------------------------
1784 dnl CF_GNAT_TRY_LINK version: 4 updated: 2021/01/01 13:31:04
1785 dnl ----------------
1786 dnl Verify that a test program compiles/links with GNAT.
1787 dnl $cf_ada_make is set to the program that compiles/links
1788 dnl $ADAFLAGS may be set to the GNAT flags.
1789 dnl
1790 dnl $1 is the text of the spec
1791 dnl $2 is the text of the body
1792 dnl $3 is the shell command to execute if successful
1793 dnl $4 is the shell command to execute if not successful
1794 AC_DEFUN([CF_GNAT_TRY_LINK],
1795 [
1796 rm -rf ./conftest* ./*~conftest*
1797 cat >>conftest.ads <<CF_EOF
1798 $1
1799 CF_EOF
1800 cat >>conftest.adb <<CF_EOF
1801 $2
1802 CF_EOF
1803 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
1804 ifelse($3,,      :,[      $3])
1805 ifelse($4,,,[else
1806    $4])
1807 fi
1808 rm -rf ./conftest* ./*~conftest*
1809 ])dnl
1810 dnl ---------------------------------------------------------------------------
1811 dnl CF_GNAT_TRY_RUN version: 6 updated: 2021/01/01 13:31:04
1812 dnl ---------------
1813 dnl Verify that a test program compiles and runs with GNAT
1814 dnl $cf_ada_make is set to the program that compiles/links
1815 dnl $ADAFLAGS may be set to the GNAT flags.
1816 dnl
1817 dnl $1 is the text of the spec
1818 dnl $2 is the text of the body
1819 dnl $3 is the shell command to execute if successful
1820 dnl $4 is the shell command to execute if not successful
1821 AC_DEFUN([CF_GNAT_TRY_RUN],
1822 [
1823 rm -rf ./conftest* ./*~conftest*
1824 cat >>conftest.ads <<CF_EOF
1825 $1
1826 CF_EOF
1827 cat >>conftest.adb <<CF_EOF
1828 $2
1829 CF_EOF
1830 if ( "$cf_ada_make" $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
1831    if ( ./conftest 1>&AC_FD_CC 2>&1 ) ; then
1832 ifelse($3,,      :,[      $3])
1833 ifelse($4,,,[   else
1834       $4])
1835    fi
1836 ifelse($4,,,[else
1837    $4])
1838 fi
1839 rm -rf ./conftest* ./*~conftest*
1840 ])dnl
1841 dnl ---------------------------------------------------------------------------
1842 dnl CF_GNAT_VERSION version: 22 updated: 2019/12/31 08:53:54
1843 dnl ---------------
1844 dnl $1 = cache variable to update
1845 dnl $2 = program name
1846 dnl Verify version of GNAT or related tool
1847 AC_DEFUN([CF_GNAT_VERSION],
1848 [
1849 AC_CACHE_CHECK(for ifelse($2,,gnat,$2) version, cf_cv_gnat_version,[
1850 cf_cv_gnat_version=`ifelse($2,,${cf_ada_make:-gnatmake},$2) --version 2>&1 | \
1851         grep '[[0-9]].[[0-9]][[0-9]]*' |\
1852         sed -e '2,$d' -e 's/[[^0-9 \.]]//g' -e 's/^[[ ]]*//' -e 's/ .*//'`
1853 ])
1854 test -z "$cf_cv_gnat_version" && cf_cv_gnat_version=no
1855 ifelse($1,,,[eval $1=$cf_cv_gnat_version; unset cf_cv_gnat_version])
1856 ])dnl
1857 dnl ---------------------------------------------------------------------------
1858 dnl CF_GNU_SOURCE version: 10 updated: 2018/12/10 20:09:41
1859 dnl -------------
1860 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
1861 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
1862 dnl (or misfeature) of glibc2, which breaks portability of many applications,
1863 dnl since it is interwoven with GNU extensions.
1864 dnl
1865 dnl Well, yes we could work around it...
1866 dnl
1867 dnl Parameters:
1868 dnl     $1 is the nominal value for _XOPEN_SOURCE
1869 AC_DEFUN([CF_GNU_SOURCE],
1870 [
1871 cf_gnu_xopen_source=ifelse($1,,500,$1)
1872
1873 AC_CACHE_CHECK(if this is the GNU C library,cf_cv_gnu_library,[
1874 AC_TRY_COMPILE([#include <sys/types.h>],[
1875         #if __GLIBC__ > 0 && __GLIBC_MINOR__ >= 0
1876                 return 0;
1877         #elif __NEWLIB__ > 0 && __NEWLIB_MINOR__ >= 0
1878                 return 0;
1879         #else
1880         #       error not GNU C library
1881         #endif],
1882         [cf_cv_gnu_library=yes],
1883         [cf_cv_gnu_library=no])
1884 ])
1885
1886 if test x$cf_cv_gnu_library = xyes; then
1887
1888         # With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
1889         # was changed to help a little.  newlib incorporated the change about 4
1890         # years later.
1891         AC_CACHE_CHECK(if _DEFAULT_SOURCE can be used as a basis,cf_cv_gnu_library_219,[
1892                 cf_save="$CPPFLAGS"
1893                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
1894                 AC_TRY_COMPILE([#include <sys/types.h>],[
1895                         #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 19) || (__GLIBC__ > 2)
1896                                 return 0;
1897                         #elif (__NEWLIB__ == 2 && __NEWLIB_MINOR__ >= 4) || (__GLIBC__ > 3)
1898                                 return 0;
1899                         #else
1900                         #       error GNU C library __GLIBC__.__GLIBC_MINOR__ is too old
1901                         #endif],
1902                         [cf_cv_gnu_library_219=yes],
1903                         [cf_cv_gnu_library_219=no])
1904                 CPPFLAGS="$cf_save"
1905         ])
1906
1907         if test "x$cf_cv_gnu_library_219" = xyes; then
1908                 cf_save="$CPPFLAGS"
1909                 AC_CACHE_CHECK(if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE,cf_cv_gnu_dftsrc_219,[
1910                         CF_ADD_CFLAGS(-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=$cf_gnu_xopen_source)
1911                         AC_TRY_COMPILE([
1912                                 #include <limits.h>
1913                                 #include <sys/types.h>
1914                                 ],[
1915                                 #if (_XOPEN_SOURCE >= $cf_gnu_xopen_source) && (MB_LEN_MAX > 1)
1916                                         return 0;
1917                                 #else
1918                                 #       error GNU C library is too old
1919                                 #endif],
1920                                 [cf_cv_gnu_dftsrc_219=yes],
1921                                 [cf_cv_gnu_dftsrc_219=no])
1922                         ])
1923                 test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
1924         else
1925                 cf_cv_gnu_dftsrc_219=maybe
1926         fi
1927
1928         if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
1929
1930                 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
1931                 AC_TRY_COMPILE([#include <sys/types.h>],[
1932                         #ifndef _XOPEN_SOURCE
1933                         #error  expected _XOPEN_SOURCE to be defined
1934                         #endif],
1935                         [cf_cv_gnu_source=no],
1936                         [cf_save="$CPPFLAGS"
1937                          CF_ADD_CFLAGS(-D_GNU_SOURCE)
1938                          AC_TRY_COMPILE([#include <sys/types.h>],[
1939                                 #ifdef _XOPEN_SOURCE
1940                                 #error  expected _XOPEN_SOURCE to be undefined
1941                                 #endif],
1942                                 [cf_cv_gnu_source=no],
1943                                 [cf_cv_gnu_source=yes])
1944                         CPPFLAGS="$cf_save"
1945                         ])
1946                 ])
1947
1948                 if test "$cf_cv_gnu_source" = yes
1949                 then
1950                 AC_CACHE_CHECK(if we should also define _DEFAULT_SOURCE,cf_cv_default_source,[
1951                         CF_APPEND_TEXT(CPPFLAGS,-D_GNU_SOURCE)
1952                         AC_TRY_COMPILE([#include <sys/types.h>],[
1953                                 #ifdef _DEFAULT_SOURCE
1954                                 #error  expected _DEFAULT_SOURCE to be undefined
1955                                 #endif],
1956                                 [cf_cv_default_source=no],
1957                                 [cf_cv_default_source=yes])
1958                         ])
1959                         if test "$cf_cv_default_source" = yes
1960                         then
1961                                 CF_APPEND_TEXT(CPPFLAGS,-D_DEFAULT_SOURCE)
1962                         fi
1963                 fi
1964         fi
1965
1966 fi
1967 ])dnl
1968 dnl ---------------------------------------------------------------------------
1969 dnl CF_HEADER_PATH version: 15 updated: 2021/01/01 13:31:04
1970 dnl --------------
1971 dnl Construct a search-list of directories for a nonstandard header-file
1972 dnl
1973 dnl Parameters
1974 dnl     $1 = the variable to return as result
1975 dnl     $2 = the package name
1976 AC_DEFUN([CF_HEADER_PATH],
1977 [
1978 $1=
1979
1980 # collect the current set of include-directories from compiler flags
1981 cf_header_path_list=""
1982 if test -n "${CFLAGS}${CPPFLAGS}" ; then
1983         for cf_header_path in $CPPFLAGS $CFLAGS
1984         do
1985                 case "$cf_header_path" in
1986                 (-I*)
1987                         cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
1988                         CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
1989                         cf_header_path_list="$cf_header_path_list [$]$1"
1990                         ;;
1991                 esac
1992         done
1993 fi
1994
1995 # add the variations for the package we are looking for
1996 CF_SUBDIR_PATH($1,$2,include)
1997
1998 test "$includedir" != NONE && \
1999 test "$includedir" != "/usr/include" && \
2000 test -d "$includedir" && {
2001         test -d "$includedir" &&    $1="[$]$1 $includedir"
2002         test -d "$includedir/$2" && $1="[$]$1 $includedir/$2"
2003 }
2004
2005 test "$oldincludedir" != NONE && \
2006 test "$oldincludedir" != "/usr/include" && \
2007 test -d "$oldincludedir" && {
2008         test -d "$oldincludedir"    && $1="[$]$1 $oldincludedir"
2009         test -d "$oldincludedir/$2" && $1="[$]$1 $oldincludedir/$2"
2010 }
2011
2012 $1="[$]$1 $cf_header_path_list"
2013 ])dnl
2014 dnl ---------------------------------------------------------------------------
2015 dnl CF_HELP_MESSAGE version: 4 updated: 2019/12/31 08:53:54
2016 dnl ---------------
2017 dnl Insert text into the help-message, for readability, from AC_ARG_WITH.
2018 AC_DEFUN([CF_HELP_MESSAGE],
2019 [CF_ACVERSION_CHECK(2.53,[],[
2020 AC_DIVERT_HELP($1)])dnl
2021 ])dnl
2022 dnl ---------------------------------------------------------------------------
2023 dnl CF_INCLUDE_DIRS version: 10 updated: 2014/09/19 20:58:42
2024 dnl ---------------
2025 dnl Construct the list of include-options according to whether we're building
2026 dnl in the source directory or using '--srcdir=DIR' option.
2027 AC_DEFUN([CF_INCLUDE_DIRS],
2028 [
2029 if test "$srcdir" != "."; then
2030         CPPFLAGS="-I\${srcdir}/../include $CPPFLAGS"
2031 fi
2032 CPPFLAGS="-I../include $CPPFLAGS"
2033 if test "$srcdir" != "."; then
2034         CPPFLAGS="-I\${srcdir} $CPPFLAGS"
2035 fi
2036 CPPFLAGS="-I. $CPPFLAGS"
2037 AC_SUBST(CPPFLAGS)
2038 ])dnl
2039 dnl ---------------------------------------------------------------------------
2040 dnl CF_INSTALL_OPTS version: 2 updated: 2018/08/18 12:19:21
2041 dnl ---------------
2042 dnl prompt for/fill-in useful install-program options
2043 AC_DEFUN([CF_INSTALL_OPTS],
2044 [
2045 CF_INSTALL_OPT_S
2046 CF_INSTALL_OPT_P
2047 CF_INSTALL_OPT_O
2048 ])dnl
2049 dnl ---------------------------------------------------------------------------
2050 dnl CF_INSTALL_OPT_O version: 3 updated: 2020/12/31 20:19:42
2051 dnl ----------------
2052 dnl Almost all "install" programs default to the current user's ownership.
2053 dnl Almost - MINIX is an exception.
2054 AC_DEFUN([CF_INSTALL_OPT_O],
2055 [
2056 AC_MSG_CHECKING(if install needs to be told about ownership)
2057 case `$ac_config_guess` in
2058 (*minix)
2059         with_install_o=yes
2060         ;;
2061 (*)
2062         with_install_o=no
2063         ;;
2064 esac
2065
2066 AC_MSG_RESULT($with_install_o)
2067 if test "x$with_install_o" = xyes
2068 then
2069         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'`"
2070 else
2071         INSTALL_OPT_O=
2072 fi
2073
2074 AC_SUBST(INSTALL_OPT_O)
2075 ])dnl
2076 dnl ---------------------------------------------------------------------------
2077 dnl CF_INSTALL_OPT_P version: 3 updated: 2021/01/01 13:31:04
2078 dnl ----------------
2079 dnl Some install-programs accept a "-p" option to preserve file modification
2080 dnl timestamps.  That can be useful as an install option, as well as a way to
2081 dnl avoid the need for ranlib after copying a static archive.
2082 AC_DEFUN([CF_INSTALL_OPT_P],
2083 [
2084 : "${INSTALL:=install}"
2085 AC_CACHE_CHECK(if install accepts -p option, cf_cv_install_p,[
2086         rm -rf ./conftest*
2087         date >conftest.in
2088         mkdir conftest.out
2089         sleep 3
2090         if $INSTALL -p conftest.in conftest.out 2>/dev/null
2091         then
2092                 if test -f conftest.out/conftest.in
2093                 then
2094                         test conftest.in -nt conftest.out/conftest.in 2>conftest.err && \
2095                         test conftest.out/conftest.in -nt conftest.in 2>conftest.err
2096                         if test -s conftest.err
2097                         then
2098                                 cf_cv_install_p=no
2099                         else
2100                                 cf_cv_install_p=yes
2101                         fi
2102                 else
2103                         cf_cv_install_p=no
2104                 fi
2105         else
2106                 cf_cv_install_p=no
2107         fi
2108         rm -rf ./conftest*
2109 ])
2110 ])dnl
2111 dnl ---------------------------------------------------------------------------
2112 dnl CF_INSTALL_OPT_S version: 3 updated: 2021/01/05 19:23:48
2113 dnl ----------------
2114 dnl By default, we should strip executables which are installed, but leave the
2115 dnl ability to suppress that for unit-testing.
2116 AC_DEFUN([CF_INSTALL_OPT_S],
2117 [
2118 AC_MSG_CHECKING(if you want to install stripped executables)
2119 CF_ARG_DISABLE(stripping,
2120         [  --disable-stripping     do not strip (debug info) installed executables],
2121         [enable_stripping=no],
2122         [enable_stripping=yes])
2123 AC_MSG_RESULT($enable_stripping)
2124
2125 if test "$enable_stripping" = yes
2126 then
2127         INSTALL_OPT_S="-s"
2128 else
2129         INSTALL_OPT_S=
2130 fi
2131 AC_SUBST(INSTALL_OPT_S)
2132 ])dnl
2133 dnl ---------------------------------------------------------------------------
2134 dnl CF_INTEL_COMPILER version: 8 updated: 2021/01/01 16:53:59
2135 dnl -----------------
2136 dnl Check if the given compiler is really the Intel compiler for Linux.  It
2137 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
2138 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
2139 dnl
2140 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
2141 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
2142 dnl the wrappers for gcc and g++ warnings.
2143 dnl
2144 dnl $1 = GCC (default) or GXX
2145 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
2146 dnl $3 = CFLAGS (default) or CXXFLAGS
2147 AC_DEFUN([CF_INTEL_COMPILER],[
2148 AC_REQUIRE([AC_CANONICAL_HOST])
2149 ifelse([$2],,INTEL_COMPILER,[$2])=no
2150
2151 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
2152         case "$host_os" in
2153         (linux*|gnu*)
2154                 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
2155                 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
2156                 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
2157                 AC_TRY_COMPILE([],[
2158 #ifdef __INTEL_COMPILER
2159 #else
2160 make an error
2161 #endif
2162 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
2163 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
2164 ],[])
2165                 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
2166                 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
2167                 ;;
2168         esac
2169 fi
2170 ])dnl
2171 dnl ---------------------------------------------------------------------------
2172 dnl CF_LARGEFILE version: 12 updated: 2020/03/19 20:23:48
2173 dnl ------------
2174 dnl Add checks for large file support.
2175 AC_DEFUN([CF_LARGEFILE],[
2176 ifdef([AC_FUNC_FSEEKO],[
2177         AC_SYS_LARGEFILE
2178         if test "$enable_largefile" != no ; then
2179         AC_FUNC_FSEEKO
2180
2181         # Normally we would collect these definitions in the config.h,
2182         # but (like _XOPEN_SOURCE), some environments rely on having these
2183         # defined before any of the system headers are included.  Another
2184         # case comes up with C++, e.g., on AIX the compiler compiles the
2185         # header files by themselves before looking at the body files it is
2186         # told to compile.  For ncurses, those header files do not include
2187         # the config.h
2188         if test "$ac_cv_sys_large_files" != no
2189         then
2190                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGE_FILES)
2191         fi
2192         if test "$ac_cv_sys_largefile_source" != no
2193         then
2194                 CF_APPEND_TEXT(CPPFLAGS,-D_LARGEFILE_SOURCE)
2195         fi
2196         if test "$ac_cv_sys_file_offset_bits" != no
2197         then
2198                 CF_APPEND_TEXT(CPPFLAGS,-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits)
2199         fi
2200
2201         AC_CACHE_CHECK(whether to use struct dirent64, cf_cv_struct_dirent64,[
2202                 AC_TRY_COMPILE([
2203 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
2204 #include <sys/types.h>
2205 #include <dirent.h>
2206                 ],[
2207                 /* if transitional largefile support is setup, this is true */
2208                 extern struct dirent64 * readdir(DIR *);
2209                 struct dirent64 *x = readdir((DIR *)0);
2210                 struct dirent *y = readdir((DIR *)0);
2211                 int z = x - y;
2212                 (void)z;
2213                 ],
2214                 [cf_cv_struct_dirent64=yes],
2215                 [cf_cv_struct_dirent64=no])
2216         ])
2217         test "$cf_cv_struct_dirent64" = yes && AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Define to 1 if we have struct dirent64])
2218         fi
2219 ])
2220 ])
2221 dnl ---------------------------------------------------------------------------
2222 dnl CF_LD_RPATH_OPT version: 9 updated: 2021/01/01 13:31:04
2223 dnl ---------------
2224 dnl For the given system and compiler, find the compiler flags to pass to the
2225 dnl loader to use the "rpath" feature.
2226 AC_DEFUN([CF_LD_RPATH_OPT],
2227 [
2228 AC_REQUIRE([CF_CHECK_CACHE])
2229
2230 LD_RPATH_OPT=
2231 if test "x$cf_cv_enable_rpath" != xno
2232 then
2233         AC_MSG_CHECKING(for an rpath option)
2234         case "$cf_cv_system_name" in
2235         (irix*)
2236                 if test "$GCC" = yes; then
2237                         LD_RPATH_OPT="-Wl,-rpath,"
2238                 else
2239                         LD_RPATH_OPT="-rpath "
2240                 fi
2241                 ;;
2242         (linux*|gnu*|k*bsd*-gnu|freebsd*)
2243                 LD_RPATH_OPT="-Wl,-rpath,"
2244                 ;;
2245         (openbsd[[2-9]].*|mirbsd*)
2246                 LD_RPATH_OPT="-Wl,-rpath,"
2247                 ;;
2248         (dragonfly*)
2249                 LD_RPATH_OPT="-rpath "
2250                 ;;
2251         (netbsd*)
2252                 LD_RPATH_OPT="-Wl,-rpath,"
2253                 ;;
2254         (osf*|mls+*)
2255                 LD_RPATH_OPT="-rpath "
2256                 ;;
2257         (solaris2*)
2258                 LD_RPATH_OPT="-R"
2259                 ;;
2260         (*)
2261                 ;;
2262         esac
2263         AC_MSG_RESULT($LD_RPATH_OPT)
2264
2265         case "x$LD_RPATH_OPT" in
2266         (x-R*)
2267                 AC_MSG_CHECKING(if we need a space after rpath option)
2268                 cf_save_LIBS="$LIBS"
2269                 CF_ADD_LIBS(${LD_RPATH_OPT}$libdir)
2270                 AC_TRY_LINK(, , cf_rpath_space=no, cf_rpath_space=yes)
2271                 LIBS="$cf_save_LIBS"
2272                 AC_MSG_RESULT($cf_rpath_space)
2273                 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
2274                 ;;
2275         esac
2276 fi
2277 ])dnl
2278 dnl ---------------------------------------------------------------------------
2279 dnl CF_LIBRARY_PATH version: 11 updated: 2021/01/01 13:31:04
2280 dnl ---------------
2281 dnl Construct a search-list of directories for a nonstandard library-file
2282 dnl
2283 dnl Parameters
2284 dnl     $1 = the variable to return as result
2285 dnl     $2 = the package name
2286 AC_DEFUN([CF_LIBRARY_PATH],
2287 [
2288 $1=
2289 cf_library_path_list=""
2290 if test -n "${LDFLAGS}${LIBS}" ; then
2291         for cf_library_path in $LDFLAGS $LIBS
2292         do
2293                 case "$cf_library_path" in
2294                 (-L*)
2295                         cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
2296                         CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
2297                         cf_library_path_list="$cf_library_path_list [$]$1"
2298                         ;;
2299                 esac
2300         done
2301 fi
2302
2303 CF_SUBDIR_PATH($1,$2,lib)
2304
2305 $1="$cf_library_path_list [$]$1"
2306 ])dnl
2307 dnl ---------------------------------------------------------------------------
2308 dnl CF_LIB_PREFIX version: 14 updated: 2021/01/01 13:31:04
2309 dnl -------------
2310 dnl Compute the library-prefix for the given host system
2311 dnl $1 = variable to set
2312 define([CF_LIB_PREFIX],
2313 [
2314         case "$cf_cv_system_name" in
2315         (OS/2*|os2*)
2316                 if test "$DFT_LWR_MODEL" = libtool; then
2317                         LIB_PREFIX='lib'
2318                 else
2319                         LIB_PREFIX=''
2320                 fi
2321                 ;;
2322         (*-msvc*)
2323                 LIB_PREFIX=''
2324                 ;;
2325         (*)     LIB_PREFIX='lib'
2326                 ;;
2327         esac
2328 ifelse($1,,,[$1=$LIB_PREFIX])
2329         AC_SUBST(LIB_PREFIX)
2330 ])dnl
2331 dnl ---------------------------------------------------------------------------
2332 dnl CF_LIB_SUFFIX version: 28 updated: 2021/01/01 16:53:59
2333 dnl -------------
2334 dnl Compute the library file-suffix from the given model name
2335 dnl $1 = model name
2336 dnl $2 = variable to set (the nominal library suffix)
2337 dnl $3 = dependency variable to set (actual filename)
2338 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
2339 AC_DEFUN([CF_LIB_SUFFIX],
2340 [
2341         case X$1 in
2342         (Xlibtool)
2343                 $2='.la'
2344                 $3=[$]$2
2345                 ;;
2346         (Xdebug)
2347                 case "$cf_cv_system_name" in
2348                 (*-msvc*)
2349                         $2='_g.lib'
2350                         ;;
2351                 (*)
2352                         $2='_g.a'
2353                         ;;
2354                 esac
2355                 $3=[$]$2
2356                 ;;
2357         (Xprofile)
2358                 case "$cf_cv_system_name" in
2359                 (*-msvc*)
2360                         $2='_p.lib'
2361                         ;;
2362                 (*)
2363                         $2='_p.a'
2364                         ;;
2365                 esac
2366                 $3=[$]$2
2367                 ;;
2368         (Xshared)
2369                 case "$cf_cv_system_name" in
2370                 (aix[[5-7]]*)
2371                         $2='.so'
2372                         $3=[$]$2
2373                         ;;
2374                 (*-msvc*)
2375                         $2='.dll'
2376                         $3='.dll.lib'
2377                         ;;
2378                 (cygwin*|msys*|mingw*)
2379                         $2='.dll'
2380                         $3='.dll.a'
2381                         ;;
2382                 (darwin*)
2383                         $2='.dylib'
2384                         $3=[$]$2
2385                         ;;
2386                 (hpux*)
2387                         case "$target" in
2388                         (ia64*)
2389                                 $2='.so'
2390                                 $3=[$]$2
2391                                 ;;
2392                         (*)
2393                                 $2='.sl'
2394                                 $3=[$]$2
2395                                 ;;
2396                         esac
2397                         ;;
2398                 (*)
2399                         $2='.so'
2400                         $3=[$]$2
2401                         ;;
2402                 esac
2403                 ;;
2404         (*)
2405                 case "$target" in
2406                 (*-msvc*)
2407                         $2='.lib'
2408                         ;;
2409                 (*)
2410                         $2='.a'
2411                         ;;
2412                 esac
2413                 $3=[$]$2
2414                 ;;
2415         esac
2416         if test -n "${LIB_SUFFIX}${EXTRA_SUFFIX}"
2417         then
2418                 $2="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$2}"
2419                 $3="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$3}"
2420         fi
2421 ])dnl
2422 dnl ---------------------------------------------------------------------------
2423 dnl CF_LIB_TYPE version: 5 updated: 2015/04/17 21:13:04
2424 dnl -----------
2425 dnl Compute the string to append to -library from the given model name
2426 dnl $1 = model name
2427 dnl $2 = variable to set
2428 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
2429 AC_DEFUN([CF_LIB_TYPE],
2430 [
2431         case $1 in
2432         (libtool) $2=''   ;;
2433         (normal)  $2=''   ;;
2434         (debug)   $2='_g' ;;
2435         (profile) $2='_p' ;;
2436         (shared)  $2=''   ;;
2437         esac
2438         test -n "$LIB_SUFFIX" && $2="${LIB_SUFFIX}[$]{$2}"
2439 ])dnl
2440 dnl ---------------------------------------------------------------------------
2441 dnl CF_LINK_DATAONLY version: 13 updated: 2020/02/08 15:59:30
2442 dnl ----------------
2443 dnl Some systems have a non-ANSI linker that doesn't pull in modules that have
2444 dnl only data (i.e., no functions), for example NeXT.  On those systems we'll
2445 dnl have to provide wrappers for global tables to ensure they're linked
2446 dnl properly.
2447 AC_DEFUN([CF_LINK_DATAONLY],
2448 [
2449 AC_MSG_CHECKING([if data-only library module links])
2450 AC_CACHE_VAL(cf_cv_link_dataonly,[
2451         rm -f conftest.a
2452         cat >conftest.$ac_ext <<EOF
2453 #line __oline__ "configure"
2454 int     testdata[[3]] = { 123, 456, 789 };
2455 EOF
2456         if AC_TRY_EVAL(ac_compile) ; then
2457                 mv conftest.o data.o && \
2458                 ( $AR $ARFLAGS conftest.a data.o ) 2>&AC_FD_CC 1>/dev/null
2459         fi
2460         rm -f conftest.$ac_ext data.o
2461         cat >conftest.$ac_ext <<EOF
2462 #line __oline__ "configure"
2463 int     testfunc(void)
2464 {
2465 #if defined(NeXT)
2466         ${cf_cv_main_return:-return}(1);        /* I'm told this linker is broken */
2467 #else
2468         extern int testdata[[3]];
2469         return testdata[[0]] == 123
2470            &&  testdata[[1]] == 456
2471            &&  testdata[[2]] == 789;
2472 #endif
2473 }
2474 EOF
2475         if AC_TRY_EVAL(ac_compile); then
2476                 mv conftest.o func.o && \
2477                 ( $AR $ARFLAGS conftest.a func.o ) 2>&AC_FD_CC 1>/dev/null
2478         fi
2479         rm -f conftest.$ac_ext func.o
2480         ( eval $RANLIB conftest.a ) 2>&AC_FD_CC >/dev/null
2481         cf_saveLIBS="$LIBS"
2482         LIBS="conftest.a $LIBS"
2483         AC_TRY_RUN([
2484         int main(void)
2485         {
2486                 extern int testfunc();
2487                 ${cf_cv_main_return:-return} (!testfunc());
2488         }
2489         ],
2490         [cf_cv_link_dataonly=yes],
2491         [cf_cv_link_dataonly=no],
2492         [cf_cv_link_dataonly=unknown])
2493         LIBS="$cf_saveLIBS"
2494         ])
2495 AC_MSG_RESULT($cf_cv_link_dataonly)
2496
2497 if test "$cf_cv_link_dataonly" = no ; then
2498         AC_DEFINE(BROKEN_LINKER,1,[if data-only library module does not link])
2499         BROKEN_LINKER=1
2500 fi
2501 AC_SUBST(BROKEN_LINKER)
2502
2503 ])dnl
2504 dnl ---------------------------------------------------------------------------
2505 dnl CF_MAKEFLAGS version: 21 updated: 2021/09/04 06:47:34
2506 dnl ------------
2507 dnl Some 'make' programs support ${MAKEFLAGS}, some ${MFLAGS}, to pass 'make'
2508 dnl options to lower-levels.  It is very useful for "make -n" -- if we have it.
2509 dnl (GNU 'make' does both, something POSIX 'make', which happens to make the
2510 dnl ${MAKEFLAGS} variable incompatible because it adds the assignments :-)
2511 AC_DEFUN([CF_MAKEFLAGS],
2512 [AC_REQUIRE([AC_PROG_FGREP])dnl
2513
2514 AC_CACHE_CHECK(for makeflags variable, cf_cv_makeflags,[
2515         cf_cv_makeflags=''
2516         for cf_option in '-${MAKEFLAGS}' '${MFLAGS}'
2517         do
2518                 cat >cf_makeflags.tmp <<CF_EOF
2519 SHELL = $SHELL
2520 all :
2521         @ echo '.$cf_option'
2522 CF_EOF
2523                 cf_result=`${MAKE:-make} -k -f cf_makeflags.tmp 2>/dev/null | ${FGREP-fgrep} -v "ing directory" | sed -e 's,[[  ]]*$,,'`
2524                 case "$cf_result" in
2525                 (.*k|.*kw)
2526                         cf_result="`${MAKE:-make} -k -f cf_makeflags.tmp CC=cc 2>/dev/null`"
2527                         case "$cf_result" in
2528                         (.*CC=*)        cf_cv_makeflags=
2529                                 ;;
2530                         (*)     cf_cv_makeflags=$cf_option
2531                                 ;;
2532                         esac
2533                         break
2534                         ;;
2535                 (.-)
2536                         ;;
2537                 (*)
2538                         CF_MSG_LOG(given option \"$cf_option\", no match \"$cf_result\")
2539                         ;;
2540                 esac
2541         done
2542         rm -f cf_makeflags.tmp
2543 ])
2544
2545 AC_SUBST(cf_cv_makeflags)
2546 ])dnl
2547 dnl ---------------------------------------------------------------------------
2548 dnl CF_MAKE_PHONY version: 3 updated: 2021/01/08 16:08:21
2549 dnl -------------
2550 dnl Check if the make-program handles a ".PHONY" target, e.g,. a target which
2551 dnl acts as a placeholder.
2552 dnl
2553 dnl The ".PHONY" feature was proposed in 2011 here
2554 dnl     https://www.austingroupbugs.net/view.php?id=523
2555 dnl and is scheduled for release in P1003.1 Issue 8 (late 2022).
2556 dnl
2557 dnl This is not supported by SVr4 make (or SunOS 4, 4.3SD, etc), but works with
2558 dnl a few others (i.e., GNU make and the non-POSIX "BSD" make):
2559 dnl
2560 dnl + This is a GNU make feature (since April 1988, but in turn from binutils,
2561 dnl   date unspecified).
2562 dnl
2563 dnl + It was adopted in NetBSD make in June 1995.
2564 dnl
2565 dnl + The other BSD make programs are derived from the NetBSD make (and for
2566 dnl   that reason are not actually different "implementations").
2567 dnl
2568 dnl + Some features of NetBSD make were actually adapted from pmake, which
2569 dnl   began as a modified GNU make starting in 1993.
2570 dnl
2571 dnl + Version 3.8 of the dmake program in January 1992 also implemented this
2572 dnl   GNU make extension, but is less well known than the BSD make.
2573 AC_DEFUN([CF_MAKE_PHONY],[
2574 AC_CACHE_CHECK(for \".PHONY\" make-support, cf_cv_make_PHONY,[
2575         rm -rf conftest*
2576         (
2577                 mkdir conftest || exit 1
2578                 cd conftest
2579                 cat >makefile <<'CF_EOF'
2580 .PHONY: always
2581 DATA=0
2582 always: always.out
2583         @echo "** making [$]@ [$](DATA)"
2584 once: once.out
2585         @echo "** making [$]@ [$](DATA)"
2586 always.out:
2587         @echo "** making [$]@ [$](DATA)"
2588         echo [$](DATA) > [$]@
2589 once.out:
2590         @echo "** making [$]@ [$](DATA)"
2591         echo [$](DATA) > [$]@
2592 CF_EOF
2593                 for cf_data in 1 2 3
2594                 do
2595                         ${MAKE:-make} always DATA=$cf_data
2596                         ${MAKE:-make} once   DATA=$cf_data
2597                         ${MAKE:-make} -t always once
2598                         if test -f always ; then
2599                                 echo "no (case 1)" > ../conftest.tmp
2600                         elif test ! -f always.out ; then
2601                                 echo "no (case 2)" > ../conftest.tmp
2602                         elif test ! -f once.out ; then
2603                                 echo "no (case 3)" > ../conftest.tmp
2604                         elif ! cmp -s always.out once.out ; then
2605                                 echo "no (case 4)" > ../conftest.tmp
2606                                 diff always.out once.out
2607                         else
2608                                 cf_check="`cat always.out`"
2609                                 if test "x$cf_check" != "x$cf_data" ; then
2610                                         echo "no (case 5)" > ../conftest.tmp
2611                                 else
2612                                         echo yes > ../conftest.tmp
2613                                         rm -f ./*.out
2614                                         continue
2615                                 fi
2616                         fi
2617                         break
2618                 done
2619         ) >&AC_FD_CC 2>&1
2620         cf_cv_make_PHONY="`cat conftest.tmp`"
2621         rm -rf conftest*
2622 ])
2623 MAKE_NO_PHONY="#"
2624 MAKE_PHONY="#"
2625 test "x$cf_cv_make_PHONY" = xyes && MAKE_PHONY=
2626 test "x$cf_cv_make_PHONY" != xyes && MAKE_NO_PHONY=
2627 AC_SUBST(MAKE_NO_PHONY)
2628 AC_SUBST(MAKE_PHONY)
2629 ])dnl
2630 dnl ---------------------------------------------------------------------------
2631 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
2632 dnl ------------
2633 dnl Generate tags/TAGS targets for makefiles.  Do not generate TAGS if we have
2634 dnl a monocase filesystem.
2635 AC_DEFUN([CF_MAKE_TAGS],[
2636 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
2637
2638 AC_CHECK_PROGS(CTAGS, exctags ctags)
2639 AC_CHECK_PROGS(ETAGS, exetags etags)
2640
2641 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
2642
2643 if test "$cf_cv_mixedcase" = yes ; then
2644         AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
2645 else
2646         MAKE_UPPER_TAGS=no
2647 fi
2648
2649 if test "$MAKE_UPPER_TAGS" = yes ; then
2650         MAKE_UPPER_TAGS=
2651 else
2652         MAKE_UPPER_TAGS="#"
2653 fi
2654
2655 if test "$MAKE_LOWER_TAGS" = yes ; then
2656         MAKE_LOWER_TAGS=
2657 else
2658         MAKE_LOWER_TAGS="#"
2659 fi
2660
2661 AC_SUBST(CTAGS)
2662 AC_SUBST(ETAGS)
2663
2664 AC_SUBST(MAKE_UPPER_TAGS)
2665 AC_SUBST(MAKE_LOWER_TAGS)
2666 ])dnl
2667 dnl ---------------------------------------------------------------------------
2668 dnl CF_MIXEDCASE_FILENAMES version: 9 updated: 2021/01/01 16:53:59
2669 dnl ----------------------
2670 dnl Check if the file-system supports mixed-case filenames.  If we're able to
2671 dnl create a lowercase name and see it as uppercase, it doesn't support that.
2672 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
2673 [
2674 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
2675 if test "$cross_compiling" = yes ; then
2676         case "$target_alias" in
2677         (*-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*|darwin*)
2678                 cf_cv_mixedcase=no
2679                 ;;
2680         (*)
2681                 cf_cv_mixedcase=yes
2682                 ;;
2683         esac
2684 else
2685         rm -f conftest CONFTEST
2686         echo test >conftest
2687         if test -f CONFTEST ; then
2688                 cf_cv_mixedcase=no
2689         else
2690                 cf_cv_mixedcase=yes
2691         fi
2692         rm -f conftest CONFTEST
2693 fi
2694 ])
2695 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES,1,[Define to 1 if filesystem supports mixed-case filenames.])
2696 ])dnl
2697 dnl ---------------------------------------------------------------------------
2698 dnl CF_MKSTEMP version: 11 updated: 2021/01/01 13:31:04
2699 dnl ----------
2700 dnl Check for a working mkstemp.  This creates two files, checks that they are
2701 dnl successfully created and distinct (AmigaOS apparently fails on the last).
2702 AC_DEFUN([CF_MKSTEMP],[
2703 AC_CHECK_HEADERS( \
2704 unistd.h \
2705 )
2706 AC_CACHE_CHECK(for working mkstemp, cf_cv_func_mkstemp,[
2707 rm -rf ./conftest*
2708 AC_TRY_RUN([
2709 #include <sys/types.h>
2710 #ifdef HAVE_UNISTD_H
2711 #include <unistd.h>
2712 #endif
2713 #include <stdlib.h>
2714 #include <stdio.h>
2715 #include <string.h>
2716 #include <sys/stat.h>
2717 int main(void)
2718 {
2719         char *tmpl = "conftestXXXXXX";
2720         char name[2][80];
2721         int n;
2722         int result = 0;
2723         int fd;
2724         struct stat sb;
2725
2726         umask(077);
2727         for (n = 0; n < 2; ++n) {
2728                 strcpy(name[n], tmpl);
2729                 if ((fd = mkstemp(name[n])) >= 0) {
2730                         if (!strcmp(name[n], tmpl)
2731                          || stat(name[n], &sb) != 0
2732                          || (sb.st_mode & S_IFMT) != S_IFREG
2733                          || (sb.st_mode & 077) != 0) {
2734                                 result = 1;
2735                         }
2736                         close(fd);
2737                 }
2738         }
2739         if (result == 0
2740          && !strcmp(name[0], name[1]))
2741                 result = 1;
2742         ${cf_cv_main_return:-return}(result);
2743 }
2744 ],[cf_cv_func_mkstemp=yes
2745 ],[cf_cv_func_mkstemp=no
2746 ],[cf_cv_func_mkstemp=maybe])
2747 ])
2748 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
2749         AC_CHECK_FUNC(mkstemp)
2750 fi
2751 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
2752         AC_DEFINE(HAVE_MKSTEMP,1,[Define to 1 if mkstemp() is available and working.])
2753 fi
2754 ])dnl
2755 dnl ---------------------------------------------------------------------------
2756 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
2757 dnl ----------
2758 dnl Write a debug message to config.log, along with the line number in the
2759 dnl configure script.
2760 AC_DEFUN([CF_MSG_LOG],[
2761 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
2762 ])dnl
2763 dnl ---------------------------------------------------------------------------
2764 dnl CF_NCURSES_ADDON version: 6 updated: 2021/01/04 19:33:05
2765 dnl ----------------
2766 dnl Configure an ncurses add-on, built outside the ncurses tree.
2767 AC_DEFUN([CF_NCURSES_ADDON],[
2768 AC_REQUIRE([CF_NCURSES_CONFIG])
2769
2770 AC_PROVIDE([CF_SUBST_NCURSES_VERSION])
2771
2772 AC_MSG_CHECKING(if you want wide-character code)
2773 AC_ARG_ENABLE(widec,
2774         [  --enable-widec          compile with wide-char/UTF-8 code],
2775         [with_widec=$enableval],
2776         [with_widec=no])
2777 AC_MSG_RESULT($with_widec)
2778 if test "$with_widec" = yes ; then
2779         CF_UTF8_LIB
2780         CF_NCURSES_CONFIG(ncursesw)
2781 else
2782         CF_NCURSES_CONFIG(ncurses)
2783 fi
2784
2785 if test "$NCURSES_CONFIG_PKG" != none ; then
2786         cf_version=`$PKG_CONFIG --modversion $NCURSES_CONFIG_PKG 2>/dev/null`
2787
2788         NCURSES_MAJOR=`echo "$cf_version" | sed -e 's/\..*//'`
2789         NCURSES_MINOR=`echo "$cf_version" | sed -e 's/^[[0-9]][[0-9]]*\.//' -e 's/\..*//'`
2790         NCURSES_PATCH=`echo "$cf_version" | sed -e 's/^[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.//'`
2791
2792         cf_cv_abi_version=`$PKG_CONFIG --variable=abi_version $NCURSES_CONFIG_PKG 2>/dev/null`
2793         if test -z "$cf_cv_abi_version"
2794         then
2795                 cf_cv_abi_version=`$PKG_CONFIG --variable=major_version $NCURSES_CONFIG_PKG 2>/dev/null`
2796         fi
2797
2798 elif test "$NCURSES_CONFIG" != none ; then
2799
2800         cf_version=`$NCURSES_CONFIG --version 2>/dev/null`
2801
2802         NCURSES_MAJOR=`echo "$cf_version" | sed -e 's/\..*//'`
2803         NCURSES_MINOR=`echo "$cf_version" | sed -e 's/^[[0-9]][[0-9]]*\.//' -e 's/\..*//'`
2804         NCURSES_PATCH=`echo "$cf_version" | sed -e 's/^[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.//'`
2805
2806         # ABI version is not available from headers
2807         cf_cv_abi_version=`$NCURSES_CONFIG --abi-version 2>/dev/null`
2808
2809 else
2810
2811         for cf_name in MAJOR MINOR PATCH
2812         do
2813         cat >conftest.$ac_ext <<CF_EOF
2814         #include <${cf_cv_ncurses_header:-curses.h}>
2815         AUTOCONF_$cf_name NCURSES_VERSION_$cf_name
2816 CF_EOF
2817                 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | fgrep AUTOCONF_$cf_name >conftest.out"
2818                 AC_TRY_EVAL(cf_try)
2819                 if test -f conftest.out ; then
2820                         cf_result=`sed -e "s/^.*AUTOCONF_${cf_name}[[   ]][[    ]]*//" conftest.out`
2821                         eval NCURSES_$cf_name=\"$cf_result\"
2822                         # cat conftest.$ac_ext
2823                         # cat conftest.out
2824                 fi
2825         done
2826
2827         cf_cv_abi_version=${NCURSES_MAJOR}
2828
2829 fi
2830
2831 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
2832
2833 dnl Show the computed version, for logging
2834 cf_cv_timestamp=`date`
2835
2836 AC_MSG_RESULT(Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp))
2837
2838 dnl We need these values in the generated headers
2839 AC_SUBST(NCURSES_MAJOR)
2840 AC_SUBST(NCURSES_MINOR)
2841 AC_SUBST(NCURSES_PATCH)
2842
2843 dnl We need these values in the generated makefiles
2844 AC_SUBST(cf_cv_rel_version)
2845 AC_SUBST(cf_cv_abi_version)
2846
2847 dnl FIXME - not needed for Ada95
2848 AC_SUBST(cf_cv_builtin_bool)
2849 AC_SUBST(cf_cv_header_stdbool_h)
2850 AC_SUBST(cf_cv_type_of_bool)dnl
2851
2852 ])
2853 dnl ---------------------------------------------------------------------------
2854 dnl CF_NCURSES_CC_CHECK version: 5 updated: 2020/12/31 20:19:42
2855 dnl -------------------
2856 dnl Check if we can compile with ncurses' header file
2857 dnl $1 is the cache variable to set
2858 dnl $2 is the header-file to include
2859 dnl $3 is the root name (ncurses or ncursesw)
2860 AC_DEFUN([CF_NCURSES_CC_CHECK],[
2861         AC_TRY_COMPILE([
2862 ]ifelse($3,ncursesw,[
2863 #define _XOPEN_SOURCE_EXTENDED
2864 #undef  HAVE_LIBUTF8_H  /* in case we used CF_UTF8_LIB */
2865 #define HAVE_LIBUTF8_H  /* to force ncurses' header file to use cchar_t */
2866 ])[
2867 #include <$2>],[
2868 #ifdef NCURSES_VERSION
2869 ]ifelse($3,ncursesw,[
2870 #ifndef WACS_BSSB
2871         make an error
2872 #endif
2873 ])[
2874 printf("%s\\n", NCURSES_VERSION);
2875 #else
2876 #ifdef __NCURSES_H
2877 printf("old\\n");
2878 #else
2879         make an error
2880 #endif
2881 #endif
2882         ]
2883         ,[$1=$2]
2884         ,[$1=no])
2885 ])dnl
2886 dnl ---------------------------------------------------------------------------
2887 dnl CF_NCURSES_CONFIG version: 28 updated: 2021/08/28 15:20:37
2888 dnl -----------------
2889 dnl Tie together the configure-script macros for ncurses, preferring these in
2890 dnl order:
2891 dnl a) ".pc" files for pkg-config, using $NCURSES_CONFIG_PKG
2892 dnl b) the "-config" script from ncurses, using $NCURSES_CONFIG
2893 dnl c) just plain libraries
2894 dnl
2895 dnl $1 is the root library name (default: "ncurses")
2896 AC_DEFUN([CF_NCURSES_CONFIG],[
2897 AC_REQUIRE([CF_PKG_CONFIG])
2898 cf_ncuconfig_root=ifelse($1,,ncurses,$1)
2899 cf_have_ncuconfig=no
2900
2901 if test "x${PKG_CONFIG:=none}" != xnone; then
2902         AC_MSG_CHECKING(pkg-config for $cf_ncuconfig_root)
2903         if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
2904                 AC_MSG_RESULT(yes)
2905
2906                 AC_MSG_CHECKING(if the $cf_ncuconfig_root package files work)
2907                 cf_have_ncuconfig=unknown
2908
2909                 cf_save_CFLAGS="$CFLAGS"
2910                 cf_save_CPPFLAGS="$CPPFLAGS"
2911                 cf_save_LIBS="$LIBS"
2912
2913                 cf_pkg_cflags="`$PKG_CONFIG --cflags $cf_ncuconfig_root`"
2914                 cf_pkg_libs="`$PKG_CONFIG --libs $cf_ncuconfig_root`"
2915
2916                 # while -W for passing linker flags is prevalent, it is not "standard".
2917                 # At least one wrapper for c89/c99 (in Apple's xcode) has its own
2918                 # incompatible _and_ non-standard -W option which gives an error.  Work
2919                 # around that pitfall.
2920                 case "x${CC}@@${cf_pkg_libs}@${cf_pkg_cflags}" in
2921                 (x*c[[89]]9@@*-W*)
2922                         CF_ADD_CFLAGS($cf_pkg_cflags)
2923                         CF_ADD_LIBS($cf_pkg_libs)
2924
2925                         AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
2926                                 [initscr(); mousemask(0,0); tigetstr((char *)0);],
2927                                 [AC_TRY_RUN([#include <${cf_cv_ncurses_header:-curses.h}>
2928                                         int main(void)
2929                                         { const char *xx = curses_version(); return (xx == 0); }],
2930                                         [cf_test_ncuconfig=yes],
2931                                         [cf_test_ncuconfig=no],
2932                                         [cf_test_ncuconfig=maybe])],
2933                                 [cf_test_ncuconfig=no])
2934
2935                         CFLAGS="$cf_save_CFLAGS"
2936                         CPPFLAGS="$cf_save_CPPFLAGS"
2937                         LIBS="$cf_save_LIBS"
2938
2939                         if test "x$cf_test_ncuconfig" != xyes; then
2940                                 cf_temp=`echo "x$cf_pkg_cflags" | sed -e s/^x// -e 's/-W[[^     ]]*//g'`
2941                                 cf_pkg_cflags="$cf_temp"
2942                                 cf_temp=`echo "x$cf_pkg_libs" | sed -e s/^x// -e 's/-W[[^       ]]*//g'`
2943                                 cf_pkg_libs="$cf_temp"
2944                         fi
2945                         ;;
2946                 esac
2947
2948                 CF_APPEND_CFLAGS($cf_pkg_cflags)
2949                 CF_ADD_LIBS($cf_pkg_libs)
2950
2951                 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
2952                         [initscr(); mousemask(0,0); tigetstr((char *)0);],
2953                         [AC_TRY_RUN([#include <${cf_cv_ncurses_header:-curses.h}>
2954                                 int main(void)
2955                                 { const char *xx = curses_version(); return (xx == 0); }],
2956                                 [cf_have_ncuconfig=yes],
2957                                 [cf_have_ncuconfig=no],
2958                                 [cf_have_ncuconfig=maybe])],
2959                         [cf_have_ncuconfig=no])
2960                 AC_MSG_RESULT($cf_have_ncuconfig)
2961                 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
2962                 if test "$cf_have_ncuconfig" != "yes"
2963                 then
2964                         CPPFLAGS="$cf_save_CPPFLAGS"
2965                         LIBS="$cf_save_LIBS"
2966                         NCURSES_CONFIG_PKG=none
2967                 else
2968                         AC_DEFINE(NCURSES,1,[Define to 1 if we are using ncurses headers/libraries])
2969                         NCURSES_CONFIG_PKG=$cf_ncuconfig_root
2970                         CF_TERM_HEADER
2971                 fi
2972
2973         else
2974                 AC_MSG_RESULT(no)
2975                 NCURSES_CONFIG_PKG=none
2976         fi
2977 else
2978         NCURSES_CONFIG_PKG=none
2979 fi
2980
2981 if test "x$cf_have_ncuconfig" = "xno"; then
2982         cf_ncurses_config="${cf_ncuconfig_root}${NCURSES_CONFIG_SUFFIX}-config"; echo "Looking for ${cf_ncurses_config}"
2983
2984         CF_ACVERSION_CHECK(2.52,
2985                 [AC_CHECK_TOOLS(NCURSES_CONFIG, ${cf_ncurses_config} ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config, none)],
2986                 [AC_PATH_PROGS(NCURSES_CONFIG,  ${cf_ncurses_config} ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config, none)])
2987
2988         if test "$NCURSES_CONFIG" != none ; then
2989
2990                 CF_APPEND_CFLAGS(`$NCURSES_CONFIG --cflags`)
2991                 CF_ADD_LIBS(`$NCURSES_CONFIG --libs`)
2992
2993                 # even with config script, some packages use no-override for curses.h
2994                 CF_CURSES_HEADER(ifelse($1,,ncurses,$1))
2995
2996                 dnl like CF_NCURSES_CPPFLAGS
2997                 AC_DEFINE(NCURSES,1,[Define to 1 if we are using ncurses headers/libraries])
2998
2999                 dnl like CF_NCURSES_LIBS
3000                 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_ncuconfig_root)
3001                 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
3002
3003                 dnl like CF_NCURSES_VERSION
3004                 cf_cv_ncurses_version="`$NCURSES_CONFIG --version`"
3005
3006         else
3007
3008                 CF_NCURSES_CPPFLAGS(ifelse($1,,ncurses,$1))
3009                 CF_NCURSES_LIBS(ifelse($1,,ncurses,$1))
3010
3011         fi
3012 else
3013         NCURSES_CONFIG=none
3014 fi
3015 ])dnl
3016 dnl ---------------------------------------------------------------------------
3017 dnl CF_NCURSES_CPPFLAGS version: 22 updated: 2021/01/02 09:31:20
3018 dnl -------------------
3019 dnl Look for the SVr4 curses clone 'ncurses' in the standard places, adjusting
3020 dnl the CPPFLAGS variable so we can include its header.
3021 dnl
3022 dnl The header files may be installed as either curses.h, or ncurses.h (would
3023 dnl be obsolete, except that some packagers prefer this name to distinguish it
3024 dnl from a "native" curses implementation).  If not installed for overwrite,
3025 dnl the curses.h file would be in an ncurses subdirectory (e.g.,
3026 dnl /usr/include/ncurses), but someone may have installed overwriting the
3027 dnl vendor's curses.  Only very old versions (pre-1.9.2d, the first autoconf'd
3028 dnl version) of ncurses don't define either __NCURSES_H or NCURSES_VERSION in
3029 dnl the header.
3030 dnl
3031 dnl If the installer has set $CFLAGS or $CPPFLAGS so that the ncurses header
3032 dnl is already in the include-path, don't even bother with this, since we cannot
3033 dnl easily determine which file it is.  In this case, it has to be <curses.h>.
3034 dnl
3035 dnl The optional parameter gives the root name of the library, in case it is
3036 dnl not installed as the default curses library.  That is how the
3037 dnl wide-character version of ncurses is installed.
3038 AC_DEFUN([CF_NCURSES_CPPFLAGS],
3039 [AC_REQUIRE([CF_WITH_CURSES_DIR])
3040
3041 AC_PROVIDE([CF_CURSES_CPPFLAGS])dnl
3042 cf_ncuhdr_root=ifelse($1,,ncurses,$1)
3043
3044 test -n "$cf_cv_curses_dir" && \
3045 test "$cf_cv_curses_dir" != "no" && { \
3046   CF_ADD_INCDIR($cf_cv_curses_dir/include/$cf_ncuhdr_root)
3047 }
3048
3049 AC_CACHE_CHECK(for $cf_ncuhdr_root header in include-path, cf_cv_ncurses_h,[
3050         cf_header_list="$cf_ncuhdr_root/curses.h $cf_ncuhdr_root/ncurses.h"
3051         { test "$cf_ncuhdr_root" = ncurses || test "$cf_ncuhdr_root" = ncursesw; } && cf_header_list="$cf_header_list curses.h ncurses.h"
3052         for cf_header in $cf_header_list
3053         do
3054                 CF_NCURSES_CC_CHECK(cf_cv_ncurses_h,$cf_header,$1)
3055                 test "$cf_cv_ncurses_h" != no && break
3056         done
3057 ])
3058
3059 CF_NCURSES_HEADER
3060 CF_TERM_HEADER
3061
3062 # some applications need this, but should check for NCURSES_VERSION
3063 AC_DEFINE(NCURSES,1,[Define to 1 if we are using ncurses headers/libraries])
3064
3065 CF_NCURSES_VERSION
3066 ])dnl
3067 dnl ---------------------------------------------------------------------------
3068 dnl CF_NCURSES_HEADER version: 7 updated: 2021/01/04 19:33:05
3069 dnl -----------------
3070 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
3071 dnl variations of ncurses' installs.
3072 dnl
3073 dnl See also CF_CURSES_HEADER, which sets the same cache variable.
3074 AC_DEFUN([CF_NCURSES_HEADER],[
3075
3076 if test "$cf_cv_ncurses_h" != no ; then
3077         cf_cv_ncurses_header=$cf_cv_ncurses_h
3078 else
3079
3080 AC_CACHE_CHECK(for $cf_ncuhdr_root include-path, cf_cv_ncurses_h2,[
3081         test -n "$verbose" && echo
3082         CF_HEADER_PATH(cf_search,$cf_ncuhdr_root)
3083         test -n "$verbose" && echo "search path $cf_search"
3084         cf_save2_CPPFLAGS="$CPPFLAGS"
3085         for cf_incdir in $cf_search
3086         do
3087                 CF_ADD_INCDIR($cf_incdir)
3088                 for cf_header in \
3089                         ncurses.h \
3090                         curses.h
3091                 do
3092                         CF_NCURSES_CC_CHECK(cf_cv_ncurses_h2,$cf_header,$1)
3093                         if test "$cf_cv_ncurses_h2" != no ; then
3094                                 cf_cv_ncurses_h2=$cf_incdir/$cf_header
3095                                 test -n "$verbose" && echo $ECHO_N "    ... found $ECHO_C" 1>&AC_FD_MSG
3096                                 break
3097                         fi
3098                         test -n "$verbose" && echo "    ... tested $cf_incdir/$cf_header" 1>&AC_FD_MSG
3099                 done
3100                 CPPFLAGS="$cf_save2_CPPFLAGS"
3101                 test "$cf_cv_ncurses_h2" != no && break
3102         done
3103         test "$cf_cv_ncurses_h2" = no && AC_MSG_ERROR(not found)
3104         ])
3105
3106         CF_DIRNAME(cf_1st_incdir,$cf_cv_ncurses_h2)
3107         cf_cv_ncurses_header="`basename "$cf_cv_ncurses_h2"`"
3108         if test "`basename "$cf_1st_incdir"`" = "$cf_ncuhdr_root" ; then
3109                 cf_cv_ncurses_header="$cf_ncuhdr_root/$cf_cv_ncurses_header"
3110         fi
3111         CF_ADD_INCDIR($cf_1st_incdir)
3112
3113 fi
3114
3115 # Set definitions to allow ifdef'ing for ncurses.h
3116
3117 case "$cf_cv_ncurses_header" in
3118 (*ncurses.h)
3119         AC_DEFINE(HAVE_NCURSES_H,1,[Define to 1 if we have ncurses.h])
3120         ;;
3121 esac
3122
3123 case "$cf_cv_ncurses_header" in
3124 (ncurses/curses.h|ncurses/ncurses.h)
3125         AC_DEFINE(HAVE_NCURSES_NCURSES_H,1,[Define to 1 if we have ncurses/ncurses.h])
3126         ;;
3127 (ncursesw/curses.h|ncursesw/ncurses.h)
3128         AC_DEFINE(HAVE_NCURSESW_NCURSES_H,1,[Define to 1 if we have ncursesw/ncurses.h])
3129         ;;
3130 esac
3131
3132 ])dnl
3133 dnl ---------------------------------------------------------------------------
3134 dnl CF_NCURSES_LIBS version: 21 updated: 2021/09/04 06:37:12
3135 dnl ---------------
3136 dnl Look for the ncurses library.  This is a little complicated on Linux,
3137 dnl because it may be linked with the gpm (general purpose mouse) library.
3138 dnl Some distributions have gpm linked with (bsd) curses, which makes it
3139 dnl unusable with ncurses.  However, we don't want to link with gpm unless
3140 dnl ncurses has a dependency, since gpm is normally set up as a shared library,
3141 dnl and the linker will record a dependency.
3142 dnl
3143 dnl The optional parameter gives the root name of the library, in case it is
3144 dnl not installed as the default curses library.  That is how the
3145 dnl wide-character version of ncurses is installed.
3146 AC_DEFUN([CF_NCURSES_LIBS],
3147 [AC_REQUIRE([CF_NCURSES_CPPFLAGS])
3148
3149 cf_nculib_root=ifelse($1,,ncurses,$1)
3150         # This works, except for the special case where we find gpm, but
3151         # ncurses is in a nonstandard location via $LIBS, and we really want
3152         # to link gpm.
3153 cf_ncurses_LIBS=""
3154 cf_ncurses_SAVE="$LIBS"
3155 AC_CHECK_LIB(gpm,Gpm_Open,
3156         [AC_CHECK_LIB(gpm,initscr,
3157                 [LIBS="$cf_ncurses_SAVE"],
3158                 [cf_ncurses_LIBS="-lgpm"])])
3159
3160 case "$host_os" in
3161 (freebsd*)
3162         # This is only necessary if you are linking against an obsolete
3163         # version of ncurses (but it should do no harm, since it is static).
3164         if test "$cf_nculib_root" = ncurses ; then
3165                 AC_CHECK_LIB(mytinfo,tgoto,[cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"])
3166         fi
3167         ;;
3168 esac
3169
3170 CF_ADD_LIBS($cf_ncurses_LIBS)
3171
3172 if test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no"
3173 then
3174         CF_ADD_LIBS(-l$cf_nculib_root)
3175 else
3176         CF_FIND_LIBRARY($cf_nculib_root,$cf_nculib_root,
3177                 [#include <${cf_cv_ncurses_header:-curses.h}>],
3178                 [initscr()],
3179                 initscr)
3180 fi
3181
3182 if test -n "$cf_ncurses_LIBS" ; then
3183         AC_MSG_CHECKING(if we can link $cf_nculib_root without $cf_ncurses_LIBS)
3184         cf_ncurses_SAVE="$LIBS"
3185         for p in $cf_ncurses_LIBS ; do
3186                 q=`echo "$LIBS" | sed -e "s%$p %%" -e "s%$p$%%"`
3187                 if test "$q" != "$LIBS" ; then
3188                         LIBS="$q"
3189                 fi
3190         done
3191         AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
3192                 [initscr(); mousemask(0,0); tigetstr((char *)0);],
3193                 [AC_MSG_RESULT(yes)],
3194                 [AC_MSG_RESULT(no)
3195                  LIBS="$cf_ncurses_SAVE"])
3196 fi
3197
3198 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_nculib_root)
3199 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
3200 ])dnl
3201 dnl ---------------------------------------------------------------------------
3202 dnl CF_NCURSES_VERSION version: 16 updated: 2020/12/31 20:19:42
3203 dnl ------------------
3204 dnl Check for the version of ncurses, to aid in reporting bugs, etc.
3205 dnl Call CF_CURSES_CPPFLAGS first, or CF_NCURSES_CPPFLAGS.  We don't use
3206 dnl AC_REQUIRE since that does not work with the shell's if/then/else/fi.
3207 AC_DEFUN([CF_NCURSES_VERSION],
3208 [
3209 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
3210 AC_CACHE_CHECK(for ncurses version, cf_cv_ncurses_version,[
3211         cf_cv_ncurses_version=no
3212         cf_tempfile=out$$
3213         rm -f "$cf_tempfile"
3214         AC_TRY_RUN([
3215 #include <${cf_cv_ncurses_header:-curses.h}>
3216 #include <stdio.h>
3217 int main(void)
3218 {
3219         FILE *fp = fopen("$cf_tempfile", "w");
3220 #ifdef NCURSES_VERSION
3221 # ifdef NCURSES_VERSION_PATCH
3222         fprintf(fp, "%s.%d\\n", NCURSES_VERSION, NCURSES_VERSION_PATCH);
3223 # else
3224         fprintf(fp, "%s\\n", NCURSES_VERSION);
3225 # endif
3226 #else
3227 # ifdef __NCURSES_H
3228         fprintf(fp, "old\\n");
3229 # else
3230         make an error
3231 # endif
3232 #endif
3233         ${cf_cv_main_return:-return}(0);
3234 }],[
3235         cf_cv_ncurses_version=`cat $cf_tempfile`],,[
3236
3237         # This will not work if the preprocessor splits the line after the
3238         # Autoconf token.  The 'unproto' program does that.
3239         cat > "conftest.$ac_ext" <<EOF
3240 #include <${cf_cv_ncurses_header:-curses.h}>
3241 #undef Autoconf
3242 #ifdef NCURSES_VERSION
3243 Autoconf NCURSES_VERSION
3244 #else
3245 #ifdef __NCURSES_H
3246 Autoconf "old"
3247 #endif
3248 ;
3249 #endif
3250 EOF
3251         cf_try="$ac_cpp conftest.$ac_ext 2>&AC_FD_CC | grep '^Autoconf ' >conftest.out"
3252         AC_TRY_EVAL(cf_try)
3253         if test -f conftest.out ; then
3254                 cf_out=`sed -e 's%^Autoconf %%' -e 's%^[[^"]]*"%%' -e 's%".*%%' conftest.out`
3255                 test -n "$cf_out" && cf_cv_ncurses_version="$cf_out"
3256                 rm -f conftest.out
3257         fi
3258 ])
3259         rm -f "$cf_tempfile"
3260 ])
3261 test "$cf_cv_ncurses_version" = no || AC_DEFINE(NCURSES,1,[Define to 1 if we are using ncurses headers/libraries])
3262 ])dnl
3263 dnl ---------------------------------------------------------------------------
3264 dnl CF_OBJ_SUBDIR version: 8 updated: 2021/01/01 13:31:04
3265 dnl -------------
3266 dnl Compute the object-directory name from the given model name
3267 AC_DEFUN([CF_OBJ_SUBDIR],
3268 [
3269         case $1 in
3270         (libtool) $2='obj_lo'  ;;
3271         (normal)  $2='objects' ;;
3272         (debug)   $2='obj_g' ;;
3273         (profile) $2='obj_p' ;;
3274         (shared)
3275                 case "$cf_cv_system_name" in
3276                 (cygwin|msys)
3277                         $2='objects' ;;
3278                 (*)
3279                         $2='obj_s' ;;
3280                 esac
3281         esac
3282 ])dnl
3283 dnl ---------------------------------------------------------------------------
3284 dnl CF_PATHSEP version: 8 updated: 2021/01/01 13:31:04
3285 dnl ----------
3286 dnl Provide a value for the $PATH and similar separator (or amend the value
3287 dnl as provided in autoconf 2.5x).
3288 AC_DEFUN([CF_PATHSEP],
3289 [
3290         AC_MSG_CHECKING(for PATH separator)
3291         case "$cf_cv_system_name" in
3292         (os2*)  PATH_SEPARATOR=';'  ;;
3293         (*)     ${PATH_SEPARATOR:=':'}  ;;
3294         esac
3295 ifelse([$1],,,[$1=$PATH_SEPARATOR])
3296         AC_SUBST(PATH_SEPARATOR)
3297         AC_MSG_RESULT($PATH_SEPARATOR)
3298 ])dnl
3299 dnl ---------------------------------------------------------------------------
3300 dnl CF_PATH_SYNTAX version: 18 updated: 2020/12/31 18:40:20
3301 dnl --------------
3302 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
3303 dnl begins with one of the prefix/exec_prefix variables, and then again if the
3304 dnl result begins with 'NONE'.  This is necessary to work around autoconf's
3305 dnl delayed evaluation of those symbols.
3306 AC_DEFUN([CF_PATH_SYNTAX],[
3307 if test "x$prefix" != xNONE; then
3308         cf_path_syntax="$prefix"
3309 else
3310         cf_path_syntax="$ac_default_prefix"
3311 fi
3312
3313 case ".[$]$1" in
3314 (.\[$]\(*\)*|.\'*\'*)
3315         ;;
3316 (..|./*|.\\*)
3317         ;;
3318 (.[[a-zA-Z]]:[[\\/]]*) # OS/2 EMX
3319         ;;
3320 (.\[$]\{*prefix\}*|.\[$]\{*dir\}*)
3321         eval $1="[$]$1"
3322         case ".[$]$1" in
3323         (.NONE/*)
3324                 $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
3325                 ;;
3326         esac
3327         ;;
3328 (.no|.NONE/*)
3329         $1=`echo "[$]$1" | sed -e s%NONE%$cf_path_syntax%`
3330         ;;
3331 (*)
3332         ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
3333         ;;
3334 esac
3335 ])dnl
3336 dnl ---------------------------------------------------------------------------
3337 dnl CF_PKG_CONFIG version: 12 updated: 2021/10/10 20:18:09
3338 dnl -------------
3339 dnl Check for the package-config program, unless disabled by command-line.
3340 dnl
3341 dnl Sets $PKG_CONFIG to the pathname of the pkg-config program.
3342 AC_DEFUN([CF_PKG_CONFIG],
3343 [
3344 AC_MSG_CHECKING(if you want to use pkg-config)
3345 AC_ARG_WITH(pkg-config,
3346         [  --with-pkg-config{=path} enable/disable use of pkg-config],
3347         [cf_pkg_config=$withval],
3348         [cf_pkg_config=yes])
3349 AC_MSG_RESULT($cf_pkg_config)
3350
3351 case "$cf_pkg_config" in
3352 (no)
3353         PKG_CONFIG=none
3354         ;;
3355 (yes)
3356         CF_ACVERSION_CHECK(2.52,
3357                 [AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)],
3358                 [AC_PATH_PROG(PKG_CONFIG, pkg-config, none)])
3359         ;;
3360 (*)
3361         PKG_CONFIG=$withval
3362         ;;
3363 esac
3364
3365 test -z "$PKG_CONFIG" && PKG_CONFIG=none
3366 if test "$PKG_CONFIG" != none ; then
3367         CF_PATH_SYNTAX(PKG_CONFIG)
3368 elif test "x$cf_pkg_config" != xno ; then
3369         AC_MSG_WARN(pkg-config is not installed)
3370 fi
3371
3372 AC_SUBST(PKG_CONFIG)
3373 ])dnl
3374 dnl ---------------------------------------------------------------------------
3375 dnl CF_POSIX_C_SOURCE version: 11 updated: 2018/12/31 20:46:17
3376 dnl -----------------
3377 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
3378 dnl
3379 dnl     POSIX.1-1990                            _POSIX_SOURCE
3380 dnl     POSIX.1-1990 and                        _POSIX_SOURCE and
3381 dnl             POSIX.2-1992 C-Language                 _POSIX_C_SOURCE=2
3382 dnl             Bindings Option
3383 dnl     POSIX.1b-1993                           _POSIX_C_SOURCE=199309L
3384 dnl     POSIX.1c-1996                           _POSIX_C_SOURCE=199506L
3385 dnl     X/Open 2000                             _POSIX_C_SOURCE=200112L
3386 dnl
3387 dnl Parameters:
3388 dnl     $1 is the nominal value for _POSIX_C_SOURCE
3389 AC_DEFUN([CF_POSIX_C_SOURCE],
3390 [AC_REQUIRE([CF_POSIX_VISIBLE])dnl
3391
3392 if test "$cf_cv_posix_visible" = no; then
3393
3394 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
3395
3396 cf_save_CFLAGS="$CFLAGS"
3397 cf_save_CPPFLAGS="$CPPFLAGS"
3398
3399 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
3400 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
3401
3402 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
3403         CF_MSG_LOG(if the symbol is already defined go no further)
3404         AC_TRY_COMPILE([#include <sys/types.h>],[
3405 #ifndef _POSIX_C_SOURCE
3406 make an error
3407 #endif],
3408         [cf_cv_posix_c_source=no],
3409         [cf_want_posix_source=no
3410          case .$cf_POSIX_C_SOURCE in
3411          (.[[12]]??*)
3412                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
3413                 ;;
3414          (.2)
3415                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
3416                 cf_want_posix_source=yes
3417                 ;;
3418          (.*)
3419                 cf_want_posix_source=yes
3420                 ;;
3421          esac
3422          if test "$cf_want_posix_source" = yes ; then
3423                 AC_TRY_COMPILE([#include <sys/types.h>],[
3424 #ifdef _POSIX_SOURCE
3425 make an error
3426 #endif],[],
3427                 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
3428          fi
3429          CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
3430          CFLAGS="$cf_trim_CFLAGS"
3431          CPPFLAGS="$cf_trim_CPPFLAGS"
3432          CF_APPEND_TEXT(CPPFLAGS,$cf_cv_posix_c_source)
3433          CF_MSG_LOG(if the second compile does not leave our definition intact error)
3434          AC_TRY_COMPILE([#include <sys/types.h>],[
3435 #ifndef _POSIX_C_SOURCE
3436 make an error
3437 #endif],,
3438          [cf_cv_posix_c_source=no])
3439          CFLAGS="$cf_save_CFLAGS"
3440          CPPFLAGS="$cf_save_CPPFLAGS"
3441         ])
3442 ])
3443
3444 if test "$cf_cv_posix_c_source" != no ; then
3445         CFLAGS="$cf_trim_CFLAGS"
3446         CPPFLAGS="$cf_trim_CPPFLAGS"
3447         CF_ADD_CFLAGS($cf_cv_posix_c_source)
3448 fi
3449
3450 fi # cf_cv_posix_visible
3451
3452 ])dnl
3453 dnl ---------------------------------------------------------------------------
3454 dnl CF_POSIX_VISIBLE version: 1 updated: 2018/12/31 20:46:17
3455 dnl ----------------
3456 dnl POSIX documents test-macros which an application may set before any system
3457 dnl headers are included to make features available.
3458 dnl
3459 dnl Some BSD platforms (originally FreeBSD, but copied by a few others)
3460 dnl diverged from POSIX in 2002 by setting symbols which make all of the most
3461 dnl recent features visible in the system header files unless the application
3462 dnl overrides the corresponding test-macros.  Doing that introduces portability
3463 dnl problems.
3464 dnl
3465 dnl This macro makes a special check for the symbols used for this, to avoid a
3466 dnl conflicting definition.
3467 AC_DEFUN([CF_POSIX_VISIBLE],
3468 [
3469 AC_CACHE_CHECK(if the POSIX test-macros are already defined,cf_cv_posix_visible,[
3470 AC_TRY_COMPILE([#include <stdio.h>],[
3471 #if defined(__POSIX_VISIBLE) && ((__POSIX_VISIBLE - 0L) > 0) \
3472         && defined(__XSI_VISIBLE) && ((__XSI_VISIBLE - 0L) > 0) \
3473         && defined(__BSD_VISIBLE) && ((__BSD_VISIBLE - 0L) > 0) \
3474         && defined(__ISO_C_VISIBLE) && ((__ISO_C_VISIBLE - 0L) > 0)
3475 #error conflicting symbols found
3476 #endif
3477 ],[cf_cv_posix_visible=no],[cf_cv_posix_visible=yes])
3478 ])
3479 ])dnl
3480 dnl ---------------------------------------------------------------------------
3481 dnl CF_PROG_AR version: 1 updated: 2009/01/01 20:15:22
3482 dnl ----------
3483 dnl Check for archiver "ar".
3484 AC_DEFUN([CF_PROG_AR],[
3485 AC_CHECK_TOOL(AR, ar, ar)
3486 ])
3487 dnl ---------------------------------------------------------------------------
3488 dnl CF_PROG_AWK version: 1 updated: 2006/09/16 11:40:59
3489 dnl -----------
3490 dnl Check for awk, ensure that the check found something.
3491 AC_DEFUN([CF_PROG_AWK],
3492 [
3493 AC_PROG_AWK
3494 test -z "$AWK" && AC_MSG_ERROR(No awk program found)
3495 ])dnl
3496 dnl ---------------------------------------------------------------------------
3497 dnl CF_PROG_CC version: 5 updated: 2019/12/31 08:53:54
3498 dnl ----------
3499 dnl standard check for CC, plus followup sanity checks
3500 dnl $1 = optional parameter to pass to AC_PROG_CC to specify compiler name
3501 AC_DEFUN([CF_PROG_CC],[
3502 CF_ACVERSION_CHECK(2.53,
3503         [AC_MSG_WARN(this will incorrectly handle gnatgcc choice)
3504          AC_REQUIRE([AC_PROG_CC])],
3505         [])
3506 ifelse($1,,[AC_PROG_CC],[AC_PROG_CC($1)])
3507 CF_GCC_VERSION
3508 CF_ACVERSION_CHECK(2.52,
3509         [AC_PROG_CC_STDC],
3510         [CF_ANSI_CC_REQD])
3511 CF_CC_ENV_FLAGS
3512 ])dnl
3513 dnl ---------------------------------------------------------------------------
3514 dnl CF_PROG_CC_C_O version: 6 updated: 2021/01/01 13:31:04
3515 dnl --------------
3516 dnl Analogous to AC_PROG_CC_C_O, but more useful: tests only $CC, ensures that
3517 dnl the output file can be renamed, and allows for a shell variable that can
3518 dnl be used later.  The parameter is either CC or CXX.  The result is the
3519 dnl cache variable:
3520 dnl     $cf_cv_prog_CC_c_o
3521 dnl     $cf_cv_prog_CXX_c_o
3522 dnl
3523 dnl $1 = compiler
3524 dnl $2 = compiler options, if any
3525 AC_DEFUN([CF_PROG_CC_C_O],
3526 [AC_REQUIRE([AC_PROG_CC])dnl
3527 AC_MSG_CHECKING([whether [$]$1 understands -c and -o together])
3528 AC_CACHE_VAL(cf_cv_prog_$1_c_o,
3529 [
3530 cat > conftest.$ac_ext <<CF_EOF
3531 int main(void)
3532 {
3533         ${cf_cv_main_return:-return}(0);
3534 }
3535 CF_EOF
3536 # We do the test twice because some compilers refuse to overwrite an
3537 # existing .o file with -o, though they will create one.
3538 ac_try='[$]$1 $2 -c conftest.$ac_ext -o conftest2.$ac_objext >&AC_FD_CC'
3539 if AC_TRY_EVAL(ac_try) &&
3540   test -f conftest2.$ac_objext && AC_TRY_EVAL(ac_try);
3541 then
3542   eval cf_cv_prog_$1_c_o=yes
3543 else
3544   eval cf_cv_prog_$1_c_o=no
3545 fi
3546 rm -rf ./conftest*
3547 ])dnl
3548 if test "$cf_cv_prog_$1_c_o" = yes; then
3549   AC_MSG_RESULT([yes])
3550 else
3551   AC_MSG_RESULT([no])
3552 fi
3553 ])dnl
3554 dnl ---------------------------------------------------------------------------
3555 dnl CF_PROG_EGREP version: 2 updated: 2015/04/18 08:56:57
3556 dnl -------------
3557 dnl AC_PROG_EGREP was introduced in autoconf 2.53.
3558 dnl This macro adds a check to ensure the script found something.
3559 AC_DEFUN([CF_PROG_EGREP],
3560 [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep],
3561         [if echo a | (grep -E '(a|b)') >/dev/null 2>&1
3562                 then ac_cv_prog_egrep='grep -E'
3563                 else ac_cv_prog_egrep='egrep'
3564         fi])
3565         EGREP=$ac_cv_prog_egrep
3566         AC_SUBST([EGREP])
3567         test -z "$EGREP" && AC_MSG_ERROR(No egrep program found)
3568 ])dnl
3569 dnl ---------------------------------------------------------------------------
3570 dnl CF_PROG_EXT version: 15 updated: 2021/01/02 09:31:20
3571 dnl -----------
3572 dnl Compute $PROG_EXT, used for non-Unix ports, such as OS/2 EMX.
3573 AC_DEFUN([CF_PROG_EXT],
3574 [
3575 AC_REQUIRE([CF_CHECK_CACHE])
3576 case "$cf_cv_system_name" in
3577 (os2*)
3578         CFLAGS="$CFLAGS -Zmt"
3579         CF_APPEND_TEXT(CPPFLAGS,-D__ST_MT_ERRNO__)
3580         CXXFLAGS="$CXXFLAGS -Zmt"
3581         # autoconf's macro sets -Zexe and suffix both, which conflict:w
3582         LDFLAGS="$LDFLAGS -Zmt -Zcrtdll"
3583         ac_cv_exeext=.exe
3584         ;;
3585 esac
3586
3587 AC_EXEEXT
3588 AC_OBJEXT
3589
3590 PROG_EXT="$EXEEXT"
3591 AC_SUBST(PROG_EXT)
3592 test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT",[Define to the program extension (normally blank)])
3593 ])dnl
3594 dnl ---------------------------------------------------------------------------
3595 dnl CF_PROG_GNAT version: 12 updated: 2021/01/02 17:09:14
3596 dnl ------------
3597 dnl Check for gnat/gnatmake/etc, ensure that the toolset is complete.
3598 AC_DEFUN([CF_PROG_GNAT],[
3599 for cf_prog_gnat in gnat gnatmake gprconfig gprbuild
3600 do
3601         CF_UPPER(cf_upper_prog_gnat,${cf_prog_gnat})
3602
3603         unset ac_cv_path_cf_TEMP_gnat
3604         unset cf_TEMP_gnat
3605         AC_PATH_PROG(cf_TEMP_gnat,$cf_prog_gnat,no)
3606         eval "cf_cv_PATH_$cf_upper_prog_gnat=[$]ac_cv_path_cf_TEMP_gnat"
3607
3608         if test "x$cf_TEMP_gnat" != xno; then
3609                 unset cf_cv_gnat_version
3610                 unset cf_TEMP_gnat
3611                 CF_GNAT_VERSION(cf_TEMP_gnat,$cf_prog_gnat)
3612         fi
3613         eval "cf_cv_VERSION_$cf_upper_prog_gnat=[$]cf_TEMP_gnat"
3614
3615         unset cf_TEMP_gnat
3616         unset cf_cv_gnat_version
3617         unset ac_cv_path_cf_TEMP_gnat
3618 done
3619
3620 if test "x$cf_cv_VERSION_GNATMAKE" = "xno"; then
3621         cf_ada_make=
3622         cf_cv_prog_gnat_correct=no
3623 else
3624         cf_ada_make=gnatmake
3625         if test "x$cf_cv_VERSION_GPRCONFIG" = "xno"; then
3626                 # gprconfig is newer than gnatmake; we can continue...
3627                 cf_ada_config="##"
3628         else
3629                 rm -rf ./conftest* ./*~conftest*
3630                 if mkdir conftest.src
3631                 then
3632                         cf_ada_config=""
3633                         cd conftest.src
3634                         for cf_gprconfig in Ada C
3635                         do
3636                                 AC_MSG_CHECKING(for gprconfig name for $cf_gprconfig)
3637                                 if test "$cf_gprconfig" = C
3638                                 then
3639                                         for cf_gprconfig_param in \
3640                                                 "$cf_gprconfig,,,,GNATGCC" \
3641                                                 "$cf_gprconfig,,,,GCC" \
3642                                                 "$cf_gprconfig"
3643                                         do
3644                                                 cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
3645                                                 test -n "$cf_gprconfig_value" && break
3646                                         done
3647                                 else
3648                                         cf_gprconfig_param=$cf_gprconfig
3649                                         cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig_param 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
3650                                 fi
3651                                 if test -n "$cf_gprconfig_value"
3652                                 then
3653                                         eval "cf_ada_config_[$]cf_gprconfig=[$]cf_gprconfig_value"
3654                                         AC_MSG_RESULT($cf_gprconfig_value)
3655                                 else
3656                                         AC_MSG_RESULT(missing)
3657                                         cf_ada_config="#"
3658                                         break
3659                                 fi
3660                         done
3661                         cd ..
3662                         rm -rf ./conftest* ./*~conftest*
3663                 fi
3664         fi
3665         if test "x$cf_ada_config" != "x#"
3666         then
3667                 CF_GNAT_VERSION
3668                 CF_CHECK_GNAT_VERSION
3669                 AC_CHECK_PROG(M4_exists, m4, yes, no)
3670                 if test "$ac_cv_prog_M4_exists" = no; then
3671                         cf_cv_prog_gnat_correct=no
3672                         AC_MSG_WARN(Ada95 binding required program m4 not found. Ada95 binding disabled)
3673                 fi
3674                 if test "$cf_cv_prog_gnat_correct" = yes; then
3675                         AC_MSG_CHECKING(if GNAT works)
3676                         CF_GNAT_TRY_RUN([procedure conftest;],
3677 [with Text_IO;
3678 with GNAT.OS_Lib;
3679 procedure conftest is
3680 begin
3681    Text_IO.Put ("Hello World");
3682    Text_IO.New_Line;
3683    GNAT.OS_Lib.OS_Exit (0);
3684 end conftest;],
3685 [cf_cv_prog_gnat_correct=yes],
3686 [cf_cv_prog_gnat_correct=no])
3687                         AC_MSG_RESULT($cf_cv_prog_gnat_correct)
3688                 fi
3689         else
3690                 cf_cv_prog_gnat_correct=no
3691         fi
3692 fi
3693
3694 AC_SUBST(cf_ada_make)
3695 AC_SUBST(cf_ada_config)
3696 AC_SUBST(cf_ada_config_Ada)
3697 AC_SUBST(cf_ada_config_C)
3698 ])dnl
3699 dnl ---------------------------------------------------------------------------
3700 dnl CF_PROG_INSTALL version: 10 updated: 2021/01/04 19:33:05
3701 dnl ---------------
3702 dnl Force $INSTALL to be an absolute-path.  Otherwise, edit_man.sh and the
3703 dnl misc/tabset install won't work properly.  Usually this happens only when
3704 dnl using the fallback mkinstalldirs script
3705 AC_DEFUN([CF_PROG_INSTALL],
3706 [AC_PROG_INSTALL
3707 case $INSTALL in
3708 (/*)
3709         ;;
3710 (*)
3711         CF_DIRNAME(cf_dir,$INSTALL)
3712         test -z "$cf_dir" && cf_dir=.
3713         INSTALL="`cd \"$cf_dir\" && pwd`"/"`echo "$INSTALL" | sed -e 's%^.*/%%'`"
3714         ;;
3715 esac
3716 ])dnl
3717 dnl ---------------------------------------------------------------------------
3718 dnl CF_PROG_LN_S version: 2 updated: 2010/08/14 18:25:37
3719 dnl ------------
3720 dnl Combine checks for "ln -s" and "ln -sf", updating $LN_S to include "-f"
3721 dnl option if it is supported.
3722 AC_DEFUN([CF_PROG_LN_S],[
3723 AC_PROG_LN_S
3724 AC_MSG_CHECKING(if $LN_S -f options work)
3725
3726 rm -f conf$$.src conf$$dst
3727 echo >conf$$.dst
3728 echo first >conf$$.src
3729 if $LN_S -f conf$$.src conf$$.dst 2>/dev/null; then
3730         cf_prog_ln_sf=yes
3731 else
3732         cf_prog_ln_sf=no
3733 fi
3734 rm -f conf$$.dst conf$$src
3735 AC_MSG_RESULT($cf_prog_ln_sf)
3736
3737 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
3738 ])dnl
3739 dnl ---------------------------------------------------------------------------
3740 dnl CF_REMOVE_CFLAGS version: 3 updated: 2021/09/05 17:25:40
3741 dnl ----------------
3742 dnl Remove a given option from CFLAGS/CPPFLAGS
3743 dnl $1 = option to remove
3744 dnl $2 = variable to update
3745 dnl $3 = nonempty to allow verbose message
3746 define([CF_REMOVE_CFLAGS],
3747 [
3748 cf_tmp_cflag=`echo "x$1" | sed -e 's/^.//' -e 's/=.*//'`
3749 while true
3750 do
3751         cf_old_cflag=`echo "x[$]$2" | sed -e 's/^.//' -e 's/[[  ]][[    ]]*-/ -/g' -e "s%$cf_tmp_cflag\\(=[[^   ]][[^   ]]*\\)\?%%" -e 's/^[[   ]]*//' -e 's%[[ ]][[ ]]*-D% -D%g' -e 's%[[ ]][[ ]]*-I% -I%g'`
3752         test "[$]$2" != "$cf_old_cflag" || break
3753         ifelse([$3],,,[CF_VERBOSE(removing old option $1 from $2)])
3754         $2="$cf_old_cflag"
3755 done
3756 ])dnl
3757 dnl ---------------------------------------------------------------------------
3758 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
3759 dnl ----------------
3760 dnl Remove all -U and -D options that refer to the given symbol from a list
3761 dnl of C compiler options.  This works around the problem that not all
3762 dnl compilers process -U and -D options from left-to-right, so a -U option
3763 dnl cannot be used to cancel the effect of a preceding -D option.
3764 dnl
3765 dnl $1 = target (which could be the same as the source variable)
3766 dnl $2 = source (including '$')
3767 dnl $3 = symbol to remove
3768 define([CF_REMOVE_DEFINE],
3769 [
3770 $1=`echo "$2" | \
3771         sed     -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[[       ]]/ /g' \
3772                 -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[$]//g'`
3773 ])dnl
3774 dnl ---------------------------------------------------------------------------
3775 dnl CF_REMOVE_LIB version: 1 updated: 2007/02/17 14:11:52
3776 dnl -------------
3777 dnl Remove the given library from the symbol
3778 dnl
3779 dnl $1 = target (which could be the same as the source variable)
3780 dnl $2 = source (including '$')
3781 dnl $3 = library to remove
3782 define([CF_REMOVE_LIB],
3783 [
3784 # remove $3 library from $2
3785 $1=`echo "$2" | sed -e 's/-l$3[[        ]]//g' -e 's/-l$3[$]//'`
3786 ])dnl
3787 dnl ---------------------------------------------------------------------------
3788 dnl CF_RESTORE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:47:45
3789 dnl ---------------------
3790 dnl Restore flags saved in CF_SAVE_XTRA_FLAGS
3791 dnl $1 = name of current macro
3792 define([CF_RESTORE_XTRA_FLAGS],
3793 [
3794 LIBS="$cf_save_LIBS_$1"
3795 CFLAGS="$cf_save_CFLAGS_$1"
3796 CPPFLAGS="$cf_save_CPPFLAGS_$1"
3797 ])dnl
3798 dnl ---------------------------------------------------------------------------
3799 dnl CF_SAVE_XTRA_FLAGS version: 1 updated: 2020/01/11 16:46:44
3800 dnl ------------------
3801 dnl Use this macro to save CFLAGS/CPPFLAGS/LIBS before checks against X headers
3802 dnl and libraries which do not update those variables.
3803 dnl
3804 dnl $1 = name of current macro
3805 define([CF_SAVE_XTRA_FLAGS],
3806 [
3807 cf_save_LIBS_$1="$LIBS"
3808 cf_save_CFLAGS_$1="$CFLAGS"
3809 cf_save_CPPFLAGS_$1="$CPPFLAGS"
3810 LIBS="$LIBS ${X_PRE_LIBS} ${X_LIBS} ${X_EXTRA_LIBS}"
3811 for cf_X_CFLAGS in $X_CFLAGS
3812 do
3813         case "x$cf_X_CFLAGS" in
3814         x-[[IUD]]*)
3815                 CPPFLAGS="$CPPFLAGS $cf_X_CFLAGS"
3816                 ;;
3817         *)
3818                 CFLAGS="$CFLAGS $cf_X_CFLAGS"
3819                 ;;
3820         esac
3821 done
3822 ])dnl
3823 dnl ---------------------------------------------------------------------------
3824 dnl CF_SHARED_OPTS version: 107 updated: 2021/09/04 06:47:34
3825 dnl --------------
3826 dnl --------------
3827 dnl Attempt to determine the appropriate CC/LD options for creating a shared
3828 dnl library.
3829 dnl
3830 dnl Notes:
3831 dnl a) ${LOCAL_LDFLAGS} is used to link executables that will run within
3832 dnl the build-tree, i.e., by making use of the libraries that are compiled in
3833 dnl $rel_builddir/lib We avoid compiling-in a $rel_builddir/lib path for the
3834 dnl shared library since that can lead to unexpected results at runtime.
3835 dnl b) ${LOCAL_LDFLAGS2} has the same intention but assumes that the shared
3836 dnl libraries are compiled in ../../lib
3837 dnl
3838 dnl The variable 'cf_cv_do_symlinks' is used to control whether we configure
3839 dnl to install symbolic links to the rel/abi versions of shared libraries.
3840 dnl
3841 dnl The variable 'cf_cv_shlib_version' controls whether we use the rel or abi
3842 dnl version when making symbolic links.
3843 dnl
3844 dnl The variable 'cf_cv_shlib_version_infix' controls whether shared library
3845 dnl version numbers are infix (ex: libncurses.<ver>.dylib) or postfix
3846 dnl (ex: libncurses.so.<ver>).
3847 dnl
3848 dnl Some loaders leave 'so_locations' lying around.  It is nice to clean up.
3849 AC_DEFUN([CF_SHARED_OPTS],
3850 [
3851         AC_REQUIRE([CF_LD_RPATH_OPT])
3852
3853         RM_SHARED_OPTS=
3854         LOCAL_LDFLAGS=
3855         LOCAL_LDFLAGS2=
3856         LD_SHARED_OPTS=
3857         INSTALL_LIB="-m 644"
3858         : ${rel_builddir:=.}
3859
3860         shlibdir=$libdir
3861         AC_SUBST(shlibdir)
3862
3863         MAKE_DLLS="#"
3864         AC_SUBST(MAKE_DLLS)
3865
3866         cf_cv_do_symlinks=no
3867         cf_ld_rpath_opt=
3868         test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
3869
3870         AC_MSG_CHECKING(if release/abi version should be used for shared libs)
3871         AC_ARG_WITH(shlib-version,
3872         [  --with-shlib-version=X  Specify rel or abi version for shared libs],
3873         [test -z "$withval" && withval=auto
3874         case "$withval" in
3875         (yes)
3876                 cf_cv_shlib_version=auto
3877                 ;;
3878         (rel|abi|auto)
3879                 cf_cv_shlib_version=$withval
3880                 ;;
3881         (*)
3882                 AC_MSG_RESULT($withval)
3883                 AC_MSG_ERROR([option value must be one of: rel, abi, or auto])
3884                 ;;
3885         esac
3886         ],[cf_cv_shlib_version=auto])
3887         AC_MSG_RESULT($cf_cv_shlib_version)
3888
3889         cf_cv_rm_so_locs=no
3890         cf_try_cflags=
3891
3892         # Some less-capable ports of gcc support only -fpic
3893         CC_SHARED_OPTS=
3894
3895         cf_try_fPIC=no
3896         if test "$GCC" = yes
3897         then
3898                 cf_try_fPIC=yes
3899         else
3900                 case "$cf_cv_system_name" in
3901                 (*linux*)       # e.g., PGI compiler
3902                         cf_try_fPIC=yes
3903                         ;;
3904                 esac
3905         fi
3906
3907         if test "$cf_try_fPIC" = yes
3908         then
3909                 AC_MSG_CHECKING(which $CC option to use)
3910                 cf_save_CFLAGS="$CFLAGS"
3911                 for CC_SHARED_OPTS in -fPIC -fpic ''
3912                 do
3913                         CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
3914                         AC_TRY_COMPILE([#include <stdio.h>],[int x = 1],[break],[])
3915                 done
3916                 AC_MSG_RESULT($CC_SHARED_OPTS)
3917                 CFLAGS="$cf_save_CFLAGS"
3918         fi
3919
3920         cf_cv_shlib_version_infix=no
3921
3922         case "$cf_cv_system_name" in
3923         (aix4.[3-9]*|aix[[5-7]]*)
3924                 if test "$GCC" = yes; then
3925                         CC_SHARED_OPTS='-Wl,-brtl'
3926                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
3927                 else
3928                         CC_SHARED_OPTS='-brtl'
3929                         # as well as '-qpic=large -G' or perhaps "-bM:SRE -bnoentry -bexpall"
3930                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -G -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
3931                 fi
3932                 ;;
3933         (beos*)
3934                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -o $[@] -Xlinker -soname=`basename $[@]` -nostart -e 0'
3935                 ;;
3936         (cygwin*)
3937                 CC_SHARED_OPTS=
3938                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
3939                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
3940                 cf_cv_shlib_version=cygdll
3941                 cf_cv_shlib_version_infix=cygdll
3942                 shlibdir=$bindir
3943                 MAKE_DLLS=
3944                 cat >mk_shared_lib.sh <<-CF_EOF
3945                 #!$SHELL
3946                 SHARED_LIB=\[$]1
3947                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/cyg/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
3948                 shift
3949                 cat <<-EOF
3950                 Linking shared library
3951                 ** SHARED_LIB \[$]SHARED_LIB
3952                 ** IMPORT_LIB \[$]IMPORT_LIB
3953 EOF
3954                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
3955 CF_EOF
3956                 chmod +x mk_shared_lib.sh
3957                 ;;
3958         (msys*)
3959                 CC_SHARED_OPTS=
3960                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
3961                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
3962                 cf_cv_shlib_version=msysdll
3963                 cf_cv_shlib_version_infix=msysdll
3964                 shlibdir=$bindir
3965                 MAKE_DLLS=
3966                 cat >mk_shared_lib.sh <<-CF_EOF
3967                 #!$SHELL
3968                 SHARED_LIB=\[$]1
3969                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/msys-/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
3970                 shift
3971                 cat <<-EOF
3972                 Linking shared library
3973                 ** SHARED_LIB \[$]SHARED_LIB
3974                 ** IMPORT_LIB \[$]IMPORT_LIB
3975 EOF
3976                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
3977 CF_EOF
3978                 chmod +x mk_shared_lib.sh
3979                 ;;
3980         (darwin*)
3981                 cf_try_cflags="no-cpp-precomp"
3982                 CC_SHARED_OPTS="-dynamic"
3983                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $[@]` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $[@]'
3984                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
3985                 cf_cv_shlib_version_infix=yes
3986                 AC_CACHE_CHECK([if ld -search_paths_first works], cf_cv_ldflags_search_paths_first, [
3987                         cf_save_LDFLAGS=$LDFLAGS
3988                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
3989                         AC_TRY_LINK(, [int i;], cf_cv_ldflags_search_paths_first=yes, cf_cv_ldflags_search_paths_first=no)
3990                                 LDFLAGS=$cf_save_LDFLAGS])
3991                 if test "$cf_cv_ldflags_search_paths_first" = yes; then
3992                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
3993                 fi
3994                 ;;
3995         (haiku*)
3996                 CF_SHARED_SONAME
3997                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
3998                 ;;
3999         (hpux[[7-8]]*)
4000                 # HP-UX 8.07 ld lacks "+b" option used for libdir search-list
4001                 if test "$GCC" != yes; then
4002                         CC_SHARED_OPTS='+Z'
4003                 fi
4004                 MK_SHARED_LIB='${LD} ${LDFLAGS} -b -o $[@]'
4005                 INSTALL_LIB="-m 555"
4006                 ;;
4007         (hpux*)
4008                 # (tested with gcc 2.7.2 -- I don't have c89)
4009                 if test "$GCC" = yes; then
4010                         LD_SHARED_OPTS='-Xlinker +b -Xlinker ${libdir}'
4011                 else
4012                         CC_SHARED_OPTS='+Z'
4013                         LD_SHARED_OPTS='-Wl,+b,${libdir}'
4014                 fi
4015                 MK_SHARED_LIB='${LD} ${LDFLAGS} +b ${libdir} -b -o $[@]'
4016                 # HP-UX shared libraries must be executable, and should be
4017                 # readonly to exploit a quirk in the memory manager.
4018                 INSTALL_LIB="-m 555"
4019                 ;;
4020         (interix*)
4021                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
4022                 if test "$cf_cv_shlib_version" = rel; then
4023                         cf_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
4024                 else
4025                         cf_shared_soname='`basename $[@]`'
4026                 fi
4027                 CC_SHARED_OPTS=
4028                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-rpath,${RPATH_LIST} -Wl,-h,'$cf_shared_soname' -o $[@]'
4029                 ;;
4030         (irix*)
4031                 if test "$cf_cv_enable_rpath" = yes ; then
4032                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
4033                 fi
4034                 # tested with IRIX 5.2 and 'cc'.
4035                 if test "$GCC" != yes; then
4036                         CC_SHARED_OPTS='-KPIC'
4037                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -rdata_shared -soname `basename $[@]` -o $[@]'
4038                 else
4039                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,`basename $[@]` -o $[@]'
4040                 fi
4041                 cf_cv_rm_so_locs=yes
4042                 ;;
4043         (linux*|gnu*|k*bsd*-gnu)
4044                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
4045                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
4046                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4047                 fi
4048                 if test "$cf_cv_enable_rpath" = yes ; then
4049                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
4050                 fi
4051                 CF_SHARED_SONAME
4052                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
4053                 ;;
4054         (mingw*msvc*)
4055                 cf_cv_shlib_version=msvcdll
4056                 cf_cv_shlib_version_infix=msvcdll
4057                 shlibdir=$bindir
4058                 MAKE_DLLS=
4059                 if test "$DFT_LWR_MODEL" = "shared" ; then
4060                         LOCAL_LDFLAGS="-link -dll"
4061                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4062                         EXTRA_LDFLAGS="-link -dll $EXTRA_LDFLAGS"
4063                 fi
4064                 CC_SHARED_OPTS=
4065                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ ${LD} [$]{CFLAGS}'
4066                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.lib"
4067                 cat >mk_shared_lib.sh <<-CF_EOF
4068                 #!$SHELL
4069                 SHARED_LIB=\[$]1
4070                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.lib/'\`
4071                 shift
4072                 my_ld=\[$]1
4073                 shift
4074                 cat <<-EOF
4075                 Linking shared library
4076                 ** SHARED LIB \$SHARED_LIB
4077                 ** IMPORT_LIB \$IMPORT_LIB
4078 EOF
4079                 args=\$(echo \[$]* | sed -E "s#-l(\w*)#\1.dll.lib#g" | sed -E "s#-L(\w*)#-LIBPATH:\1#g")
4080                 exec \$my_ld -DLL -IMPLIB:"\${IMPORT_LIB}" -OUT:"\${SHARED_LIB}" ${LDFLAGS} \$args
4081                 mv "\${IMPORT_LIB}" "\${IMPORT_LIB}"
4082 CF_EOF
4083                 chmod +x mk_shared_lib.sh
4084                 cat >mk_prog.sh <<-CF_EOF
4085                 #!$SHELL
4086                 shift
4087                 # Ignore first argument (compiler) and use LD (link.exe) unconditionally
4088                 LD="[$]LD"
4089                 clopts=()
4090                 ldopts=("/subsystem:console")
4091                 libs=()
4092                 isdll=0
4093                 while test \[$]# -gt 0; do
4094                         case "\[$]1" in
4095                                 -link)
4096                                         # ignore -link argument
4097                                         ;;
4098                                 -M[[TD]] | -M[[TD]]d)
4099                                         # ignore runtime-library option
4100                                         ;;
4101                                 -dll)
4102                                         isdll=1
4103                                         ;;
4104                                 -W* | -w*)
4105                                         # ignore warnings
4106                                         ;;
4107                                 -D*)
4108                                         clopts+=("\[$]1")
4109                                         ;;
4110                                 -I*)
4111                                         clopts+=("\[$]1")
4112                                         ;;
4113                                 -l*)
4114                                         libs+=("\`echo \"\[$]1\" | sed \"s/^-l//\"\`")
4115                                         ;;
4116                                 -L*)
4117                                         ldopts+=("\`echo \"\[$]1\" | sed \"s/^-L/-LIBPATH:/\"\`")
4118                                         ;;
4119                                 *.obj | *.o)
4120                                         ldopts+=("\[$]1")
4121                                         ;;
4122                                 -Wl,*)
4123                                         for linkarg in \`echo '\[$]1' | sed -e 's/-Wl,//' -e 's/,/ /'\`; do
4124                                                 ldopts+=("\[$]{linkarg}")
4125                                         done
4126                                         ;;
4127                                 *.lib)
4128                                         ldopts+=("\[$]1")
4129                                         ;;
4130                                 -o)
4131                                         shift
4132                                         ldopts+=("-out:\[$]1")
4133                                         ;;
4134                                 *)
4135                                         clopts+=("\[$]1")
4136                                         ldopts+=("\[$]1")
4137                                         ;;
4138                         esac
4139                         shift
4140                 done
4141                 if [[ "\$isdll" -ne 0 ]]; then
4142                         for lib in \[$]{libs[[*]]}; do
4143                                 ldopts+=("\[$]lib.dll.lib")
4144                         done
4145                 else
4146                         for lib in \[$]{libs[[*]]}; do
4147                                 ldopts+=("\[$]lib.lib")
4148                         done
4149                 fi
4150                 cat <<-EOF
4151                 Creating program
4152                 ** ld options:   "\[$]{ldopts[[@]]}"
4153 EOF
4154                 exec \[$]LD \[$]{ldopts[[@]]}
4155 CF_EOF
4156                 chmod +x mk_prog.sh
4157                 LINK_PROGS="$SHELL ${rel_builddir}/mk_prog.sh"
4158                 LINK_TESTS="$SHELL ${rel_builddir}/mk_prog.sh"
4159                 ;;
4160         (mingw*)
4161                 cf_cv_shlib_version=mingw
4162                 cf_cv_shlib_version_infix=mingw
4163                 shlibdir=$bindir
4164                 MAKE_DLLS=
4165                 if test "$DFT_LWR_MODEL" = "shared" ; then
4166                         LOCAL_LDFLAGS="-Wl,--enable-auto-import"
4167                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4168                         EXTRA_LDFLAGS="-Wl,--enable-auto-import $EXTRA_LDFLAGS"
4169                 fi
4170                 CC_SHARED_OPTS=
4171                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
4172                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
4173                 cat >mk_shared_lib.sh <<-CF_EOF
4174                 #!$SHELL
4175                 SHARED_LIB=\[$]1
4176                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
4177                 shift
4178                 cat <<-EOF
4179                 Linking shared library
4180                 ** SHARED_LIB \[$]SHARED_LIB
4181                 ** IMPORT_LIB \[$]IMPORT_LIB
4182 EOF
4183                 exec \[$]* ${LDFLAGS} -shared -Wl,--enable-auto-import,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
4184 CF_EOF
4185                 chmod +x mk_shared_lib.sh
4186                 ;;
4187         (openbsd[[2-9]].*|mirbsd*)
4188                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
4189                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
4190                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4191                 fi
4192                 if test "$cf_cv_enable_rpath" = yes ; then
4193                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
4194                 fi
4195                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
4196                 CF_SHARED_SONAME
4197                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
4198                 ;;
4199         (nskJ*)
4200                 CC_SHARED_OPTS=
4201                 MK_SHARED_LIB='${LD} -Wshared -Weld=-export_all -o $[@]'
4202                 ;;
4203         (nskL*)
4204                 CC_SHARED_OPTS=
4205                 MK_SHARED_LIB='${LD} -Wshared -Wxld=-export_all -o $[@]'
4206                 ;;
4207         (nto-qnx*|openbsd*|freebsd[[12]].*)
4208                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
4209                 MK_SHARED_LIB='${LD} ${LDFLAGS} -Bshareable -o $[@]'
4210                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
4211                 ;;
4212         (dragonfly*|freebsd*)
4213                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
4214                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
4215                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
4216                         LOCAL_LDFLAGS2="${cf_ld_rpath_opt}\${RPATH_LIST} $LOCAL_LDFLAGS"
4217                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
4218                 fi
4219                 CF_SHARED_SONAME
4220                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
4221                 ;;
4222         (netbsd*)
4223                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
4224                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
4225                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
4226                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4227                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
4228                         if test "$cf_cv_shlib_version" = auto; then
4229                         if test -f /usr/libexec/ld.elf_so; then
4230                                 cf_cv_shlib_version=abi
4231                         else
4232                                 cf_cv_shlib_version=rel
4233                         fi
4234                         fi
4235                         CF_SHARED_SONAME
4236                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $[@]'
4237                 else
4238                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -o $[@]'
4239                 fi
4240                 ;;
4241         (osf*|mls+*)
4242                 # tested with OSF/1 V3.2 and 'cc'
4243                 # tested with OSF/1 V3.2 and gcc 2.6.3 (but the c++ demo didn't
4244                 # link with shared libs).
4245                 MK_SHARED_LIB='${LD} ${LDFLAGS} -set_version ${REL_VERSION}:${ABI_VERSION} -expect_unresolved "*" -shared -soname `basename $[@]`'
4246                 case "$host_os" in
4247                 (osf4*)
4248                         MK_SHARED_LIB="${MK_SHARED_LIB} -msym"
4249                         ;;
4250                 esac
4251                 MK_SHARED_LIB="${MK_SHARED_LIB}"' -o $[@]'
4252                 if test "$DFT_LWR_MODEL" = "shared" && test -n "$LD_RPATH_OPT" ; then
4253                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
4254                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4255                 fi
4256                 cf_cv_rm_so_locs=yes
4257                 ;;
4258         (sco3.2v5*)  # also uw2* and UW7: hops 13-Apr-98
4259                 # tested with osr5.0.5
4260                 if test "$GCC" != yes; then
4261                         CC_SHARED_OPTS='-belf -KPIC'
4262                 fi
4263                 MK_SHARED_LIB='${LD} ${LDFLAGS} -dy -G -h `basename $[@] .${REL_VERSION}`.${ABI_VERSION} -o [$]@'
4264                 if test "$cf_cv_enable_rpath" = yes ; then
4265                         # only way is to set LD_RUN_PATH but no switch for it
4266                         RUN_PATH=$libdir
4267                 fi
4268                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
4269                 LINK_PROGS='LD_RUN_PATH=${libdir}'
4270                 LINK_TESTS='Pwd=`pwd`;LD_RUN_PATH=`dirname $${Pwd}`/lib'
4271                 ;;
4272         (sunos4*)
4273                 # tested with SunOS 4.1.1 and gcc 2.7.0
4274                 if test "$GCC" != yes; then
4275                         CC_SHARED_OPTS='-KPIC'
4276                 fi
4277                 MK_SHARED_LIB='${LD} ${LDFLAGS} -assert pure-text -o $[@]'
4278                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
4279                 ;;
4280         (solaris2*)
4281                 # tested with SunOS 5.5.1 (solaris 2.5.1) and gcc 2.7.2
4282                 # tested with SunOS 5.10 (solaris 10) and gcc 3.4.3
4283                 if test "$DFT_LWR_MODEL" = "shared" ; then
4284                         LOCAL_LDFLAGS="-R \$(LOCAL_LIBDIR):\${libdir}"
4285                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
4286                 fi
4287                 if test "$cf_cv_enable_rpath" = yes ; then
4288                         EXTRA_LDFLAGS="-R \${libdir} $EXTRA_LDFLAGS"
4289                 fi
4290                 CF_SHARED_SONAME
4291                 if test "$GCC" != yes; then
4292                         cf_save_CFLAGS="$CFLAGS"
4293                         for cf_shared_opts in -xcode=pic32 -xcode=pic13 -KPIC -Kpic -O
4294                         do
4295                                 CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
4296                                 AC_TRY_COMPILE([#include <stdio.h>],[printf("Hello\\n");],[break])
4297                         done
4298                         CFLAGS="$cf_save_CFLAGS"
4299                         CC_SHARED_OPTS=$cf_shared_opts
4300                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dy -G -h '$cf_cv_shared_soname' -o $[@]'
4301                 else
4302                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -dy -G -h '$cf_cv_shared_soname' -o $[@]'
4303                 fi
4304                 ;;
4305         (sysv5uw7*|unix_sv*)
4306                 # tested with UnixWare 7.1.0 (gcc 2.95.2 and cc)
4307                 if test "$GCC" != yes; then
4308                         CC_SHARED_OPTS='-KPIC'
4309                 fi
4310                 MK_SHARED_LIB='${LD} ${LDFLAGS} -d y -G -o [$]@'
4311                 ;;
4312         (*)
4313                 CC_SHARED_OPTS='unknown'
4314                 MK_SHARED_LIB='echo unknown'
4315                 ;;
4316         esac
4317
4318         # This works if the last tokens in $MK_SHARED_LIB are the -o target.
4319         case "$cf_cv_shlib_version" in
4320         (rel|abi)
4321                 case "$MK_SHARED_LIB" in
4322                 (*'-o $[@]')
4323                         test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
4324                         ;;
4325                 (*)
4326                         AC_MSG_WARN(ignored --with-shlib-version)
4327                         ;;
4328                 esac
4329                 ;;
4330         esac
4331
4332         if test -n "$cf_try_cflags"
4333         then
4334 cat > conftest.$ac_ext <<EOF
4335 #line __oline__ "${as_me:-configure}"
4336 #include <stdio.h>
4337 int main(int argc, char *argv[[]])
4338 {
4339         printf("hello\\n");
4340         return (argv[[argc-1]] == 0) ;
4341 }
4342 EOF
4343                 cf_save_CFLAGS="$CFLAGS"
4344                 for cf_opt in $cf_try_cflags
4345                 do
4346                         CFLAGS="$cf_save_CFLAGS -$cf_opt"
4347                         AC_MSG_CHECKING(if CFLAGS option -$cf_opt works)
4348                         if AC_TRY_EVAL(ac_compile); then
4349                                 AC_MSG_RESULT(yes)
4350                                 cf_save_CFLAGS="$CFLAGS"
4351                         else
4352                                 AC_MSG_RESULT(no)
4353                         fi
4354                 done
4355                 CFLAGS="$cf_save_CFLAGS"
4356         fi
4357
4358
4359         # RPATH_LIST is a colon-separated list of directories
4360         test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
4361         test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
4362
4363         test "$cf_cv_rm_so_locs" = yes && RM_SHARED_OPTS="$RM_SHARED_OPTS so_locations"
4364
4365         CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
4366         CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
4367
4368         AC_SUBST(CC_SHARED_OPTS)
4369         AC_SUBST(LD_RPATH_OPT)
4370         AC_SUBST(LD_SHARED_OPTS)
4371         AC_SUBST(MK_SHARED_LIB)
4372         AC_SUBST(RM_SHARED_OPTS)
4373
4374         AC_SUBST(LINK_PROGS)
4375         AC_SUBST(LINK_TESTS)
4376
4377         AC_SUBST(EXTRA_LDFLAGS)
4378         AC_SUBST(LOCAL_LDFLAGS)
4379         AC_SUBST(LOCAL_LDFLAGS2)
4380
4381         AC_SUBST(INSTALL_LIB)
4382         AC_SUBST(RPATH_LIST)
4383 ])dnl
4384 dnl ---------------------------------------------------------------------------
4385 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
4386 dnl ----------------
4387 dnl utility macro for CF_SHARED_OPTS, constructs "$cf_cv_shared_soname" for
4388 dnl substitution into MK_SHARED_LIB string for the "-soname" (or similar)
4389 dnl option.
4390 dnl
4391 dnl $1 is the default that should be used for "$cf_cv_shlib_version".
4392 dnl If missing, use "rel".
4393 define([CF_SHARED_SONAME],
4394 [
4395         test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=ifelse($1,,rel,$1)
4396         if test "$cf_cv_shlib_version" = rel; then
4397                 cf_cv_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
4398         else
4399                 cf_cv_shared_soname='`basename $[@]`'
4400         fi
4401 ])
4402 dnl ---------------------------------------------------------------------------
4403 dnl CF_STRIP_G_OPT version: 4 updated: 2021/01/02 09:31:20
4404 dnl --------------
4405 dnl     Remove "-g" option from the compiler options
4406 AC_DEFUN([CF_STRIP_G_OPT],
4407 [$1=`echo "${$1}" | CF__SED_TRIMBLANKS(-e 's%-g %%' -e 's%-g$%%')`])dnl
4408 dnl ---------------------------------------------------------------------------
4409 dnl CF_SUBDIR_PATH version: 7 updated: 2014/12/04 04:33:06
4410 dnl --------------
4411 dnl Construct a search-list for a nonstandard header/lib-file
4412 dnl     $1 = the variable to return as result
4413 dnl     $2 = the package name
4414 dnl     $3 = the subdirectory, e.g., bin, include or lib
4415 AC_DEFUN([CF_SUBDIR_PATH],
4416 [
4417 $1=
4418
4419 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
4420
4421 for cf_subdir_prefix in \
4422         /usr \
4423         /usr/local \
4424         /usr/pkg \
4425         /opt \
4426         /opt/local \
4427         [$]HOME
4428 do
4429         CF_ADD_SUBDIR_PATH($1,$2,$3,$cf_subdir_prefix,$prefix)
4430 done
4431 ])dnl
4432 dnl ---------------------------------------------------------------------------
4433 dnl CF_TERM_HEADER version: 6 updated: 2021/01/02 09:31:20
4434 dnl --------------
4435 dnl Look for term.h, which is part of X/Open curses.  It defines the interface
4436 dnl to terminfo database.  Usually it is in the same include-path as curses.h,
4437 dnl but some packagers change this, breaking various applications.
4438 AC_DEFUN([CF_TERM_HEADER],[
4439 AC_CACHE_CHECK(for terminfo header, cf_cv_term_header,[
4440 case "${cf_cv_ncurses_header}" in
4441 (*/ncurses.h|*/ncursesw.h)
4442         cf_term_header=`echo "$cf_cv_ncurses_header" | sed -e 's%ncurses[[^.]]*\.h$%term.h%'`
4443         ;;
4444 (*)
4445         cf_term_header=term.h
4446         ;;
4447 esac
4448
4449 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
4450 do
4451 AC_TRY_COMPILE([#include <stdio.h>
4452 #include <${cf_cv_ncurses_header:-curses.h}>
4453 #include <$cf_test>
4454 ],[int x = auto_left_margin; (void)x],[
4455         cf_cv_term_header="$cf_test"],[
4456         cf_cv_term_header=unknown
4457         ])
4458         test "$cf_cv_term_header" != unknown && break
4459 done
4460 ])
4461
4462 # Set definitions to allow ifdef'ing to accommodate subdirectories
4463
4464 case "$cf_cv_term_header" in
4465 (*term.h)
4466         AC_DEFINE(HAVE_TERM_H,1,[Define to 1 if we have term.h])
4467         ;;
4468 esac
4469
4470 case "$cf_cv_term_header" in
4471 (ncurses/term.h)
4472         AC_DEFINE(HAVE_NCURSES_TERM_H,1,[Define to 1 if we have ncurses/term.h])
4473         ;;
4474 (ncursesw/term.h)
4475         AC_DEFINE(HAVE_NCURSESW_TERM_H,1,[Define to 1 if we have ncursesw/term.h])
4476         ;;
4477 esac
4478 ])dnl
4479 dnl ---------------------------------------------------------------------------
4480 dnl CF_TOP_BUILDDIR version: 2 updated: 2013/07/27 17:38:32
4481 dnl ---------------
4482 dnl Define a top_builddir symbol, for applications that need an absolute path.
4483 AC_DEFUN([CF_TOP_BUILDDIR],
4484 [
4485 top_builddir=ifelse($1,,`pwd`,$1)
4486 AC_SUBST(top_builddir)
4487 ])dnl
4488 dnl ---------------------------------------------------------------------------
4489 dnl CF_TRY_XOPEN_SOURCE version: 3 updated: 2021/08/28 15:20:37
4490 dnl -------------------
4491 dnl If _XOPEN_SOURCE is not defined in the compile environment, check if we
4492 dnl can define it successfully.
4493 AC_DEFUN([CF_TRY_XOPEN_SOURCE],[
4494 AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
4495         AC_TRY_COMPILE([
4496 #include <stdlib.h>
4497 #include <string.h>
4498 #include <sys/types.h>
4499 ],[
4500 #ifndef _XOPEN_SOURCE
4501 make an error
4502 #endif],
4503         [cf_cv_xopen_source=no],
4504         [cf_save="$CPPFLAGS"
4505          CF_APPEND_TEXT(CPPFLAGS,-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE)
4506          AC_TRY_COMPILE([
4507 #include <stdlib.h>
4508 #include <string.h>
4509 #include <sys/types.h>
4510 ],[
4511 #ifdef _XOPEN_SOURCE
4512 make an error
4513 #endif],
4514         [cf_cv_xopen_source=no],
4515         [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
4516         CPPFLAGS="$cf_save"
4517         ])
4518 ])
4519
4520 if test "$cf_cv_xopen_source" != no ; then
4521         CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
4522         CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
4523         cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
4524         CF_APPEND_CFLAGS($cf_temp_xopen_source)
4525 fi
4526 ])
4527 dnl ---------------------------------------------------------------------------
4528 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
4529 dnl --------
4530 dnl Make an uppercase version of a variable
4531 dnl $1=uppercase($2)
4532 AC_DEFUN([CF_UPPER],
4533 [
4534 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
4535 ])dnl
4536 dnl ---------------------------------------------------------------------------
4537 dnl CF_UTF8_LIB version: 9 updated: 2021/05/19 19:35:25
4538 dnl -----------
4539 dnl Check for multibyte support, and if not found, utf8 compatibility library
4540 AC_DEFUN([CF_UTF8_LIB],
4541 [
4542 AC_HAVE_HEADERS(wchar.h)
4543 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
4544         cf_save_LIBS="$LIBS"
4545         AC_TRY_LINK([
4546 #include <stdlib.h>
4547 #include <stdio.h>
4548 #ifdef HAVE_WCHAR_H
4549 #include <wchar.h>
4550 #endif
4551 ],[putwc(0,0);],
4552         [cf_cv_utf8_lib=yes],
4553         [CF_FIND_LINKAGE([
4554 #include <libutf8.h>],[putwc(0,0);],utf8,
4555                 [cf_cv_utf8_lib=add-on],
4556                 [cf_cv_utf8_lib=no])
4557 ])])
4558
4559 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
4560 # ncurses/ncursesw:
4561 if test "$cf_cv_utf8_lib" = "add-on" ; then
4562         AC_DEFINE(HAVE_LIBUTF8_H,1,[Define to 1 if we should include libutf8.h])
4563         CF_ADD_INCDIR($cf_cv_header_path_utf8)
4564         CF_ADD_LIBDIR($cf_cv_library_path_utf8)
4565         CF_ADD_LIBS($cf_cv_library_file_utf8)
4566 fi
4567 ])dnl
4568 dnl ---------------------------------------------------------------------------
4569 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
4570 dnl ----------
4571 dnl Use AC_VERBOSE w/o the warnings
4572 AC_DEFUN([CF_VERBOSE],
4573 [test -n "$verbose" && echo "   $1" 1>&AC_FD_MSG
4574 CF_MSG_LOG([$1])
4575 ])dnl
4576 dnl ---------------------------------------------------------------------------
4577 dnl CF_WEAK_SYMBOLS version: 1 updated: 2008/08/16 19:18:06
4578 dnl ---------------
4579 dnl Check for compiler-support for weak symbols.
4580 dnl This works with "recent" gcc.
4581 AC_DEFUN([CF_WEAK_SYMBOLS],[
4582 AC_CACHE_CHECK(if $CC supports weak symbols,cf_cv_weak_symbols,[
4583
4584 AC_TRY_COMPILE([
4585 #include <stdio.h>],
4586 [
4587 #if defined(__GNUC__)
4588 #  if defined __USE_ISOC99
4589 #    define _cat_pragma(exp)    _Pragma(#exp)
4590 #    define _weak_pragma(exp)   _cat_pragma(weak name)
4591 #  else
4592 #    define _weak_pragma(exp)
4593 #  endif
4594 #  define _declare(name)        __extension__ extern __typeof__(name) name
4595 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
4596 #endif
4597
4598 weak_symbol(fopen);
4599 ],[cf_cv_weak_symbols=yes],[cf_cv_weak_symbols=no])
4600 ])
4601 ])dnl
4602 dnl ---------------------------------------------------------------------------
4603 dnl CF_WITH_ADA_COMPILER version: 2 updated: 2010/06/26 17:35:58
4604 dnl --------------------
4605 dnl Command-line option to specify the Ada95 compiler.
4606 AC_DEFUN([CF_WITH_ADA_COMPILER],[
4607 AC_MSG_CHECKING(for ada-compiler)
4608 AC_ARG_WITH(ada-compiler,
4609         [  --with-ada-compiler=CMD specify Ada95 compiler command (default gnatmake)],
4610         [cf_ada_compiler=$withval],
4611         [cf_ada_compiler=gnatmake])
4612 AC_SUBST(cf_ada_compiler)
4613 AC_MSG_RESULT($cf_ada_compiler)
4614 ])dnl
4615 dnl ---------------------------------------------------------------------------
4616 dnl CF_WITH_ADA_INCLUDE version: 2 updated: 2010/06/26 17:35:58
4617 dnl -------------------
4618 dnl Command-line option to specify where Ada includes will install.
4619 AC_DEFUN([CF_WITH_ADA_INCLUDE],[
4620 AC_MSG_CHECKING(for ada-include)
4621 CF_WITH_PATH(ada-include,
4622    [  --with-ada-include=DIR  Ada includes are in DIR],
4623    ADA_INCLUDE,
4624    PREFIX/share/ada/adainclude,
4625    [$]prefix/share/ada/adainclude)
4626 AC_SUBST(ADA_INCLUDE)
4627 AC_MSG_RESULT($ADA_INCLUDE)
4628 ])dnl
4629 dnl ---------------------------------------------------------------------------
4630 dnl CF_WITH_ADA_LIBNAME version: 1 updated: 2019/09/07 18:59:41
4631 dnl -------------------
4632 dnl CF_WITH_ADA_LIBNAME
4633 dnl -------------------
4634 dnl Command-line option to specify how to name the resulting Ada library.
4635 dnl $1 = default value
4636 AC_DEFUN([CF_WITH_ADA_LIBNAME],[
4637 AC_MSG_CHECKING(for ada-libname)
4638 AC_ARG_WITH(ada-libname,
4639    [  --with-ada-libname=XXX  override default Ada library-name],
4640    ADA_LIBNAME=[$]withval,
4641    ADA_LIBNAME=$1)
4642 case "x$ADA_LIBNAME" in
4643 (x|xyes|xno)
4644         ADA_LIBNAME=$1
4645         ;;
4646 esac
4647 AC_SUBST(ADA_LIBNAME)
4648 AC_MSG_RESULT($ADA_LIBNAME)
4649 ])dnl
4650 dnl ---------------------------------------------------------------------------
4651 dnl CF_WITH_ADA_OBJECTS version: 2 updated: 2010/06/26 17:35:58
4652 dnl -------------------
4653 dnl Command-line option to specify where Ada objects will install.
4654 AC_DEFUN([CF_WITH_ADA_OBJECTS],[
4655 AC_MSG_CHECKING(for ada-objects)
4656 CF_WITH_PATH(ada-objects,
4657    [  --with-ada-objects=DIR  Ada objects are in DIR],
4658    ADA_OBJECTS,
4659    PREFIX/lib/ada/adalib,
4660    [$]prefix/lib/ada/adalib)
4661 AC_SUBST(ADA_OBJECTS)
4662 AC_MSG_RESULT($ADA_OBJECTS)
4663 ])dnl
4664 dnl ---------------------------------------------------------------------------
4665 dnl CF_WITH_ADA_SHAREDLIB version: 5 updated: 2018/07/21 19:10:35
4666 dnl ---------------------
4667 dnl Command-line option to specify if an Ada95 shared-library should be built,
4668 dnl and optionally what its soname should be.
4669 AC_DEFUN([CF_WITH_ADA_SHAREDLIB],[
4670 AC_REQUIRE([CF_GNAT_PROJECTS])
4671 AC_MSG_CHECKING(if an Ada95 shared-library should be built)
4672 AC_ARG_WITH(ada-sharedlib,
4673         [  --with-ada-sharedlib=soname build shared-library (requires GNAT projects)],
4674         [with_ada_sharedlib=$withval],
4675         [with_ada_sharedlib=no])
4676 AC_MSG_RESULT($with_ada_sharedlib)
4677
4678 if test "x$with_ada_sharedlib" != xno
4679 then
4680         if test "x$cf_gnat_projects" != xyes
4681         then
4682                 AC_MSG_WARN(disabling shared-library since GNAT projects are not supported)
4683                 with_ada_sharedlib=no
4684         fi
4685 fi
4686
4687 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
4688 MAKE_ADA_SHAREDLIB="#"
4689
4690 if test "x$with_ada_sharedlib" != xno
4691 then
4692         MAKE_ADA_SHAREDLIB=
4693         if test "x$with_ada_sharedlib" != xyes
4694         then
4695                 ADA_SHAREDLIB="$with_ada_sharedlib"
4696         fi
4697 fi
4698
4699 AC_SUBST(ADA_SHAREDLIB)
4700 AC_SUBST(MAKE_ADA_SHAREDLIB)
4701 ])dnl
4702 dnl ---------------------------------------------------------------------------
4703 dnl CF_WITH_CURSES_DIR version: 4 updated: 2021/01/02 19:22:58
4704 dnl ------------------
4705 dnl Wrapper for AC_ARG_WITH to specify directory under which to look for curses
4706 dnl libraries.
4707 AC_DEFUN([CF_WITH_CURSES_DIR],[
4708
4709 AC_MSG_CHECKING(for specific curses-directory)
4710 AC_ARG_WITH(curses-dir,
4711         [  --with-curses-dir=DIR   directory in which (n)curses is installed],
4712         [cf_cv_curses_dir=$withval],
4713         [cf_cv_curses_dir=no])
4714 AC_MSG_RESULT($cf_cv_curses_dir)
4715
4716 if test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no"
4717 then
4718         CF_PATH_SYNTAX(withval)
4719         if test -d "$cf_cv_curses_dir"
4720         then
4721                 CF_ADD_INCDIR($cf_cv_curses_dir/include)
4722                 CF_ADD_LIBDIR($cf_cv_curses_dir/lib)
4723         fi
4724 fi
4725 ])dnl
4726 dnl ---------------------------------------------------------------------------
4727 dnl CF_WITH_LIB_PREFIX version: 2 updated: 2021/01/01 16:53:59
4728 dnl ------------------
4729 dnl Allow the library-prefix to be overridden.  OS/2 EMX originally had no
4730 dnl "lib" prefix, e.g., because it used the dll naming convention.
4731 dnl
4732 dnl $1 = variable to set
4733 AC_DEFUN([CF_WITH_LIB_PREFIX],
4734 [
4735 AC_MSG_CHECKING(if you want to have a library-prefix)
4736 AC_ARG_WITH(lib-prefix,
4737         [  --with-lib-prefix       override library-prefix],
4738         [with_lib_prefix=$withval],
4739         [with_lib_prefix=auto])
4740 AC_MSG_RESULT($with_lib_prefix)
4741
4742 if test "$with_lib_prefix" = auto
4743 then
4744         CF_LIB_PREFIX($1)
4745 elif test "$with_lib_prefix" = no
4746 then
4747         LIB_PREFIX=
4748 else
4749         LIB_PREFIX=$with_lib_prefix
4750 fi
4751 ])dnl
4752 dnl ---------------------------------------------------------------------------
4753 dnl CF_WITH_PATH version: 12 updated: 2021/09/04 06:35:04
4754 dnl ------------
4755 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
4756 dnl defaulting to yes/no.
4757 dnl
4758 dnl $1 = option name
4759 dnl $2 = help-text
4760 dnl $3 = environment variable to set
4761 dnl $4 = default value, shown in the help-message, must be a constant
4762 dnl $5 = default value, if it is an expression & cannot be in the help-message
4763 dnl
4764 AC_DEFUN([CF_WITH_PATH],
4765 [AC_ARG_WITH($1,[$2 ](default: ifelse([$4],,empty,[$4])),,
4766 ifelse([$4],,[withval="${$3}"],[withval="${$3:-ifelse([$5],,[$4],[$5])}"]))dnl
4767 if ifelse([$5],,true,[test -n "$5"]) ; then
4768 CF_PATH_SYNTAX(withval)
4769 fi
4770 eval $3="$withval"
4771 AC_SUBST($3)dnl
4772 ])dnl
4773 dnl ---------------------------------------------------------------------------
4774 dnl CF_WITH_PKG_CONFIG_LIBDIR version: 16 updated: 2021/10/26 16:50:11
4775 dnl -------------------------
4776 dnl Allow the choice of the pkg-config library directory to be overridden.
4777 dnl
4778 dnl pkg-config uses a search-list built from these colon-separated lists of
4779 dnl directories:
4780 dnl a) $PKG_CONFIG_PATH (tested first, added if set)
4781 dnl b) $PKG_CONFIG_LIBDIR (tested second, added if set)
4782 dnl c) builtin-list (added if $PKG_CONFIG_LIBDIR is not set)
4783 dnl
4784 dnl pkgconf (used with some systems such as FreeBSD in place of pkg-config)
4785 dnl optionally ignores $PKG_CONFIG_LIBDIR.
4786 AC_DEFUN([CF_WITH_PKG_CONFIG_LIBDIR],[
4787
4788 case "$PKG_CONFIG" in
4789 (no|none|yes)
4790         AC_MSG_CHECKING(for pkg-config library directory)
4791         ;;
4792 (*)
4793         AC_MSG_CHECKING(for $PKG_CONFIG library directory)
4794         ;;
4795 esac
4796
4797 cf_search_path=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/:/ /g' -e 's,^[[  ]]*,,'`
4798 AC_ARG_WITH(pkg-config-libdir,
4799         [  --with-pkg-config-libdir=XXX use given directory for installing pc-files],
4800         [cf_search_path=$withval],
4801         [test "x$PKG_CONFIG" != xnone && cf_search_path=yes])
4802
4803 case x$cf_search_path in
4804 (x/*)
4805         ;;
4806 (xyes)
4807         cf_search_path=
4808         CF_VERBOSE(auto...)
4809         # Look for the library directory using the same prefix as the executable
4810         AC_MSG_CHECKING(for search-list)
4811         if test "x$PKG_CONFIG" != xnone
4812         then
4813                 # works for pkg-config since version 0.24 (2009)
4814                 cf_pkg_program=`echo "$PKG_CONFIG" | sed -e 's,^.*/,,'`
4815                 cf_search_path=`"$PKG_CONFIG" --variable=pc_path "$cf_pkg_program" 2>/dev/null | tr : ' '`
4816
4817                 # works for pkgconf since version 0.8.3 (2012)
4818                 test -z "$cf_search_path" && \
4819                 cf_search_path=`pkgconf --variable=pc_path pkgconf 2>/dev/null | tr : ' '`
4820
4821                 # works for pkg-config since import in 2005 of original 2001 HP code.
4822                 test -z "$cf_search_path" && \
4823                 cf_search_path=`
4824                 "$PKG_CONFIG" --debug --exists no-such-package 2>&1 | $AWK "\
4825 /^Scanning directory (#[1-9][0-9]* )?'.*'$/{ \
4826         sub(\"^[[^']]*'\",\"\"); \
4827         sub(\"'.*\",\"\"); \
4828         printf \" %s\", \\[$]0; } \
4829 { next; } \
4830 "`
4831         fi
4832
4833         AC_MSG_RESULT($cf_search_path)
4834
4835         ;;
4836 (*)
4837         ;;
4838 esac
4839
4840 AC_MSG_CHECKING(for first directory)
4841 cf_pkg_config_path=none
4842 for cf_config in $cf_search_path
4843 do
4844         if test -d "$cf_config"
4845         then
4846                 cf_pkg_config_path=$cf_config
4847                 break
4848         fi
4849 done
4850 AC_MSG_RESULT($cf_pkg_config_path)
4851
4852 if test "x$cf_pkg_config_path" != xnone ; then
4853         # limit this to the first directory found
4854         PKG_CONFIG_LIBDIR="$cf_pkg_config_path"
4855 fi
4856
4857 if test -z "$PKG_CONFIG_LIBDIR" && test -n "$cf_search_path"
4858 then
4859         AC_MSG_CHECKING(for workaround)
4860         if test "$prefix" = "NONE" ; then
4861                 cf_prefix="$ac_default_prefix"
4862         else
4863                 cf_prefix="$prefix"
4864         fi
4865         eval cf_libdir=$libdir
4866         cf_libdir=`echo "$cf_libdir" | sed -e "s,^NONE,$cf_prefix,"`
4867         cf_backup=
4868         for cf_config in $cf_search_path
4869         do
4870                 case $cf_config in
4871                 $cf_libdir/pkgconfig)
4872                         PKG_CONFIG_LIBDIR=$cf_libdir/pkgconfig
4873                         break
4874                         ;;
4875                 *)
4876                         test -z "$cf_backup" && cf_backup=$cf_config
4877                         ;;
4878                 esac
4879         done
4880         test -z "$PKG_CONFIG_LIBDIR" && PKG_CONFIG_LIBDIR=$cf_backup
4881         AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
4882 fi
4883
4884 AC_SUBST(PKG_CONFIG_LIBDIR)
4885 ])dnl
4886 dnl ---------------------------------------------------------------------------
4887 dnl CF_WITH_PTHREAD version: 7 updated: 2015/04/18 08:56:57
4888 dnl ---------------
4889 dnl Check for POSIX thread library.
4890 AC_DEFUN([CF_WITH_PTHREAD],
4891 [
4892 AC_MSG_CHECKING(if you want to link with the pthread library)
4893 AC_ARG_WITH(pthread,
4894         [  --with-pthread          use POSIX thread library],
4895         [with_pthread=$withval],
4896         [with_pthread=no])
4897 AC_MSG_RESULT($with_pthread)
4898
4899 if test "$with_pthread" != no ; then
4900         AC_CHECK_HEADER(pthread.h,[
4901         AC_DEFINE(HAVE_PTHREADS_H,1,[Define to 1 if we have pthreads.h header])
4902
4903         for cf_lib_pthread in pthread c_r
4904         do
4905             AC_MSG_CHECKING(if we can link with the $cf_lib_pthread library)
4906             cf_save_LIBS="$LIBS"
4907             CF_ADD_LIB($cf_lib_pthread)
4908             AC_TRY_LINK([
4909 #include <pthread.h>
4910 ],[
4911                 int rc = pthread_create(0,0,0,0);
4912                 int r2 = pthread_mutexattr_settype(0, 0);
4913 ],[with_pthread=yes],[with_pthread=no])
4914             LIBS="$cf_save_LIBS"
4915             AC_MSG_RESULT($with_pthread)
4916             test "$with_pthread" = yes && break
4917         done
4918
4919         if test "$with_pthread" = yes ; then
4920             CF_ADD_LIB($cf_lib_pthread)
4921             AC_DEFINE(HAVE_LIBPTHREADS,1,[Define to 1 if we have pthreads library])
4922         else
4923             AC_MSG_ERROR(Cannot link with pthread library)
4924         fi
4925         ])
4926 fi
4927 ])
4928 dnl ---------------------------------------------------------------------------
4929 dnl CF_WITH_SYSTYPE version: 1 updated: 2013/01/26 16:26:12
4930 dnl ---------------
4931 dnl For testing, override the derived host system-type which is used to decide
4932 dnl things such as the linker commands used to build shared libraries.  This is
4933 dnl normally chosen automatically based on the type of system which you are
4934 dnl building on.  We use it for testing the configure script.
4935 dnl
4936 dnl This is different from the --host option: it is used only for testing parts
4937 dnl of the configure script which would not be reachable with --host since that
4938 dnl relies on the build environment being real, rather than mocked up.
4939 AC_DEFUN([CF_WITH_SYSTYPE],[
4940 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
4941 AC_ARG_WITH(system-type,
4942         [  --with-system-type=XXX  test: override derived host system-type],
4943 [AC_MSG_WARN(overriding system type to $withval)
4944         cf_cv_system_name=$withval
4945         host_os=$withval
4946 ])
4947 ])dnl
4948 dnl ---------------------------------------------------------------------------
4949 dnl CF_XOPEN_SOURCE version: 59 updated: 2021/08/28 15:20:37
4950 dnl ---------------
4951 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
4952 dnl or adapt to the vendor's definitions to get equivalent functionality,
4953 dnl without losing the common non-POSIX features.
4954 dnl
4955 dnl Parameters:
4956 dnl     $1 is the nominal value for _XOPEN_SOURCE
4957 dnl     $2 is the nominal value for _POSIX_C_SOURCE
4958 AC_DEFUN([CF_XOPEN_SOURCE],[
4959 AC_REQUIRE([AC_CANONICAL_HOST])
4960 AC_REQUIRE([CF_POSIX_VISIBLE])
4961
4962 if test "$cf_cv_posix_visible" = no; then
4963
4964 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
4965 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
4966 cf_xopen_source=
4967
4968 case "$host_os" in
4969 (aix[[4-7]]*)
4970         cf_xopen_source="-D_ALL_SOURCE"
4971         ;;
4972 (msys)
4973         cf_XOPEN_SOURCE=600
4974         ;;
4975 (darwin[[0-8]].*)
4976         cf_xopen_source="-D_APPLE_C_SOURCE"
4977         ;;
4978 (darwin*)
4979         cf_xopen_source="-D_DARWIN_C_SOURCE"
4980         cf_XOPEN_SOURCE=
4981         ;;
4982 (freebsd*|dragonfly*|midnightbsd*)
4983         # 5.x headers associate
4984         #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
4985         #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
4986         cf_POSIX_C_SOURCE=200112L
4987         cf_XOPEN_SOURCE=600
4988         cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
4989         ;;
4990 (hpux11*)
4991         cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
4992         ;;
4993 (hpux*)
4994         cf_xopen_source="-D_HPUX_SOURCE"
4995         ;;
4996 (irix[[56]].*)
4997         cf_xopen_source="-D_SGI_SOURCE"
4998         cf_XOPEN_SOURCE=
4999         ;;
5000 (linux*|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin)
5001         CF_GNU_SOURCE($cf_XOPEN_SOURCE)
5002         ;;
5003 (minix*)
5004         cf_xopen_source="-D_NETBSD_SOURCE" # POSIX.1-2001 features are ifdef'd with this...
5005         ;;
5006 (mirbsd*)
5007         # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types
5008         cf_XOPEN_SOURCE=
5009         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
5010         ;;
5011 (netbsd*)
5012         cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
5013         ;;
5014 (openbsd[[6-9]]*)
5015         # OpenBSD 6.x has broken locale support, both compile-time and runtime.
5016         # see https://www.mail-archive.com/bugs@openbsd.org/msg13200.html
5017         # Abusing the conformance level is a workaround.
5018         AC_MSG_WARN(this system does not provide usable locale support)
5019         cf_xopen_source="-D_BSD_SOURCE"
5020         cf_XOPEN_SOURCE=700
5021         ;;
5022 (openbsd[[4-5]]*)
5023         # setting _XOPEN_SOURCE lower than 500 breaks g++ compile with wchar.h, needed for ncursesw
5024         cf_xopen_source="-D_BSD_SOURCE"
5025         cf_XOPEN_SOURCE=600
5026         ;;
5027 (openbsd*)
5028         # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
5029         ;;
5030 (osf[[45]]*)
5031         cf_xopen_source="-D_OSF_SOURCE"
5032         ;;
5033 (nto-qnx*)
5034         cf_xopen_source="-D_QNX_SOURCE"
5035         ;;
5036 (sco*)
5037         # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
5038         ;;
5039 (solaris2.*)
5040         cf_xopen_source="-D__EXTENSIONS__"
5041         cf_cv_xopen_source=broken
5042         ;;
5043 (sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2)
5044         cf_XOPEN_SOURCE=
5045         cf_POSIX_C_SOURCE=
5046         ;;
5047 (*)
5048         CF_TRY_XOPEN_SOURCE
5049         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
5050         ;;
5051 esac
5052
5053 if test -n "$cf_xopen_source" ; then
5054         CF_APPEND_CFLAGS($cf_xopen_source,true)
5055 fi
5056
5057 dnl In anything but the default case, we may have system-specific setting
5058 dnl which is still not guaranteed to provide all of the entrypoints that
5059 dnl _XOPEN_SOURCE would yield.
5060 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
5061         AC_MSG_CHECKING(if _XOPEN_SOURCE really is set)
5062         AC_TRY_COMPILE([#include <stdlib.h>],[
5063 #ifndef _XOPEN_SOURCE
5064 make an error
5065 #endif],
5066         [cf_XOPEN_SOURCE_set=yes],
5067         [cf_XOPEN_SOURCE_set=no])
5068         AC_MSG_RESULT($cf_XOPEN_SOURCE_set)
5069         if test "$cf_XOPEN_SOURCE_set" = yes
5070         then
5071                 AC_TRY_COMPILE([#include <stdlib.h>],[
5072 #if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
5073 make an error
5074 #endif],
5075                 [cf_XOPEN_SOURCE_set_ok=yes],
5076                 [cf_XOPEN_SOURCE_set_ok=no])
5077                 if test "$cf_XOPEN_SOURCE_set_ok" = no
5078                 then
5079                         AC_MSG_WARN(_XOPEN_SOURCE is lower than requested)
5080                 fi
5081         else
5082                 CF_TRY_XOPEN_SOURCE
5083         fi
5084 fi
5085 fi # cf_cv_posix_visible
5086 ])
5087 dnl ---------------------------------------------------------------------------
5088 dnl CF__SED_TRIMBLANKS version: 1 updated: 2021/01/02 09:31:20
5089 dnl ------------------
5090 dnl Trim something using sed, then trim extra whitespace
5091 dnl $1 = extra parameters, e.g., in CF_STRIP_G_OPT
5092 define([CF__SED_TRIMBLANKS],[sed ifelse($1,,,[$1] )-e 's%[[     ]]% %g' -e 's% [[ ]]*% %g' -e 's%^ %%' -e 's% [$]%%'])dnl