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