]> ncurses.scripts.mit.edu Git - ncurses.git/blob - aclocal.m4
ncurses 6.1 - patch 20180224
[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.833 2018/01/16 21:45:49 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: 14 updated: 2015/05/25 20:53:04
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                           CPPFLAGS="$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: 20 updated: 2015/04/18 08:56:57
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 -I$cf_cv_header_path_$3"
1766                         AC_TRY_COMPILE([$1],[$2],[
1767                                 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
1768                                 cf_cv_find_linkage_$3=maybe
1769                                 cf_test_CPPFLAGS="$CPPFLAGS"
1770                                 break],[
1771                                 CPPFLAGS="$cf_save_CPPFLAGS"
1772                                 ])
1773                 fi
1774         done
1775
1776         if test "$cf_cv_find_linkage_$3" = maybe ; then
1777
1778                 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
1779
1780                 cf_save_LIBS="$LIBS"
1781                 cf_save_LDFLAGS="$LDFLAGS"
1782
1783                 ifelse([$6],,,[
1784                 CPPFLAGS="$cf_test_CPPFLAGS"
1785                 LIBS="-l$3 $7 $cf_save_LIBS"
1786                 AC_TRY_LINK([$1],[$2],[
1787                         CF_VERBOSE(... found $3 library in system)
1788                         cf_cv_find_linkage_$3=yes])
1789                         CPPFLAGS="$cf_save_CPPFLAGS"
1790                         LIBS="$cf_save_LIBS"
1791                         ])
1792
1793                 if test "$cf_cv_find_linkage_$3" != yes ; then
1794                         CF_LIBRARY_PATH(cf_search,$3)
1795                         for cf_cv_library_path_$3 in $cf_search
1796                         do
1797                                 if test -d $cf_cv_library_path_$3 ; then
1798                                         CF_VERBOSE(... testing $cf_cv_library_path_$3)
1799                                         CPPFLAGS="$cf_test_CPPFLAGS"
1800                                         LIBS="-l$3 $7 $cf_save_LIBS"
1801                                         LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
1802                                         AC_TRY_LINK([$1],[$2],[
1803                                         CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
1804                                         cf_cv_find_linkage_$3=yes
1805                                         cf_cv_library_file_$3="-l$3"
1806                                         break],[
1807                                         CPPFLAGS="$cf_save_CPPFLAGS"
1808                                         LIBS="$cf_save_LIBS"
1809                                         LDFLAGS="$cf_save_LDFLAGS"
1810                                         ])
1811                                 fi
1812                         done
1813                         CPPFLAGS="$cf_save_CPPFLAGS"
1814                         LDFLAGS="$cf_save_LDFLAGS"
1815                 fi
1816
1817         else
1818                 cf_cv_find_linkage_$3=no
1819         fi
1820         ],$7)
1821 ])
1822
1823 LIBS="$cf_save_LIBS"
1824
1825 if test "$cf_cv_find_linkage_$3" = yes ; then
1826 ifelse([$4],,[
1827         CF_ADD_INCDIR($cf_cv_header_path_$3)
1828         CF_ADD_LIBDIR($cf_cv_library_path_$3)
1829         CF_ADD_LIB($3)
1830 ],[$4])
1831 else
1832 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
1833 fi
1834 ])dnl
1835 dnl ---------------------------------------------------------------------------
1836 dnl CF_FIND_SUB_INCDIR version: 2 updated: 2015/04/17 21:13:04
1837 dnl ------------------
1838 dnl Find an include-directory with the given leaf-name.  This is useful for
1839 dnl example with FreeBSD ports, which use this convention to distinguish
1840 dnl different versions of the same port.
1841 AC_DEFUN([CF_FIND_SUB_INCDIR],[
1842         CF_SUBDIR_PATH(cf_search,$1,include)
1843         for cf_item in $cf_search
1844         do
1845                 case $cf_item in
1846                 (*/$1)
1847                         CF_ADD_INCDIR($cf_item)
1848                         ;;
1849                 esac
1850         done
1851 ])dnl
1852 dnl ---------------------------------------------------------------------------
1853 dnl CF_FIND_SUB_LIBDIR version: 2 updated: 2015/04/17 21:13:04
1854 dnl ------------------
1855 dnl Find a library-directory with the given leaf-name.  This is useful for
1856 dnl example with FreeBSD ports, which use this convention to distinguish
1857 dnl different versions of the same port.
1858 AC_DEFUN([CF_FIND_SUB_LIBDIR],[
1859         CF_SUBDIR_PATH(cf_search,$1,lib)
1860         for cf_item in $cf_search
1861         do
1862                 case $cf_item in
1863                 (*/$1)
1864                         CF_ADD_LIBDIR($cf_item)
1865                         ;;
1866                 esac
1867         done
1868 ])dnl
1869 dnl ---------------------------------------------------------------------------
1870 dnl CF_FIXUP_ADAFLAGS version: 2 updated: 2015/04/17 21:13:04
1871 dnl -----------------
1872 dnl make ADAFLAGS consistent with CFLAGS
1873 AC_DEFUN([CF_FIXUP_ADAFLAGS],[
1874         AC_MSG_CHECKING(optimization options for ADAFLAGS)
1875         case "$CFLAGS" in
1876         (*-g*)
1877                 CF_ADD_ADAFLAGS(-g)
1878                 ;;
1879         esac
1880         case "$CFLAGS" in
1881         (*-O*)
1882                 cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
1883                 CF_ADD_ADAFLAGS($cf_O_flag)
1884                 ;;
1885         esac
1886         AC_MSG_RESULT($ADAFLAGS)
1887 ])dnl
1888 dnl ---------------------------------------------------------------------------
1889 dnl CF_FORGET_TOOL version: 1 updated: 2013/04/06 18:03:09
1890 dnl --------------
1891 dnl Forget that we saw the given tool.
1892 AC_DEFUN([CF_FORGET_TOOL],[
1893 unset ac_cv_prog_ac_ct_$1
1894 unset ac_ct_$1
1895 unset $1
1896 ])dnl
1897 dnl ---------------------------------------------------------------------------
1898 dnl CF_FUNC_DLSYM version: 4 updated: 2015/09/12 14:46:44
1899 dnl -------------
1900 dnl Test for dlsym() and related functions, as well as libdl.
1901 dnl
1902 dnl Sets
1903 dnl     $cf_have_dlsym
1904 dnl     $cf_have_libdl
1905 AC_DEFUN([CF_FUNC_DLSYM],[
1906 cf_have_dlsym=no
1907 AC_CHECK_FUNC(dlsym,cf_have_dlsym=yes,[
1908
1909 cf_have_libdl=no
1910 AC_CHECK_LIB(dl,dlsym,[
1911         cf_have_dlsym=yes
1912         cf_have_libdl=yes])])
1913
1914 if test "$cf_have_dlsym" = yes ; then
1915         test "$cf_have_libdl" = yes && { CF_ADD_LIB(dl) }
1916
1917         AC_MSG_CHECKING(whether able to link to dl*() functions)
1918         AC_TRY_LINK([#include <dlfcn.h>],[
1919                 void *obj;
1920                 if ((obj = dlopen("filename", 0)) != 0) {
1921                         if (dlsym(obj, "symbolname") == 0) {
1922                         dlclose(obj);
1923                         }
1924                 }],[
1925                 AC_DEFINE(HAVE_LIBDL,1,[Define to 1 if we have dl library])],[
1926                 AC_MSG_ERROR(Cannot link test program for libdl)])
1927         AC_MSG_RESULT(ok)
1928 else
1929         AC_MSG_ERROR(Cannot find dlsym function)
1930 fi
1931 ])
1932 dnl ---------------------------------------------------------------------------
1933 dnl CF_FUNC_MEMMOVE version: 9 updated: 2017/01/21 11:06:25
1934 dnl ---------------
1935 dnl Check for memmove, or a bcopy that can handle overlapping copy.  If neither
1936 dnl is found, add our own version of memmove to the list of objects.
1937 AC_DEFUN([CF_FUNC_MEMMOVE],
1938 [
1939 AC_CHECK_FUNC(memmove,,[
1940 AC_CHECK_FUNC(bcopy,[
1941         AC_CACHE_CHECK(if bcopy does overlapping moves,cf_cv_good_bcopy,[
1942                 AC_TRY_RUN([
1943 int main(void) {
1944         static char data[] = "abcdefghijklmnopqrstuwwxyz";
1945         char temp[40];
1946         bcopy(data, temp, sizeof(data));
1947         bcopy(temp+10, temp, 15);
1948         bcopy(temp+5, temp+15, 10);
1949         ${cf_cv_main_return:-return} (strcmp(temp, "klmnopqrstuwwxypqrstuwwxyz"));
1950 }
1951                 ],
1952                 [cf_cv_good_bcopy=yes],
1953                 [cf_cv_good_bcopy=no],
1954                 [cf_cv_good_bcopy=unknown])
1955                 ])
1956         ],[cf_cv_good_bcopy=no])
1957         if test "$cf_cv_good_bcopy" = yes ; then
1958                 AC_DEFINE(USE_OK_BCOPY,1,[Define to 1 to use bcopy when memmove is unavailable])
1959         else
1960                 AC_DEFINE(USE_MY_MEMMOVE,1,[Define to 1 to use replacement function when memmove is unavailable])
1961         fi
1962 ])])dnl
1963 dnl ---------------------------------------------------------------------------
1964 dnl CF_FUNC_NANOSLEEP version: 5 updated: 2017/01/21 11:06:25
1965 dnl -----------------
1966 dnl Check for existence of workable nanosleep() function.  Some systems, e.g.,
1967 dnl AIX 4.x, provide a non-working version.
1968 AC_DEFUN([CF_FUNC_NANOSLEEP],[
1969 AC_CACHE_CHECK(if nanosleep really works,cf_cv_func_nanosleep,[
1970 AC_TRY_RUN([
1971 #include <stdio.h>
1972 #include <errno.h>
1973 #include <time.h>
1974
1975 #ifdef HAVE_SYS_TIME_H
1976 #include <sys/time.h>
1977 #endif
1978
1979 int main(void) {
1980         struct timespec ts1, ts2;
1981         int code;
1982         ts1.tv_sec  = 0;
1983         ts1.tv_nsec = 750000000;
1984         ts2.tv_sec  = 0;
1985         ts2.tv_nsec = 0;
1986         errno = 0;
1987         code = nanosleep(&ts1, &ts2); /* on failure errno is ENOSYS. */
1988         ${cf_cv_main_return:-return}(code != 0);
1989 }
1990 ],
1991         [cf_cv_func_nanosleep=yes],
1992         [cf_cv_func_nanosleep=no],
1993         [cf_cv_func_nanosleep=unknown])])
1994
1995 test "$cf_cv_func_nanosleep" = "yes" && AC_DEFINE(HAVE_NANOSLEEP,1,[Define to 1 if we have nanosleep()])
1996 ])
1997 dnl ---------------------------------------------------------------------------
1998 dnl CF_FUNC_OPENPTY version: 5 updated: 2015/09/12 14:46:50
1999 dnl ---------------
2000 dnl Check for openpty() function, along with <pty.h> header.  It may need the
2001 dnl "util" library as well.
2002 AC_DEFUN([CF_FUNC_OPENPTY],
2003 [
2004 AC_CHECK_LIB(util,openpty,cf_cv_lib_util=yes,cf_cv_lib_util=no)
2005 AC_CACHE_CHECK(for openpty header,cf_cv_func_openpty,[
2006         cf_save_LIBS="$LIBS"
2007         test $cf_cv_lib_util = yes && { CF_ADD_LIB(util) }
2008         for cf_header in pty.h libutil.h util.h
2009         do
2010         AC_TRY_LINK([
2011 #include <$cf_header>
2012 ],[
2013         int x = openpty((int *)0, (int *)0, (char *)0,
2014                                    (struct termios *)0, (struct winsize *)0);
2015 ],[
2016                 cf_cv_func_openpty=$cf_header
2017                 break
2018 ],[
2019                 cf_cv_func_openpty=no
2020 ])
2021         done
2022         LIBS="$cf_save_LIBS"
2023 ])
2024 ])dnl
2025 dnl ---------------------------------------------------------------------------
2026 dnl CF_FUNC_POLL version: 9 updated: 2015/10/10 13:27:32
2027 dnl ------------
2028 dnl See if the poll function really works.  Some platforms have poll(), but
2029 dnl it does not work for terminals or files.
2030 AC_DEFUN([CF_FUNC_POLL],[
2031 tty 2>&1 >/dev/null || { AC_CHECK_FUNCS(posix_openpt) }
2032 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[
2033 AC_TRY_RUN([
2034 #include <stdlib.h>
2035 #include <stdio.h>
2036 #include <unistd.h>
2037 #include <fcntl.h>
2038 #ifdef HAVE_POLL_H
2039 #include <poll.h>
2040 #else
2041 #include <sys/poll.h>
2042 #endif
2043 int main(void) {
2044         struct pollfd myfds;
2045         int ret;
2046
2047         /* check for Darwin bug with respect to "devices" */
2048         myfds.fd = open("/dev/null", 1);        /* O_WRONLY */
2049         if (myfds.fd < 0)
2050                 myfds.fd = 0;
2051         myfds.events = POLLIN;
2052         myfds.revents = 0;
2053
2054         ret = poll(&myfds, 1, 100);
2055
2056         if (ret < 0 || (myfds.revents & POLLNVAL)) {
2057                 ret = -1;
2058         } else {
2059                 int fd = 0;
2060                 if (!isatty(fd)) {
2061                         fd = open("/dev/tty", 2);       /* O_RDWR */
2062                 }
2063 #ifdef HAVE_POSIX_OPENPT
2064                 if (fd < 0) {
2065                         fd = posix_openpt(O_RDWR);
2066                 }
2067 #endif
2068
2069                 if (fd >= 0) {
2070                         /* also check with standard input */
2071                         myfds.fd = fd;
2072                         myfds.events = POLLIN;
2073                         myfds.revents = 0;
2074                         ret = poll(&myfds, 1, 100);
2075                 } else {
2076                         ret = -1;
2077                 }
2078         }
2079         ${cf_cv_main_return:-return}(ret < 0);
2080 }],
2081         [cf_cv_working_poll=yes],
2082         [cf_cv_working_poll=no],
2083         [cf_cv_working_poll=unknown])])
2084 test "$cf_cv_working_poll" = "yes" && AC_DEFINE(HAVE_WORKING_POLL,1,[Define to 1 if the poll function seems to work])
2085 ])dnl
2086 dnl ---------------------------------------------------------------------------
2087 dnl CF_FUNC_TERMIOS version: 3 updated: 2012/10/06 17:56:13
2088 dnl ---------------
2089 dnl Some old/broken variations define tcgetattr() only as a macro in
2090 dnl termio(s).h
2091 AC_DEFUN([CF_FUNC_TERMIOS],[
2092 AC_REQUIRE([CF_STRUCT_TERMIOS])
2093 AC_CACHE_CHECK(for tcgetattr, cf_cv_have_tcgetattr,[
2094 AC_TRY_LINK([
2095 #include <sys/types.h>
2096 #ifdef HAVE_UNISTD_H
2097 #include <unistd.h>
2098 #endif
2099 #ifdef HAVE_TERMIOS_H
2100 #include <termios.h>
2101 #define TTY struct termios
2102 #else
2103 #ifdef HAVE_TERMIO_H
2104 #include <termio.h>
2105 #define TTY struct termio
2106 #endif
2107 #endif
2108 ],[
2109 TTY foo;
2110 tcgetattr(1, &foo);],
2111 [cf_cv_have_tcgetattr=yes],
2112 [cf_cv_have_tcgetattr=no])])
2113 test "$cf_cv_have_tcgetattr" = yes && AC_DEFINE(HAVE_TCGETATTR,1,[Define to 1 if we have tcgetattr])
2114 ])dnl
2115 dnl ---------------------------------------------------------------------------
2116 dnl CF_FUNC_VSSCANF version: 6 updated: 2015/04/18 08:56:57
2117 dnl ---------------
2118 dnl Check for vsscanf() function, which is in c9x but generally not in earlier
2119 dnl versions of C.  It is in the GNU C library, and can often be simulated by
2120 dnl other functions.
2121 AC_DEFUN([CF_FUNC_VSSCANF],
2122 [
2123 AC_CACHE_CHECK(for vsscanf function or workaround,cf_cv_func_vsscanf,[
2124 AC_TRY_LINK([
2125 #include <stdarg.h>
2126 #include <stdio.h>],[
2127         va_list ap;
2128         vsscanf("from", "%d", ap)],[cf_cv_func_vsscanf=vsscanf],[
2129 AC_TRY_LINK([
2130 #include <stdarg.h>
2131 #include <stdio.h>],[
2132         FILE strbuf;
2133         char *str = "from";
2134
2135         strbuf._flag = _IOREAD;
2136         strbuf._ptr = strbuf._base = (unsigned char *) str;
2137         strbuf._cnt = strlen(str);
2138         strbuf._file = _NFILE;
2139         return (vfscanf(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=vfscanf],[
2140 AC_TRY_LINK([
2141 #include <stdarg.h>
2142 #include <stdio.h>],[
2143         FILE strbuf;
2144         char *str = "from";
2145
2146         strbuf._flag = _IOREAD;
2147         strbuf._ptr = strbuf._base = (unsigned char *) str;
2148         strbuf._cnt = strlen(str);
2149         strbuf._file = _NFILE;
2150         return (_doscan(&strbuf, "%d", ap))],[cf_cv_func_vsscanf=_doscan],[
2151 cf_cv_func_vsscanf=no])])])])
2152
2153 case $cf_cv_func_vsscanf in
2154 (vsscanf) AC_DEFINE(HAVE_VSSCANF,1,[Define to 1 if we have vsscanf]);;
2155 (vfscanf) AC_DEFINE(HAVE_VFSCANF,1,[Define to 1 if we have vfscanf]);;
2156 (_doscan) AC_DEFINE(HAVE__DOSCAN,1,[Define to 1 if we have _doscan]);;
2157 esac
2158
2159 ])dnl
2160 dnl ---------------------------------------------------------------------------
2161 dnl CF_GCC_ATTRIBUTES version: 17 updated: 2015/04/12 15:39:00
2162 dnl -----------------
2163 dnl Test for availability of useful gcc __attribute__ directives to quiet
2164 dnl compiler warnings.  Though useful, not all are supported -- and contrary
2165 dnl to documentation, unrecognized directives cause older compilers to barf.
2166 AC_DEFUN([CF_GCC_ATTRIBUTES],
2167 [
2168 if test "$GCC" = yes
2169 then
2170 cat > conftest.i <<EOF
2171 #ifndef GCC_PRINTF
2172 #define GCC_PRINTF 0
2173 #endif
2174 #ifndef GCC_SCANF
2175 #define GCC_SCANF 0
2176 #endif
2177 #ifndef GCC_NORETURN
2178 #define GCC_NORETURN /* nothing */
2179 #endif
2180 #ifndef GCC_UNUSED
2181 #define GCC_UNUSED /* nothing */
2182 #endif
2183 EOF
2184 if test "$GCC" = yes
2185 then
2186         AC_CHECKING([for $CC __attribute__ directives])
2187 cat > conftest.$ac_ext <<EOF
2188 #line __oline__ "${as_me:-configure}"
2189 #include "confdefs.h"
2190 #include "conftest.h"
2191 #include "conftest.i"
2192 #if     GCC_PRINTF
2193 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
2194 #else
2195 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
2196 #endif
2197 #if     GCC_SCANF
2198 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
2199 #else
2200 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
2201 #endif
2202 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
2203 extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
2204 extern void foo(void) GCC_NORETURN;
2205 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { return 0; }
2206 EOF
2207         cf_printf_attribute=no
2208         cf_scanf_attribute=no
2209         for cf_attribute in scanf printf unused noreturn
2210         do
2211                 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
2212                 cf_directive="__attribute__(($cf_attribute))"
2213                 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
2214
2215                 case $cf_attribute in
2216                 (printf)
2217                         cf_printf_attribute=yes
2218                         cat >conftest.h <<EOF
2219 #define GCC_$cf_ATTRIBUTE 1
2220 EOF
2221                         ;;
2222                 (scanf)
2223                         cf_scanf_attribute=yes
2224                         cat >conftest.h <<EOF
2225 #define GCC_$cf_ATTRIBUTE 1
2226 EOF
2227                         ;;
2228                 (*)
2229                         cat >conftest.h <<EOF
2230 #define GCC_$cf_ATTRIBUTE $cf_directive
2231 EOF
2232                         ;;
2233                 esac
2234
2235                 if AC_TRY_EVAL(ac_compile); then
2236                         test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
2237                         cat conftest.h >>confdefs.h
2238                         case $cf_attribute in
2239                         (noreturn)
2240                                 AC_DEFINE_UNQUOTED(GCC_NORETURN,$cf_directive,[Define to noreturn-attribute for gcc])
2241                                 ;;
2242                         (printf)
2243                                 cf_value='/* nothing */'
2244                                 if test "$cf_printf_attribute" != no ; then
2245                                         cf_value='__attribute__((format(printf,fmt,var)))'
2246                                         AC_DEFINE(GCC_PRINTF,1,[Define to 1 if the compiler supports gcc-like printf attribute.])
2247                                 fi
2248                                 AC_DEFINE_UNQUOTED(GCC_PRINTFLIKE(fmt,var),$cf_value,[Define to printf-attribute for gcc])
2249                                 ;;
2250                         (scanf)
2251                                 cf_value='/* nothing */'
2252                                 if test "$cf_scanf_attribute" != no ; then
2253                                         cf_value='__attribute__((format(scanf,fmt,var)))'
2254                                         AC_DEFINE(GCC_SCANF,1,[Define to 1 if the compiler supports gcc-like scanf attribute.])
2255                                 fi
2256                                 AC_DEFINE_UNQUOTED(GCC_SCANFLIKE(fmt,var),$cf_value,[Define to sscanf-attribute for gcc])
2257                                 ;;
2258                         (unused)
2259                                 AC_DEFINE_UNQUOTED(GCC_UNUSED,$cf_directive,[Define to unused-attribute for gcc])
2260                                 ;;
2261                         esac
2262                 fi
2263         done
2264 else
2265         fgrep define conftest.i >>confdefs.h
2266 fi
2267 rm -rf conftest*
2268 fi
2269 ])dnl
2270 dnl ---------------------------------------------------------------------------
2271 dnl CF_GCC_VERSION version: 7 updated: 2012/10/18 06:46:33
2272 dnl --------------
2273 dnl Find version of gcc
2274 AC_DEFUN([CF_GCC_VERSION],[
2275 AC_REQUIRE([AC_PROG_CC])
2276 GCC_VERSION=none
2277 if test "$GCC" = yes ; then
2278         AC_MSG_CHECKING(version of $CC)
2279         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.]].*//'`"
2280         test -z "$GCC_VERSION" && GCC_VERSION=unknown
2281         AC_MSG_RESULT($GCC_VERSION)
2282 fi
2283 ])dnl
2284 dnl ---------------------------------------------------------------------------
2285 dnl CF_GCC_WARNINGS version: 32 updated: 2015/04/12 15:39:00
2286 dnl ---------------
2287 dnl Check if the compiler supports useful warning options.  There's a few that
2288 dnl we don't use, simply because they're too noisy:
2289 dnl
2290 dnl     -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
2291 dnl     -Wredundant-decls (system headers make this too noisy)
2292 dnl     -Wtraditional (combines too many unrelated messages, only a few useful)
2293 dnl     -Wwrite-strings (too noisy, but should review occasionally).  This
2294 dnl             is enabled for ncurses using "--enable-const".
2295 dnl     -pedantic
2296 dnl
2297 dnl Parameter:
2298 dnl     $1 is an optional list of gcc warning flags that a particular
2299 dnl             application might want to use, e.g., "no-unused" for
2300 dnl             -Wno-unused
2301 dnl Special:
2302 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
2303 dnl
2304 AC_DEFUN([CF_GCC_WARNINGS],
2305 [
2306 AC_REQUIRE([CF_GCC_VERSION])
2307 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
2308 CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
2309
2310 cat > conftest.$ac_ext <<EOF
2311 #line __oline__ "${as_me:-configure}"
2312 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
2313 EOF
2314
2315 if test "$INTEL_COMPILER" = yes
2316 then
2317 # The "-wdXXX" options suppress warnings:
2318 # remark #1419: external declaration in primary source file
2319 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
2320 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
2321 # remark #193: zero used for undefined preprocessing identifier
2322 # remark #593: variable "curs_sb_left_arrow" was set but never used
2323 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
2324 # remark #869: parameter "tw" was never referenced
2325 # remark #981: operands are evaluated in unspecified order
2326 # warning #279: controlling expression is constant
2327
2328         AC_CHECKING([for $CC warning options])
2329         cf_save_CFLAGS="$CFLAGS"
2330         EXTRA_CFLAGS="-Wall"
2331         for cf_opt in \
2332                 wd1419 \
2333                 wd1683 \
2334                 wd1684 \
2335                 wd193 \
2336                 wd593 \
2337                 wd279 \
2338                 wd810 \
2339                 wd869 \
2340                 wd981
2341         do
2342                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
2343                 if AC_TRY_EVAL(ac_compile); then
2344                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2345                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
2346                 fi
2347         done
2348         CFLAGS="$cf_save_CFLAGS"
2349
2350 elif test "$GCC" = yes
2351 then
2352         AC_CHECKING([for $CC warning options])
2353         cf_save_CFLAGS="$CFLAGS"
2354         EXTRA_CFLAGS=
2355         cf_warn_CONST=""
2356         test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
2357         cf_gcc_warnings="Wignored-qualifiers Wlogical-op Wvarargs"
2358         test "x$CLANG_COMPILER" = xyes && cf_gcc_warnings=
2359         for cf_opt in W Wall \
2360                 Wbad-function-cast \
2361                 Wcast-align \
2362                 Wcast-qual \
2363                 Wdeclaration-after-statement \
2364                 Wextra \
2365                 Winline \
2366                 Wmissing-declarations \
2367                 Wmissing-prototypes \
2368                 Wnested-externs \
2369                 Wpointer-arith \
2370                 Wshadow \
2371                 Wstrict-prototypes \
2372                 Wundef $cf_gcc_warnings $cf_warn_CONST $1
2373         do
2374                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
2375                 if AC_TRY_EVAL(ac_compile); then
2376                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2377                         case $cf_opt in
2378                         (Wcast-qual)
2379                                 CPPFLAGS="$CPPFLAGS -DXTSTRINGDEFINES"
2380                                 ;;
2381                         (Winline)
2382                                 case $GCC_VERSION in
2383                                 ([[34]].*)
2384                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
2385                                         continue;;
2386                                 esac
2387                                 ;;
2388                         (Wpointer-arith)
2389                                 case $GCC_VERSION in
2390                                 ([[12]].*)
2391                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
2392                                         continue;;
2393                                 esac
2394                                 ;;
2395                         esac
2396                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
2397                 fi
2398         done
2399         CFLAGS="$cf_save_CFLAGS"
2400 fi
2401 rm -rf conftest*
2402
2403 AC_SUBST(EXTRA_CFLAGS)
2404 ])dnl
2405 dnl ---------------------------------------------------------------------------
2406 dnl CF_GETOPT_HEADER version: 6 updated: 2014/07/22 14:45:54
2407 dnl ----------------
2408 dnl Check for getopt's variables which are commonly defined in stdlib.h,
2409 dnl unistd.h or (nonstandard) in getopt.h
2410 AC_DEFUN([CF_GETOPT_HEADER],
2411 [
2412 AC_HAVE_HEADERS(unistd.h getopt.h)
2413 AC_CACHE_CHECK(for header declaring getopt variables,cf_cv_getopt_header,[
2414 cf_cv_getopt_header=none
2415 for cf_header in stdio.h stdlib.h unistd.h getopt.h
2416 do
2417 AC_TRY_COMPILE([
2418 #include <$cf_header>],
2419 [int x = optind; char *y = optarg],
2420 [cf_cv_getopt_header=$cf_header
2421  break])
2422 done
2423 ])
2424 if test $cf_cv_getopt_header != none ; then
2425         AC_DEFINE(HAVE_GETOPT_HEADER,1,[Define to 1 if getopt variables are declared in header])
2426 fi
2427 if test $cf_cv_getopt_header = getopt.h ; then
2428         AC_DEFINE(NEED_GETOPT_H,1,[Define to 1 if we must include getopt.h])
2429 fi
2430 ])dnl
2431 dnl ---------------------------------------------------------------------------
2432 dnl CF_GNATPREP_OPT_T version: 1 updated: 2014/08/02 18:37:25
2433 dnl -----------------
2434 AC_DEFUN([CF_GNATPREP_OPT_T],[
2435 AC_CACHE_CHECK(if GNATPREP supports -T option,cf_cv_gnatprep_opt_t,[
2436 cf_cv_gnatprep_opt_t=no
2437 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
2438 ])
2439 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
2440 AC_SUBST(GNATPREP_OPTS)
2441 ])dnl
2442 dnl ---------------------------------------------------------------------------
2443 dnl CF_GNAT_GENERICS version: 3 updated: 2015/04/17 21:13:04
2444 dnl ----------------
2445 AC_DEFUN([CF_GNAT_GENERICS],
2446 [
2447 AC_REQUIRE([CF_GNAT_VERSION])
2448
2449 AC_MSG_CHECKING(if GNAT supports generics)
2450 case $cf_gnat_version in
2451 (3.[[1-9]]*|[[4-9]].*)
2452         cf_gnat_generics=yes
2453         ;;
2454 (*)
2455         cf_gnat_generics=no
2456         ;;
2457 esac
2458 AC_MSG_RESULT($cf_gnat_generics)
2459
2460 if test "$cf_gnat_generics" = yes
2461 then
2462         cf_compile_generics=generics
2463         cf_generic_objects="\${GENOBJS}"
2464 else
2465         cf_compile_generics=
2466         cf_generic_objects=
2467 fi
2468
2469 AC_SUBST(cf_compile_generics)
2470 AC_SUBST(cf_generic_objects)
2471 ])dnl
2472 dnl ---------------------------------------------------------------------------
2473 dnl CF_GNAT_PROJECTS version: 9 updated: 2018/01/14 15:46:09
2474 dnl ----------------
2475 dnl GNAT projects are configured with ".gpr" project files.
2476 dnl GNAT libraries are a further development, using the project feature.
2477 AC_DEFUN([CF_GNAT_PROJECTS],
2478 [
2479 AC_REQUIRE([CF_GNAT_VERSION])
2480 AC_REQUIRE([CF_DISABLE_GNAT_PROJECTS])
2481
2482 cf_gnat_libraries=no
2483 cf_gnat_projects=no
2484
2485 if test "$enable_gnat_projects" != no ; then
2486 AC_MSG_CHECKING(if GNAT supports project files)
2487 case $cf_gnat_version in
2488 (3.[[0-9]]*)
2489         ;;
2490 (*)
2491         case $cf_cv_system_name in
2492         (cygwin*|msys*)
2493                 ;;
2494         (*)
2495                 rm -rf conftest* *~conftest*
2496                 if mkdir conftest.src conftest.bin conftest.lib
2497                 then
2498                         cd conftest.src
2499                         rm -rf conftest* *~conftest*
2500                         cat >>library.gpr <<CF_EOF
2501 project Library is
2502   Kind := External ("LIB_KIND");
2503   for Library_Name use "ConfTest";
2504   for Object_Dir use ".";
2505   for Library_ALI_Dir use External("LIBRARY_DIR");
2506   for Library_Version use External ("SONAME");
2507   for Library_Kind use Kind;
2508   for Library_Dir use External("BUILD_DIR");
2509   Source_Dir := External ("SOURCE_DIR");
2510   for Source_Dirs use (Source_Dir);
2511 end Library;
2512 CF_EOF
2513                         cat >>confpackage.ads <<CF_EOF
2514 package ConfPackage is
2515    procedure conftest;
2516 end ConfPackage;
2517 CF_EOF
2518                         cat >>confpackage.adb <<CF_EOF
2519 with Text_IO;
2520 package body ConfPackage is
2521    procedure conftest is
2522    begin
2523       Text_IO.Put ("Hello World");
2524       Text_IO.New_Line;
2525    end conftest;
2526 end ConfPackage;
2527 CF_EOF
2528                         if ( $cf_ada_make $ADAFLAGS \
2529                                         -Plibrary.gpr \
2530                                         -XBUILD_DIR=`cd ../conftest.bin;pwd` \
2531                                         -XLIBRARY_DIR=`cd ../conftest.lib;pwd` \
2532                                         -XSOURCE_DIR=`pwd` \
2533                                         -XSONAME=libConfTest.so.1 \
2534                                         -XLIB_KIND=static 1>&AC_FD_CC 2>&1 ) ; then
2535                                 cf_gnat_projects=yes
2536                         fi
2537                         cd ..
2538                 fi
2539                 if test -f conftest.lib/confpackage.ali
2540                 then
2541                         cf_gnat_libraries=yes
2542                 fi
2543                 rm -rf conftest* *~conftest*
2544                 ;;
2545         esac
2546         ;;
2547 esac
2548 AC_MSG_RESULT($cf_gnat_projects)
2549 fi # enable_gnat_projects
2550
2551 if test $cf_gnat_projects = yes
2552 then
2553         AC_MSG_CHECKING(if GNAT supports libraries)
2554         AC_MSG_RESULT($cf_gnat_libraries)
2555 fi
2556
2557 if test "$cf_gnat_projects" = yes
2558 then
2559         USE_OLD_MAKERULES="#"
2560         USE_GNAT_PROJECTS=""
2561 else
2562         USE_OLD_MAKERULES=""
2563         USE_GNAT_PROJECTS="#"
2564 fi
2565
2566 if test "$cf_gnat_libraries" = yes
2567 then
2568         USE_GNAT_LIBRARIES=""
2569 else
2570         USE_GNAT_LIBRARIES="#"
2571 fi
2572
2573 AC_SUBST(USE_OLD_MAKERULES)
2574 AC_SUBST(USE_GNAT_PROJECTS)
2575 AC_SUBST(USE_GNAT_LIBRARIES)
2576 ])dnl
2577 dnl ---------------------------------------------------------------------------
2578 dnl CF_GNAT_SIGINT version: 1 updated: 2011/03/27 20:07:59
2579 dnl --------------
2580 dnl Check if gnat supports SIGINT, and presumably tasking.  For the latter, it
2581 dnl is noted that gnat may compile a tasking unit even for configurations which
2582 dnl fail at runtime.
2583 AC_DEFUN([CF_GNAT_SIGINT],[
2584 AC_CACHE_CHECK(if GNAT supports SIGINT,cf_cv_gnat_sigint,[
2585 CF_GNAT_TRY_LINK([with Ada.Interrupts.Names;
2586
2587 package ConfTest is
2588
2589    pragma Warnings (Off);  --  the next pragma exists since 3.11p
2590    pragma Unreserve_All_Interrupts;
2591    pragma Warnings (On);
2592
2593    protected Process is
2594       procedure Stop;
2595       function Continue return Boolean;
2596       pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT);
2597    private
2598       Done : Boolean := False;
2599    end Process;
2600
2601 end ConfTest;],
2602 [package body ConfTest is
2603    protected body Process is
2604       procedure Stop is
2605       begin
2606          Done := True;
2607       end Stop;
2608       function Continue return Boolean is
2609       begin
2610          return not Done;
2611       end Continue;
2612    end Process;
2613 end ConfTest;],
2614         [cf_cv_gnat_sigint=yes],
2615         [cf_cv_gnat_sigint=no])])
2616
2617 if test $cf_cv_gnat_sigint = yes ; then
2618         USE_GNAT_SIGINT=""
2619 else
2620         USE_GNAT_SIGINT="#"
2621 fi
2622 AC_SUBST(USE_GNAT_SIGINT)
2623 ])dnl
2624 dnl ---------------------------------------------------------------------------
2625 dnl CF_GNAT_TRY_LINK version: 3 updated: 2011/03/19 14:47:45
2626 dnl ----------------
2627 dnl Verify that a test program compiles/links with GNAT.
2628 dnl $cf_ada_make is set to the program that compiles/links
2629 dnl $ADAFLAGS may be set to the GNAT flags.
2630 dnl
2631 dnl $1 is the text of the spec
2632 dnl $2 is the text of the body
2633 dnl $3 is the shell command to execute if successful
2634 dnl $4 is the shell command to execute if not successful
2635 AC_DEFUN([CF_GNAT_TRY_LINK],
2636 [
2637 rm -rf conftest* *~conftest*
2638 cat >>conftest.ads <<CF_EOF
2639 $1
2640 CF_EOF
2641 cat >>conftest.adb <<CF_EOF
2642 $2
2643 CF_EOF
2644 if ( $cf_ada_make $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
2645 ifelse($3,,      :,[      $3])
2646 ifelse($4,,,[else
2647    $4])
2648 fi
2649 rm -rf conftest* *~conftest*
2650 ])dnl
2651 dnl ---------------------------------------------------------------------------
2652 dnl CF_GNAT_TRY_RUN version: 5 updated: 2011/03/19 14:47:45
2653 dnl ---------------
2654 dnl Verify that a test program compiles and runs with GNAT
2655 dnl $cf_ada_make is set to the program that compiles/links
2656 dnl $ADAFLAGS may be set to the GNAT flags.
2657 dnl
2658 dnl $1 is the text of the spec
2659 dnl $2 is the text of the body
2660 dnl $3 is the shell command to execute if successful
2661 dnl $4 is the shell command to execute if not successful
2662 AC_DEFUN([CF_GNAT_TRY_RUN],
2663 [
2664 rm -rf conftest* *~conftest*
2665 cat >>conftest.ads <<CF_EOF
2666 $1
2667 CF_EOF
2668 cat >>conftest.adb <<CF_EOF
2669 $2
2670 CF_EOF
2671 if ( $cf_ada_make $ADAFLAGS conftest 1>&AC_FD_CC 2>&1 ) ; then
2672    if ( ./conftest 1>&AC_FD_CC 2>&1 ) ; then
2673 ifelse($3,,      :,[      $3])
2674 ifelse($4,,,[   else
2675       $4])
2676    fi
2677 ifelse($4,,,[else
2678    $4])
2679 fi
2680 rm -rf conftest* *~conftest*
2681 ])dnl
2682 dnl ---------------------------------------------------------------------------
2683 dnl CF_GNAT_VERSION version: 20 updated: 2015/04/18 08:56:57
2684 dnl ---------------
2685 dnl Verify version of GNAT.
2686 AC_DEFUN([CF_GNAT_VERSION],
2687 [
2688 AC_MSG_CHECKING(for gnat version)
2689 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \
2690         grep '[[0-9]].[[0-9]][[0-9]]*' |\
2691         sed -e '2,$d' -e 's/[[^0-9 \.]]//g' -e 's/^[[ ]]*//' -e 's/ .*//'`
2692 AC_MSG_RESULT($cf_gnat_version)
2693
2694 case $cf_gnat_version in
2695 (3.1[[1-9]]*|3.[[2-9]]*|[[4-9]].*|20[[0-9]][[0-9]])
2696         cf_cv_prog_gnat_correct=yes
2697         ;;
2698 (*)
2699         AC_MSG_WARN(Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding.)
2700         cf_cv_prog_gnat_correct=no
2701         ;;
2702 esac
2703 ])
2704 dnl ---------------------------------------------------------------------------
2705 dnl CF_GNU_SOURCE version: 7 updated: 2016/08/05 05:15:37
2706 dnl -------------
2707 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
2708 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
2709 dnl (or misfeature) of glibc2, which breaks portability of many applications,
2710 dnl since it is interwoven with GNU extensions.
2711 dnl
2712 dnl Well, yes we could work around it...
2713 AC_DEFUN([CF_GNU_SOURCE],
2714 [
2715 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
2716 AC_TRY_COMPILE([#include <sys/types.h>],[
2717 #ifndef _XOPEN_SOURCE
2718 make an error
2719 #endif],
2720         [cf_cv_gnu_source=no],
2721         [cf_save="$CPPFLAGS"
2722          CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
2723          AC_TRY_COMPILE([#include <sys/types.h>],[
2724 #ifdef _XOPEN_SOURCE
2725 make an error
2726 #endif],
2727         [cf_cv_gnu_source=no],
2728         [cf_cv_gnu_source=yes])
2729         CPPFLAGS="$cf_save"
2730         ])
2731 ])
2732
2733 if test "$cf_cv_gnu_source" = yes
2734 then
2735 AC_CACHE_CHECK(if we should also define _DEFAULT_SOURCE,cf_cv_default_source,[
2736 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
2737         AC_TRY_COMPILE([#include <sys/types.h>],[
2738 #ifdef _DEFAULT_SOURCE
2739 make an error
2740 #endif],
2741                 [cf_cv_default_source=no],
2742                 [cf_cv_default_source=yes])
2743         ])
2744 test "$cf_cv_default_source" = yes && CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE"
2745 fi
2746 ])dnl
2747 dnl ---------------------------------------------------------------------------
2748 dnl CF_GPP_LIBRARY version: 12 updated: 2015/04/17 21:13:04
2749 dnl --------------
2750 dnl If we're trying to use g++, test if libg++ is installed (a rather common
2751 dnl problem :-).  If we have the compiler but no library, we'll be able to
2752 dnl configure, but won't be able to build the c++ demo program.
2753 AC_DEFUN([CF_GPP_LIBRARY],
2754 [
2755 cf_cxx_library=unknown
2756 case $cf_cv_system_name in
2757 (os2*)
2758         cf_gpp_libname=gpp
2759         ;;
2760 (*)
2761         cf_gpp_libname=g++
2762         ;;
2763 esac
2764 if test "$GXX" = yes; then
2765         AC_MSG_CHECKING([for lib$cf_gpp_libname])
2766         cf_save="$LIBS"
2767         CF_ADD_LIB($cf_gpp_libname)
2768         AC_TRY_LINK([
2769 #include <$cf_gpp_libname/builtin.h>
2770         ],
2771         [two_arg_error_handler_t foo2 = lib_error_handler],
2772         [cf_cxx_library=yes
2773          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
2774          if test "$cf_gpp_libname" = cpp ; then
2775             AC_DEFINE(HAVE_GPP_BUILTIN_H,1,[Define to 1 if we have gpp builtin.h])
2776          else
2777             AC_DEFINE(HAVE_GXX_BUILTIN_H,1,[Define to 1 if we have g++ builtin.h])
2778          fi],
2779         [AC_TRY_LINK([
2780 #include <builtin.h>
2781         ],
2782         [two_arg_error_handler_t foo2 = lib_error_handler],
2783         [cf_cxx_library=yes
2784          CF_ADD_LIB($cf_gpp_libname,CXXLIBS)
2785          AC_DEFINE(HAVE_BUILTIN_H,1,[Define to 1 if we have builtin.h])],
2786         [cf_cxx_library=no])])
2787         LIBS="$cf_save"
2788         AC_MSG_RESULT($cf_cxx_library)
2789 fi
2790 ])dnl
2791 dnl ---------------------------------------------------------------------------
2792 dnl CF_GXX_VERSION version: 8 updated: 2017/02/11 14:48:57
2793 dnl --------------
2794 dnl Check for version of g++
2795 AC_DEFUN([CF_GXX_VERSION],[
2796 AC_REQUIRE([AC_PROG_CPP])
2797 GXX_VERSION=none
2798 if test "$GXX" = yes; then
2799         AC_MSG_CHECKING(version of ${CXX:-g++})
2800         GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
2801         if test -z "$GXX_VERSION"
2802         then
2803                 GXX_VERSION=unknown
2804                 GXX=no
2805         fi
2806         AC_MSG_RESULT($GXX_VERSION)
2807 fi
2808 ])dnl
2809 dnl ---------------------------------------------------------------------------
2810 dnl CF_GXX_WARNINGS version: 9 updated: 2015/04/17 21:13:04
2811 dnl ---------------
2812 dnl Check if the compiler supports useful warning options.
2813 dnl
2814 dnl Most of gcc's options apply to g++, except:
2815 dnl     -Wbad-function-cast
2816 dnl     -Wmissing-declarations
2817 dnl     -Wnested-externs
2818 dnl
2819 dnl Omit a few (for now):
2820 dnl     -Winline
2821 dnl
2822 dnl Parameter:
2823 dnl     $1 is an optional list of g++ warning flags that a particular
2824 dnl             application might want to use, e.g., "no-unused" for
2825 dnl             -Wno-unused
2826 dnl Special:
2827 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
2828 dnl
2829 AC_DEFUN([CF_GXX_WARNINGS],
2830 [
2831
2832 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS)
2833 CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS)
2834
2835 AC_REQUIRE([CF_GXX_VERSION])
2836
2837 AC_LANG_SAVE
2838 AC_LANG_CPLUSPLUS
2839
2840 cat > conftest.$ac_ext <<EOF
2841 #line __oline__ "configure"
2842 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
2843 EOF
2844
2845 if test "$INTEL_CPLUSPLUS" = yes
2846 then
2847 # The "-wdXXX" options suppress warnings:
2848 # remark #1419: external declaration in primary source file
2849 # remark #1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
2850 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
2851 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
2852 # remark #193: zero used for undefined preprocessing identifier
2853 # remark #593: variable "curs_sb_left_arrow" was set but never used
2854 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
2855 # remark #869: parameter "tw" was never referenced
2856 # remark #981: operands are evaluated in unspecified order
2857 # warning #269: invalid format string conversion
2858
2859         AC_CHECKING([for $CC warning options])
2860         cf_save_CXXFLAGS="$CXXFLAGS"
2861         EXTRA_CXXFLAGS="-Wall"
2862         for cf_opt in \
2863                 wd1419 \
2864                 wd1682 \
2865                 wd1683 \
2866                 wd1684 \
2867                 wd193 \
2868                 wd279 \
2869                 wd593 \
2870                 wd810 \
2871                 wd869 \
2872                 wd981
2873         do
2874                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
2875                 if AC_TRY_EVAL(ac_compile); then
2876                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2877                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
2878                 fi
2879         done
2880         CXXFLAGS="$cf_save_CXXFLAGS"
2881
2882 elif test "$GXX" = yes
2883 then
2884         AC_CHECKING([for $CXX warning options])
2885         cf_save_CXXFLAGS="$CXXFLAGS"
2886         EXTRA_CXXFLAGS="-W -Wall"
2887         cf_gxx_extra_warnings=""
2888         test "$with_ext_const" = yes && cf_gxx_extra_warnings="Wwrite-strings"
2889         case "$GCC_VERSION" in
2890         ([[1-2]].*)
2891                 ;;
2892         (*)
2893                 cf_gxx_extra_warnings="$cf_gxx_extra_warnings Weffc++"
2894                 ;;
2895         esac
2896         for cf_opt in \
2897                 Wabi \
2898                 fabi-version=0 \
2899                 Wextra \
2900                 Wignored-qualifiers \
2901                 Wlogical-op \
2902                 Woverloaded-virtual \
2903                 Wsign-promo \
2904                 Wsynth \
2905                 Wold-style-cast \
2906                 Wcast-align \
2907                 Wcast-qual \
2908                 Wpointer-arith \
2909                 Wshadow \
2910                 Wundef $cf_gxx_extra_warnings $1
2911         do
2912                 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
2913                 if AC_TRY_EVAL(ac_compile); then
2914                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
2915                         EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
2916                 else
2917                         test -n "$verbose" && AC_MSG_RESULT(... no -$cf_opt)
2918                 fi
2919         done
2920         CXXFLAGS="$cf_save_CXXFLAGS"
2921 fi
2922
2923 rm -rf conftest*
2924 AC_LANG_RESTORE
2925 AC_SUBST(EXTRA_CXXFLAGS)
2926 ])dnl
2927 dnl ---------------------------------------------------------------------------
2928 dnl CF_HASHED_DB version: 7 updated: 2015/04/18 08:56:57
2929 dnl ------------
2930 dnl Look for an instance of the Berkeley hashed database.
2931 dnl
2932 dnl $1 = optional parameter, to specify install-prefix for the database.
2933 AC_DEFUN([CF_HASHED_DB],
2934 [
2935 ifelse([$1],,,[
2936 case $1 in
2937 (yes|*able*)
2938         ;;
2939 (*)
2940         if test -d "$1" ; then
2941                 CF_ADD_INCDIR($1/include)
2942                 CF_ADD_LIBDIR($1/lib)
2943         else
2944                 case "$1" in
2945                 (./*|../*|/*)
2946                         AC_MSG_WARN(no such directory $1)
2947                         ;;
2948                 (*)
2949                         CF_FIND_SUB_INCDIR($1)
2950                         CF_FIND_SUB_LIBDIR($1)
2951                         ;;
2952                 esac
2953         fi
2954 esac
2955 ])
2956 AC_CHECK_HEADER(db.h,[
2957 CF_HASHED_DB_VERSION
2958 if test "$cf_cv_hashed_db_version" = unknown ; then
2959         AC_MSG_ERROR(Cannot determine version of db)
2960 else
2961         CF_HASHED_DB_LIBS
2962         if test "$cf_cv_hashed_db_libs" = unknown ; then
2963                 AC_MSG_ERROR(Cannot determine library for db)
2964         elif test "$cf_cv_hashed_db_libs" != default ; then
2965                 CF_ADD_LIB($cf_cv_hashed_db_libs)
2966         fi
2967 fi
2968 ],[
2969         AC_MSG_ERROR(Cannot find db.h)
2970 ])
2971 ])dnl
2972 dnl ---------------------------------------------------------------------------
2973 dnl CF_HASHED_DB_LIBS version: 9 updated: 2010/05/29 16:31:02
2974 dnl -----------------
2975 dnl Given that we have the header and version for hashed database, find the
2976 dnl library information.
2977 AC_DEFUN([CF_HASHED_DB_LIBS],
2978 [
2979 AC_CACHE_CHECK(for db libraries, cf_cv_hashed_db_libs,[
2980 cf_cv_hashed_db_libs=unknown
2981 for cf_db_libs in "" db$cf_cv_hashed_db_version db-$cf_cv_hashed_db_version db ''
2982 do
2983         cf_save_libs="$LIBS"
2984         if test -n "$cf_db_libs"; then
2985                 CF_ADD_LIB($cf_db_libs)
2986         fi
2987         CF_MSG_LOG(checking for library "$cf_db_libs")
2988         AC_TRY_LINK([
2989 $ac_includes_default
2990 #include <db.h>
2991 ],[
2992         char *path = "/tmp/foo";
2993 #ifdef DB_VERSION_MAJOR
2994 #if DB_VERSION_MAJOR >= 4
2995         DB *result = 0;
2996         db_create(&result, NULL, 0);
2997         result->open(result,
2998                 NULL,
2999                 path,
3000                 path,
3001                 DB_HASH,
3002                 DB_CREATE,
3003                 0644);
3004 #elif DB_VERSION_MAJOR >= 3
3005         DB *result = 0;
3006         db_create(&result, NULL, 0);
3007         result->open(result,
3008                 path,
3009                 path,
3010                 DB_HASH,
3011                 DB_CREATE,
3012                 0644);
3013 #elif DB_VERSION_MAJOR >= 2
3014         DB *result = 0;
3015         db_open(path,
3016                 DB_HASH,
3017                 DB_CREATE,
3018                 0644,
3019                 (DB_ENV *) 0,
3020                 (DB_INFO *) 0,
3021                 &result);
3022 #endif /* DB_VERSION_MAJOR */
3023 #else
3024         DB *result = dbopen(path,
3025                      2,
3026                      0644,
3027                      DB_HASH,
3028                      0);
3029 #endif
3030         ${cf_cv_main_return:-return}(result != 0)
3031 ],[
3032         if test -n "$cf_db_libs" ; then
3033                 cf_cv_hashed_db_libs=$cf_db_libs
3034         else
3035                 cf_cv_hashed_db_libs=default
3036         fi
3037         LIBS="$cf_save_libs"
3038         break
3039 ])
3040         LIBS="$cf_save_libs"
3041 done
3042 ])
3043 ])dnl
3044 dnl ---------------------------------------------------------------------------
3045 dnl CF_HASHED_DB_VERSION version: 4 updated: 2014/04/12 16:47:01
3046 dnl --------------------
3047 dnl Given that we have the header file for hashed database, find the version
3048 dnl information.
3049 AC_DEFUN([CF_HASHED_DB_VERSION],
3050 [
3051 AC_CACHE_CHECK(for version of db, cf_cv_hashed_db_version,[
3052 cf_cv_hashed_db_version=unknown
3053
3054 for cf_db_version in 1 2 3 4 5 6
3055 do
3056         CF_MSG_LOG(checking for db version $cf_db_version)
3057         AC_TRY_COMPILE([
3058 $ac_includes_default
3059 #include <db.h>
3060
3061 #ifdef DB_VERSION_MAJOR
3062         /* db2 (DB_VERSION_MAJOR=2) has also DB_VERSION_MINOR, tested with 7 */
3063 #if $cf_db_version == DB_VERSION_MAJOR
3064         /* ok */
3065 #else
3066         make an error
3067 #endif
3068 #else
3069 #if $cf_db_version == 1
3070         /* ok: assuming this is DB 1.8.5 */
3071 #else
3072         make an error
3073 #endif
3074 #endif
3075 ],[DBT *foo = 0],[
3076         cf_cv_hashed_db_version=$cf_db_version
3077         break
3078         ])
3079 done
3080 ])
3081 ])dnl
3082 dnl ---------------------------------------------------------------------------
3083 dnl CF_HEADER_PATH version: 13 updated: 2015/04/15 19:08:48
3084 dnl --------------
3085 dnl Construct a search-list of directories for a nonstandard header-file
3086 dnl
3087 dnl Parameters
3088 dnl     $1 = the variable to return as result
3089 dnl     $2 = the package name
3090 AC_DEFUN([CF_HEADER_PATH],
3091 [
3092 $1=
3093
3094 # collect the current set of include-directories from compiler flags
3095 cf_header_path_list=""
3096 if test -n "${CFLAGS}${CPPFLAGS}" ; then
3097         for cf_header_path in $CPPFLAGS $CFLAGS
3098         do
3099                 case $cf_header_path in
3100                 (-I*)
3101                         cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
3102                         CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
3103                         cf_header_path_list="$cf_header_path_list [$]$1"
3104                         ;;
3105                 esac
3106         done
3107 fi
3108
3109 # add the variations for the package we are looking for
3110 CF_SUBDIR_PATH($1,$2,include)
3111
3112 test "$includedir" != NONE && \
3113 test "$includedir" != "/usr/include" && \
3114 test -d "$includedir" && {
3115         test -d $includedir &&    $1="[$]$1 $includedir"
3116         test -d $includedir/$2 && $1="[$]$1 $includedir/$2"
3117 }
3118
3119 test "$oldincludedir" != NONE && \
3120 test "$oldincludedir" != "/usr/include" && \
3121 test -d "$oldincludedir" && {
3122         test -d $oldincludedir    && $1="[$]$1 $oldincludedir"
3123         test -d $oldincludedir/$2 && $1="[$]$1 $oldincludedir/$2"
3124 }
3125
3126 $1="[$]$1 $cf_header_path_list"
3127 ])dnl
3128 dnl ---------------------------------------------------------------------------
3129 dnl CF_HELP_MESSAGE version: 3 updated: 1998/01/14 10:56:23
3130 dnl ---------------
3131 dnl Insert text into the help-message, for readability, from AC_ARG_WITH.
3132 AC_DEFUN([CF_HELP_MESSAGE],
3133 [AC_DIVERT_HELP([$1])dnl
3134 ])dnl
3135 dnl ---------------------------------------------------------------------------
3136 dnl CF_INCLUDE_DIRS version: 10 updated: 2014/09/19 20:58:42
3137 dnl ---------------
3138 dnl Construct the list of include-options according to whether we're building
3139 dnl in the source directory or using '--srcdir=DIR' option.
3140 AC_DEFUN([CF_INCLUDE_DIRS],
3141 [
3142 if test "$srcdir" != "."; then
3143         CPPFLAGS="-I\${srcdir}/../include $CPPFLAGS"
3144 fi
3145 CPPFLAGS="-I../include $CPPFLAGS"
3146 if test "$srcdir" != "."; then
3147         CPPFLAGS="-I\${srcdir} $CPPFLAGS"
3148 fi
3149 CPPFLAGS="-I. $CPPFLAGS"
3150 AC_SUBST(CPPFLAGS)
3151 ])dnl
3152 dnl ---------------------------------------------------------------------------
3153 dnl CF_INSTALL_OPTS version: 1 updated: 2014/07/21 18:19:51
3154 dnl ---------------
3155 dnl prompt for/fill-in useful install-program options
3156 AC_DEFUN([CF_INSTALL_OPTS],
3157 [
3158 CF_INSTALL_OPT_S
3159 CF_INSTALL_OPT_O
3160 ])dnl
3161 dnl ---------------------------------------------------------------------------
3162 dnl CF_INSTALL_OPT_O version: 2 updated: 2015/05/15 19:45:35
3163 dnl ----------------
3164 dnl Almost all "install" programs default to the current user's ownership.
3165 dnl Almost - MINIX is an exception.
3166 AC_DEFUN([CF_INSTALL_OPT_O],
3167 [
3168 AC_MSG_CHECKING(if install needs to be told about ownership)
3169 case `$ac_config_guess` in
3170 (*minix)
3171         with_install_o=yes
3172         ;;
3173 (*)
3174         with_install_o=no
3175         ;;
3176 esac
3177
3178 AC_MSG_RESULT($with_install_o)
3179 if test "x$with_install_o" = xyes
3180 then
3181         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'`
3182 else
3183         INSTALL_OPT_O=
3184 fi
3185
3186 AC_SUBST(INSTALL_OPT_O)
3187 ])dnl
3188 dnl ---------------------------------------------------------------------------
3189 dnl CF_INSTALL_OPT_S version: 1 updated: 2014/07/21 18:19:51
3190 dnl ----------------
3191 dnl By default, we should strip executables which are installed, but leave the
3192 dnl ability to suppress that for unit-testing.
3193 AC_DEFUN([CF_INSTALL_OPT_S],
3194 [
3195 AC_MSG_CHECKING(if you want to install stripped executables)
3196 CF_ARG_DISABLE(stripping,
3197         [  --disable-stripping     do not strip installed executables],
3198         [with_stripping=no],
3199         [with_stripping=yes])
3200 AC_MSG_RESULT($with_stripping)
3201
3202 if test "$with_stripping" = yes
3203 then
3204         INSTALL_OPT_S="-s"
3205 else
3206         INSTALL_OPT_S=
3207 fi
3208 AC_SUBST(INSTALL_OPT_S)
3209 ])dnl
3210 dnl ---------------------------------------------------------------------------
3211 dnl CF_INTEL_COMPILER version: 7 updated: 2015/04/12 15:39:00
3212 dnl -----------------
3213 dnl Check if the given compiler is really the Intel compiler for Linux.  It
3214 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
3215 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
3216 dnl
3217 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
3218 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
3219 dnl the wrappers for gcc and g++ warnings.
3220 dnl
3221 dnl $1 = GCC (default) or GXX
3222 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
3223 dnl $3 = CFLAGS (default) or CXXFLAGS
3224 AC_DEFUN([CF_INTEL_COMPILER],[
3225 AC_REQUIRE([AC_CANONICAL_HOST])
3226 ifelse([$2],,INTEL_COMPILER,[$2])=no
3227
3228 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
3229         case $host_os in
3230         (linux*|gnu*)
3231                 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
3232                 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
3233                 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
3234                 AC_TRY_COMPILE([],[
3235 #ifdef __INTEL_COMPILER
3236 #else
3237 make an error
3238 #endif
3239 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
3240 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
3241 ],[])
3242                 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
3243                 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
3244                 ;;
3245         esac
3246 fi
3247 ])dnl
3248 dnl ---------------------------------------------------------------------------
3249 dnl CF_ISASCII version: 4 updated: 2012/10/06 17:56:13
3250 dnl ----------
3251 dnl Check if we have either a function or macro for 'isascii()'.
3252 AC_DEFUN([CF_ISASCII],
3253 [
3254 AC_MSG_CHECKING(for isascii)
3255 AC_CACHE_VAL(cf_cv_have_isascii,[
3256         AC_TRY_LINK([#include <ctype.h>],[int x = isascii(' ')],
3257         [cf_cv_have_isascii=yes],
3258         [cf_cv_have_isascii=no])
3259 ])dnl
3260 AC_MSG_RESULT($cf_cv_have_isascii)
3261 test "$cf_cv_have_isascii" = yes && AC_DEFINE(HAVE_ISASCII,1,[Define to 1 if we have isascii()])
3262 ])dnl
3263 dnl ---------------------------------------------------------------------------
3264 dnl CF_LARGEFILE version: 10 updated: 2017/01/21 11:06:25
3265 dnl ------------
3266 dnl Add checks for large file support.
3267 AC_DEFUN([CF_LARGEFILE],[
3268 ifdef([AC_FUNC_FSEEKO],[
3269         AC_SYS_LARGEFILE
3270         if test "$enable_largefile" != no ; then
3271         AC_FUNC_FSEEKO
3272
3273         # Normally we would collect these definitions in the config.h,
3274         # but (like _XOPEN_SOURCE), some environments rely on having these
3275         # defined before any of the system headers are included.  Another
3276         # case comes up with C++, e.g., on AIX the compiler compiles the
3277         # header files by themselves before looking at the body files it is
3278         # told to compile.  For ncurses, those header files do not include
3279         # the config.h
3280         test "$ac_cv_sys_large_files"      != no && CPPFLAGS="$CPPFLAGS -D_LARGE_FILES "
3281         test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
3282         test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
3283
3284         AC_CACHE_CHECK(whether to use struct dirent64, cf_cv_struct_dirent64,[
3285                 AC_TRY_COMPILE([
3286 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
3287 #include <sys/types.h>
3288 #include <dirent.h>
3289                 ],[
3290                 /* if transitional largefile support is setup, this is true */
3291                 extern struct dirent64 * readdir(DIR *);
3292                 struct dirent64 *x = readdir((DIR *)0);
3293                 struct dirent *y = readdir((DIR *)0);
3294                 int z = x - y;
3295                 ],
3296                 [cf_cv_struct_dirent64=yes],
3297                 [cf_cv_struct_dirent64=no])
3298         ])
3299         test "$cf_cv_struct_dirent64" = yes && AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Define to 1 if we have struct dirent64])
3300         fi
3301 ])
3302 ])
3303 dnl ---------------------------------------------------------------------------
3304 dnl CF_LDFLAGS_STATIC version: 12 updated: 2015/04/18 08:56:57
3305 dnl -----------------
3306 dnl Check for compiler/linker flags used to temporarily force usage of static
3307 dnl libraries.  This depends on the compiler and platform.  Use this to help
3308 dnl ensure that the linker picks up a given library based on its position in
3309 dnl the list of linker options and libraries.
3310 AC_DEFUN([CF_LDFLAGS_STATIC],[
3311
3312 if test "$GCC" = yes ; then
3313         case $cf_cv_system_name in
3314         (OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]]|darwin*)
3315                 LDFLAGS_STATIC=
3316                 LDFLAGS_SHARED=
3317                 ;;
3318         (*)     # normally, except when broken
3319                 LDFLAGS_STATIC=-static
3320                 LDFLAGS_SHARED=-dynamic
3321                 ;;
3322         esac
3323 else
3324         case $cf_cv_system_name in
3325         (aix[[4-7]]*)   # from ld manpage
3326                 LDFLAGS_STATIC=-bstatic
3327                 LDFLAGS_SHARED=-bdynamic
3328                 ;;
3329         (hpux*)         # from ld manpage for hpux10.20, hpux11.11
3330                 # We could also use just "archive" and "shared".
3331                 LDFLAGS_STATIC=-Wl,-a,archive_shared
3332                 LDFLAGS_SHARED=-Wl,-a,shared_archive
3333                 ;;
3334         (irix*)         # from ld manpage IRIX64
3335                 LDFLAGS_STATIC=-Bstatic
3336                 LDFLAGS_SHARED=-Bdynamic
3337                 ;;
3338         (osf[[45]]*)    # from ld manpage osf4.0d, osf5.1
3339                 # alternative "-oldstyle_liblookup" (not in cc manpage)
3340                 LDFLAGS_STATIC=-noso
3341                 LDFLAGS_SHARED=-so_archive
3342                 ;;
3343         (solaris2*)
3344                 LDFLAGS_STATIC=-Bstatic
3345                 LDFLAGS_SHARED=-Bdynamic
3346                 ;;
3347         esac
3348 fi
3349
3350 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
3351 then
3352         AC_MSG_CHECKING(if linker supports switching between static/dynamic)
3353
3354         rm -f libconftest.a
3355         cat >conftest.$ac_ext <<EOF
3356 #line __oline__ "configure"
3357 #include <stdio.h>
3358 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
3359 EOF
3360         if AC_TRY_EVAL(ac_compile) ; then
3361                 ( $AR $ARFLAGS libconftest.a conftest.o ) 2>&AC_FD_CC 1>/dev/null
3362                 ( eval $RANLIB libconftest.a ) 2>&AC_FD_CC >/dev/null
3363         fi
3364         rm -f conftest.*
3365
3366         cf_save_LIBS="$LIBS"
3367
3368         LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS"
3369         AC_TRY_LINK([
3370 #line __oline__ "configure"
3371 #include <stdio.h>
3372 int cf_ldflags_static(FILE *fp);
3373 ],[
3374         return cf_ldflags_static(stdin);
3375 ],[
3376         # some linkers simply ignore the -dynamic
3377         case x`file conftest$ac_exeext 2>/dev/null` in
3378         (*static*)
3379                 cf_ldflags_static=no
3380                 ;;
3381         (*)
3382                 cf_ldflags_static=yes
3383                 ;;
3384         esac
3385 ],[cf_ldflags_static=no])
3386
3387         rm -f libconftest.*
3388         LIBS="$cf_save_LIBS"
3389
3390         AC_MSG_RESULT($cf_ldflags_static)
3391
3392         if test $cf_ldflags_static != yes
3393         then
3394                 LDFLAGS_STATIC=
3395                 LDFLAGS_SHARED=
3396         fi
3397 else
3398         LDFLAGS_STATIC=
3399         LDFLAGS_SHARED=
3400 fi
3401
3402 AC_SUBST(LDFLAGS_STATIC)
3403 AC_SUBST(LDFLAGS_SHARED)
3404 ])
3405 dnl ---------------------------------------------------------------------------
3406 dnl CF_LD_RPATH_OPT version: 7 updated: 2016/02/20 18:01:19
3407 dnl ---------------
3408 dnl For the given system and compiler, find the compiler flags to pass to the
3409 dnl loader to use the "rpath" feature.
3410 AC_DEFUN([CF_LD_RPATH_OPT],
3411 [
3412 AC_REQUIRE([CF_CHECK_CACHE])
3413
3414 LD_RPATH_OPT=
3415 AC_MSG_CHECKING(for an rpath option)
3416 case $cf_cv_system_name in
3417 (irix*)
3418         if test "$GCC" = yes; then
3419                 LD_RPATH_OPT="-Wl,-rpath,"
3420         else
3421                 LD_RPATH_OPT="-rpath "
3422         fi
3423         ;;
3424 (linux*|gnu*|k*bsd*-gnu|freebsd*)
3425         LD_RPATH_OPT="-Wl,-rpath,"
3426         ;;
3427 (openbsd[[2-9]].*|mirbsd*)
3428         LD_RPATH_OPT="-Wl,-rpath,"
3429         ;;
3430 (dragonfly*)
3431         LD_RPATH_OPT="-rpath "
3432         ;;
3433 (netbsd*)
3434         LD_RPATH_OPT="-Wl,-rpath,"
3435         ;;
3436 (osf*|mls+*)
3437         LD_RPATH_OPT="-rpath "
3438         ;;
3439 (solaris2*)
3440         LD_RPATH_OPT="-R"
3441         ;;
3442 (*)
3443         ;;
3444 esac
3445 AC_MSG_RESULT($LD_RPATH_OPT)
3446
3447 case "x$LD_RPATH_OPT" in
3448 (x-R*)
3449         AC_MSG_CHECKING(if we need a space after rpath option)
3450         cf_save_LIBS="$LIBS"
3451         CF_ADD_LIBS(${LD_RPATH_OPT}$libdir)
3452         AC_TRY_LINK(, , cf_rpath_space=no, cf_rpath_space=yes)
3453         LIBS="$cf_save_LIBS"
3454         AC_MSG_RESULT($cf_rpath_space)
3455         test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
3456         ;;
3457 esac
3458 ])dnl
3459 dnl ---------------------------------------------------------------------------
3460 dnl CF_LIBRARY_PATH version: 10 updated: 2015/04/15 19:08:48
3461 dnl ---------------
3462 dnl Construct a search-list of directories for a nonstandard library-file
3463 dnl
3464 dnl Parameters
3465 dnl     $1 = the variable to return as result
3466 dnl     $2 = the package name
3467 AC_DEFUN([CF_LIBRARY_PATH],
3468 [
3469 $1=
3470 cf_library_path_list=""
3471 if test -n "${LDFLAGS}${LIBS}" ; then
3472         for cf_library_path in $LDFLAGS $LIBS
3473         do
3474                 case $cf_library_path in
3475                 (-L*)
3476                         cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
3477                         CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
3478                         cf_library_path_list="$cf_library_path_list [$]$1"
3479                         ;;
3480                 esac
3481         done
3482 fi
3483
3484 CF_SUBDIR_PATH($1,$2,lib)
3485
3486 $1="$cf_library_path_list [$]$1"
3487 ])dnl
3488 dnl ---------------------------------------------------------------------------
3489 dnl CF_LIBTOOL_VERSION version: 1 updated: 2013/04/06 18:03:09
3490 dnl ------------------
3491 AC_DEFUN([CF_LIBTOOL_VERSION],[
3492 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
3493 then
3494         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.]].*//'`
3495 else
3496         cf_cv_libtool_version=
3497 fi
3498 test -z "$cf_cv_libtool_version" && unset cf_cv_libtool_version
3499 ])dnl
3500 dnl ---------------------------------------------------------------------------
3501 dnl CF_LIB_PREFIX version: 12 updated: 2015/10/17 19:03:33
3502 dnl -------------
3503 dnl Compute the library-prefix for the given host system
3504 dnl $1 = variable to set
3505 define([CF_LIB_PREFIX],
3506 [
3507         case $cf_cv_system_name in
3508         (OS/2*|os2*)
3509                 if test "$DFT_LWR_MODEL" = libtool; then
3510                         LIB_PREFIX='lib'
3511                 else
3512                         LIB_PREFIX=''
3513                 fi
3514                 ;;
3515         (*)     LIB_PREFIX='lib'
3516                 ;;
3517         esac
3518 ifelse($1,,,[$1=$LIB_PREFIX])
3519         AC_SUBST(LIB_PREFIX)
3520 ])dnl
3521 dnl ---------------------------------------------------------------------------
3522 dnl CF_LIB_RULES version: 87 updated: 2017/07/26 17:08:35
3523 dnl ------------
3524 dnl Append definitions and rules for the given models to the subdirectory
3525 dnl Makefiles, and the recursion rule for the top-level Makefile.  If the
3526 dnl subdirectory is a library-source directory, modify the Libs_To_Make list in
3527 dnl the corresponding makefile to list the models that we'll generate.
3528 dnl
3529 dnl For shared libraries, make a list of symbolic links to construct when
3530 dnl generating each library.  The convention used for Linux is the simplest
3531 dnl one:
3532 dnl     lib<name>.so    ->
3533 dnl     lib<name>.so.<major>    ->
3534 dnl     lib<name>.so.<maj>.<minor>
3535 dnl
3536 dnl Note: Libs_To_Make is mixed case, since it is not a pure autoconf variable.
3537 AC_DEFUN([CF_LIB_RULES],
3538 [
3539 cf_prefix=$LIB_PREFIX
3540 AC_REQUIRE([CF_SUBST_NCURSES_VERSION])
3541
3542 case $cf_cv_shlib_version in
3543 (cygdll|msysdll|mingw)
3544         TINFO_NAME=$TINFO_ARG_SUFFIX
3545         TINFO_SUFFIX=.dll
3546         ;;
3547 esac
3548
3549 if test -n "$TINFO_SUFFIX" ; then
3550         case $TINFO_SUFFIX in
3551         (tw*)
3552                 TINFO_NAME="${TINFO_NAME}tw${EXTRA_SUFFIX}"
3553                 TINFO_SUFFIX=`echo $TINFO_SUFFIX | sed 's/^tw'$EXTRA_SUFFIX'//'`
3554                 ;;
3555         (t*)
3556                 TINFO_NAME="${TINFO_NAME}t${EXTRA_SUFFIX}"
3557                 TINFO_SUFFIX=`echo $TINFO_SUFFIX | sed 's/^t'$EXTRA_SUFFIX'//'`
3558                 ;;
3559         (w*)
3560                 TINFO_NAME="${TINFO_NAME}w${EXTRA_SUFFIX}"
3561                 TINFO_SUFFIX=`echo $TINFO_SUFFIX | sed 's/^w'$EXTRA_SUFFIX'//'`
3562                 ;;
3563         esac
3564 fi
3565
3566 for cf_dir in $SRC_SUBDIRS
3567 do
3568         if test ! -d $srcdir/$cf_dir ; then
3569                 continue
3570         elif test -f $srcdir/$cf_dir/modules; then
3571
3572                 SHARED_LIB=
3573                 Libs_To_Make=
3574                 cf_awk_program=
3575                 if test -n "${cf_cv_abi_version}" && test "x${cf_cv_abi_version}" != "x5"
3576                 then
3577                         cf_awk_program="$cf_awk_program\
3578 /deprecated in ABI${cf_cv_abi_version}/ { next; }\
3579 { sub(\"NCURSES([[WT]]+)?\", \"&${cf_cv_abi_version}\"); }\
3580 "
3581                 fi
3582
3583                 if test "x$WILDCARD_SYMS" = xno
3584                 then
3585                         cf_awk_program="$cf_awk_program\
3586 /[[     ]]_\\*;/ { skip=1; next; }\
3587 "
3588                 fi
3589
3590                 if test "x$cf_awk_program" != "x"
3591                 then
3592                         cat >>$cf_dir/Makefile <<CF_EOF
3593
3594 # Generated by CF_LIB_RULES
3595 resulting.map: $UNALTERED_SYMS
3596         $AWK 'BEGIN { skip = 1; last=""; } \
3597 $cf_awk_program \
3598 { if ( last != "" && ( skip == 0 || \[$]\[$]0 !~ /}/ ) ) { print last; }\
3599  skip = 0; last = \[$]\[$]0; } \
3600 END { print last; }' < $UNALTERED_SYMS >\[$]@
3601
3602 distclean::
3603         rm -f resulting.map
3604 CF_EOF
3605                 fi
3606
3607                 for cf_item in $cf_LIST_MODELS
3608                 do
3609                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
3610                         cf_libname=$cf_dir
3611                         test "$cf_dir" = c++ && cf_libname=ncurses++
3612                         if test $cf_item = shared ; then
3613                                 if test -n "${LIB_SUFFIX}"
3614                                 then
3615                                         cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
3616                                 else
3617                                         cf_shared_suffix="$cf_suffix"
3618                                 fi
3619                                 if test "$cf_cv_do_symlinks" = yes ; then
3620                                         cf_version_name=
3621
3622                                         case "$cf_cv_shlib_version" in
3623                                         (rel)
3624                                                 cf_version_name=REL_VERSION
3625                                                 ;;
3626                                         (abi)
3627                                                 cf_version_name=ABI_VERSION
3628                                                 ;;
3629                                         esac
3630
3631                                         if test -n "$cf_version_name"
3632                                         then
3633                                                 case "$cf_cv_system_name" in
3634                                                 (darwin*)
3635                                                         # "w", etc?
3636                                                         cf_suffix="${USE_LIB_SUFFIX}"'.${'$cf_version_name'}'"$cf_shared_suffix"
3637                                                         ;;
3638                                                 (*)
3639                                                         cf_suffix="$cf_suffix"'.${'$cf_version_name'}'
3640                                                         ;;
3641                                                 esac
3642                                         fi
3643                                         if test -n "${USE_LIB_SUFFIX}"
3644                                         then
3645                                                 cf_shared_suffix=`echo "$cf_suffix" | sed 's/^'"${USE_LIB_SUFFIX}"'//'`
3646                                         else
3647                                                 cf_shared_suffix="$cf_suffix"
3648                                         fi
3649                                 fi
3650                                 # cygwin needs import library, and has unique naming convention
3651                                 # use autodetected ${cf_prefix} for import lib and static lib, but
3652                                 # use 'cyg' prefix for shared lib.
3653                                 case $cf_cv_shlib_version in
3654                                 (cygdll)
3655                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
3656                                         cf_add_lib="../lib/cyg${cf_libname}${cf_cygsuf}"
3657                                         ;;
3658                                 (msysdll)
3659                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
3660                                         cf_add_lib="../lib/msys-${cf_libname}${cf_cygsuf}"
3661                                         ;;
3662                                 (mingw)
3663                                         cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
3664                                         cf_add_lib="../lib/lib${cf_libname}${cf_cygsuf}"
3665                                         ;;
3666                                 (*)
3667                                         cf_add_lib=
3668                                         ;;
3669                                 esac
3670                                 if test -n "$cf_add_lib"
3671                                 then
3672                                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
3673                                         continue
3674                                 fi
3675                         fi
3676                         cf_add_lib="../lib/${cf_prefix}${cf_libname}${cf_suffix}"
3677                         Libs_To_Make="$Libs_To_Make $cf_add_lib"
3678                 done
3679
3680                 if test $cf_dir = ncurses ; then
3681                         cf_subsets="$LIB_SUBSETS"
3682                         cf_r_parts="$cf_subsets"
3683                         cf_liblist="$Libs_To_Make"
3684
3685                         while test -n "$cf_r_parts"
3686                         do
3687                                 cf_l_parts=`echo "$cf_r_parts" |sed -e 's/ .*$//'`
3688                                 cf_r_parts=`echo "$cf_r_parts" |sed -e 's/^[[^ ]]* //'`
3689                                 if test "$cf_l_parts" != "$cf_r_parts" ; then
3690                                         cf_add_lib=
3691                                         case $cf_l_parts in
3692                                         (*termlib*)
3693                                                 cf_add_lib=`echo $cf_liblist |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TINFO_LIB_SUFFIX}%g`
3694                                                 ;;
3695                                         (*ticlib*)
3696                                                 cf_add_lib=`echo $cf_liblist |sed -e s%${LIB_NAME}${USE_LIB_SUFFIX}%${TICS_LIB_SUFFIX}%g`
3697                                                 ;;
3698                                         (*)
3699                                                 break
3700                                                 ;;
3701                                         esac
3702                                         if test -n "$cf_add_lib"; then
3703                                                 Libs_To_Make="$cf_add_lib $Libs_To_Make"
3704                                         fi
3705                                 else
3706                                         break
3707                                 fi
3708                         done
3709                 else
3710                         cf_subsets=`echo "$LIB_SUBSETS" | sed -e 's/^termlib.* //'`
3711                 fi
3712
3713                 if test $cf_dir = c++; then
3714                         if test "x$with_shared_cxx" != xyes && test -n "$cf_shared_suffix"; then
3715                                 cf_list=
3716                                 for cf_item in $Libs_To_Make
3717                                 do
3718                                         case $cf_item in
3719                                         (*.a)
3720                                                 ;;
3721                                         (*)
3722                                                 cf_item=`echo "$cf_item" | sed -e "s,"$cf_shared_suffix",.a,"`
3723                                                 ;;
3724                                         esac
3725                                         for cf_test in $cf_list
3726                                         do
3727                                                 if test "$cf_test" = "$cf_item"
3728                                                 then
3729                                                         cf_LIST_MODELS=`echo "$cf_LIST_MODELS" | sed -e 's/normal//'`
3730                                                         cf_item=
3731                                                         break
3732                                                 fi
3733                                         done
3734                                         test -n "$cf_item" && cf_list="$cf_list $cf_item"
3735                                 done
3736                                 Libs_To_Make="$cf_list"
3737                         fi
3738                 fi
3739
3740                 sed -e "s%@Libs_To_Make@%$Libs_To_Make%" \
3741                     -e "s%@SHARED_LIB@%$SHARED_LIB%" \
3742                         $cf_dir/Makefile >$cf_dir/Makefile.out
3743                 mv $cf_dir/Makefile.out $cf_dir/Makefile
3744
3745                 $AWK -f $srcdir/mk-0th.awk \
3746                         libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \
3747                         $srcdir/$cf_dir/modules >>$cf_dir/Makefile
3748
3749                 for cf_subset in $cf_subsets
3750                 do
3751                         cf_subdirs=
3752                         for cf_item in $cf_LIST_MODELS
3753                         do
3754
3755                         echo "Appending rules for ${cf_item} model (${cf_dir}: ${cf_subset})"
3756                         CF_UPPER(cf_ITEM,$cf_item)
3757
3758                         CXX_MODEL=$cf_ITEM
3759                         if test "$CXX_MODEL" = SHARED; then
3760                                 case $cf_cv_shlib_version in
3761                                 (cygdll|msysdll|mingw)
3762                                         test "x$with_shared_cxx" = xno && CF_VERBOSE(overriding CXX_MODEL to SHARED)
3763                                         with_shared_cxx=yes
3764                                         ;;
3765                                 (*)
3766                                         test "x$with_shared_cxx" = xno && CXX_MODEL=NORMAL
3767                                         ;;
3768                                 esac
3769                         fi
3770
3771                         CF_LIB_SUFFIX($cf_item,cf_suffix,cf_depsuf)
3772                         CF_OBJ_SUBDIR($cf_item,cf_subdir)
3773
3774                         # Test for case where we build libtinfo with a different name.
3775                         cf_libname=$cf_dir
3776                         if test $cf_dir = ncurses ; then
3777                                 case $cf_subset in
3778                                 (*base*)
3779                                         cf_libname=${cf_libname}$USE_LIB_SUFFIX
3780                                         ;;
3781                                 (*termlib*)
3782                                         cf_libname=$TINFO_LIB_SUFFIX
3783                                         ;;
3784                                 (ticlib*)
3785                                         cf_libname=$TICS_LIB_SUFFIX
3786                                         ;;
3787                                 esac
3788                         elif test $cf_dir = c++ ; then
3789                                 cf_libname=ncurses++$USE_LIB_SUFFIX
3790                         else
3791                                 cf_libname=${cf_libname}$USE_LIB_SUFFIX
3792                         fi
3793                         if test -n "${USE_ARG_SUFFIX}" ; then
3794                                 # undo $USE_LIB_SUFFIX add-on in CF_LIB_SUFFIX
3795                                 cf_suffix=`echo $cf_suffix |sed -e "s%^${USE_LIB_SUFFIX}%%"`
3796                         fi
3797
3798                         # These dependencies really are for development, not
3799                         # builds, but they are useful in porting, too.
3800                         cf_depend="../include/ncurses_cfg.h"
3801                         if test "$srcdir" = "."; then
3802                                 cf_reldir="."
3803                         else
3804                                 cf_reldir="\${srcdir}"
3805                         fi
3806
3807                         if test -f $srcdir/$cf_dir/$cf_dir.priv.h; then
3808                                 cf_depend="$cf_depend $cf_reldir/$cf_dir.priv.h"
3809                         elif test -f $srcdir/$cf_dir/curses.priv.h; then
3810                                 cf_depend="$cf_depend $cf_reldir/curses.priv.h"
3811                         fi
3812
3813                         cf_dir_suffix=
3814                         old_cf_suffix="$cf_suffix"
3815                         if test "$cf_cv_shlib_version_infix" = yes ; then
3816                         if test -n "$USE_LIB_SUFFIX" ; then
3817                                 case $USE_LIB_SUFFIX in
3818                                 (tw*)
3819                                         cf_libname=`echo $cf_libname | sed 's/tw'$EXTRA_SUFFIX'$//'`
3820                                         cf_suffix=`echo $cf_suffix | sed 's/^tw'$EXTRA_SUFFIX'//'`
3821                                         cf_dir_suffix=tw$EXTRA_SUFFIX
3822                                         ;;
3823                                 (t*)
3824                                         cf_libname=`echo $cf_libname | sed 's/t'$EXTRA_SUFFIX'$//'`
3825                                         cf_suffix=`echo $cf_suffix | sed 's/^t'$EXTRA_SUFFIX'//'`
3826                                         cf_dir_suffix=t$EXTRA_SUFFIX
3827                                         ;;
3828                                 (w*)
3829                                         cf_libname=`echo $cf_libname | sed 's/w'$EXTRA_SUFFIX'$//'`
3830                                         cf_suffix=`echo $cf_suffix | sed 's/^w'$EXTRA_SUFFIX'//'`
3831                                         cf_dir_suffix=w$EXTRA_SUFFIX
3832                                         ;;
3833                                 (*)
3834                                         cf_libname=`echo $cf_libname | sed 's/'$EXTRA_SUFFIX'$//'`
3835                                         cf_suffix=`echo $cf_suffix | sed 's/^'$EXTRA_SUFFIX'//'`
3836                                         cf_dir_suffix=$EXTRA_SUFFIX
3837                                         ;;
3838                                 esac
3839                         fi
3840                         fi
3841
3842                         $AWK -f $srcdir/mk-1st.awk \
3843                                 name=${cf_libname}${cf_dir_suffix} \
3844                                 traces=$LIB_TRACING \
3845                                 MODEL=$cf_ITEM \
3846                                 CXX_MODEL=$CXX_MODEL \
3847                                 model=$cf_subdir \
3848                                 prefix=$cf_prefix \
3849                                 suffix=$cf_suffix \
3850                                 subset=$cf_subset \
3851                                 driver=$cf_cv_term_driver \
3852                                 SymLink="$LN_S" \
3853                                 TermlibRoot=$TINFO_NAME \
3854                                 TermlibSuffix=$TINFO_SUFFIX \
3855                                 ShlibVer=$cf_cv_shlib_version \
3856                                 ShlibVerInfix=$cf_cv_shlib_version_infix \
3857                                 ReLink=${cf_cv_do_relink:-no} \
3858                                 DoLinks=$cf_cv_do_symlinks \
3859                                 rmSoLocs=$cf_cv_rm_so_locs \
3860                                 ldconfig="$LDCONFIG" \
3861                                 overwrite=$WITH_OVERWRITE \
3862                                 depend="$cf_depend" \
3863                                 host="$host" \
3864                                 libtool_version="$LIBTOOL_VERSION" \
3865                                 $srcdir/$cf_dir/modules >>$cf_dir/Makefile
3866
3867                         cf_suffix="$old_cf_suffix"
3868
3869                         for cf_subdir2 in $cf_subdirs lib
3870                         do
3871                                 test $cf_subdir = $cf_subdir2 && break
3872                         done
3873                         test "${cf_subset}.${cf_subdir2}" != "${cf_subset}.${cf_subdir}" && \
3874                         $AWK -f $srcdir/mk-2nd.awk \
3875                                 name=$cf_dir \
3876                                 traces=$LIB_TRACING \
3877                                 MODEL=$cf_ITEM \
3878                                 model=$cf_subdir \
3879                                 subset=$cf_subset \
3880                                 srcdir=$srcdir \
3881                                 echo=$WITH_ECHO \
3882                                 crenames=$cf_cv_prog_CC_c_o \
3883                                 cxxrenames=$cf_cv_prog_CXX_c_o \
3884                                 $srcdir/$cf_dir/modules >>$cf_dir/Makefile
3885                         cf_subdirs="$cf_subdirs $cf_subdir"
3886                         done
3887                 done
3888         fi
3889
3890         echo '  cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@' >>Makefile
3891 done
3892
3893 for cf_dir in $SRC_SUBDIRS
3894 do
3895         if test ! -d $srcdir/$cf_dir ; then
3896                 continue
3897         fi
3898
3899         if test -f $cf_dir/Makefile ; then
3900                 case "$cf_dir" in
3901                 (Ada95)
3902                         echo 'libs \' >> Makefile
3903                         echo 'install.libs \' >> Makefile
3904                         echo 'uninstall.libs ::' >> Makefile
3905                         echo '  cd '$cf_dir' && ${MAKE} ${TOP_MFLAGS} [$]@' >> Makefile
3906                         ;;
3907                 esac
3908         fi
3909
3910         if test -f $srcdir/$cf_dir/modules; then
3911                 echo >> Makefile
3912                 if test -f $srcdir/$cf_dir/headers; then
3913 cat >> Makefile <<CF_EOF
3914 install.includes \\
3915 uninstall.includes \\
3916 CF_EOF
3917                 fi
3918 if test "$cf_dir" != "c++" ; then
3919 echo 'lint \' >> Makefile
3920 fi
3921 cat >> Makefile <<CF_EOF
3922 libs \\
3923 lintlib \\
3924 install.libs \\
3925 uninstall.libs \\
3926 install.$cf_dir \\
3927 uninstall.$cf_dir ::
3928         cd $cf_dir && \${MAKE} \${TOP_MFLAGS} \[$]@
3929 CF_EOF
3930         elif test -f $srcdir/$cf_dir/headers; then
3931 cat >> Makefile <<CF_EOF
3932
3933 libs \\
3934 install.libs \\
3935 uninstall.libs \\
3936 install.includes \\
3937 uninstall.includes ::
3938         cd $cf_dir && \${MAKE} \${TOP_MFLAGS} \[$]@
3939 CF_EOF
3940 fi
3941 done
3942
3943 if test "x$cf_with_db_install" = xyes; then
3944 cat >> Makefile <<CF_EOF
3945
3946 install.libs uninstall.libs \\
3947 install.data uninstall.data ::
3948 $MAKE_TERMINFO  cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@
3949 CF_EOF
3950 else
3951 cat >> Makefile <<CF_EOF
3952
3953 install.libs uninstall.libs ::
3954         cd misc && \${MAKE} \${TOP_MFLAGS} \[$]@
3955 CF_EOF
3956 fi
3957
3958 if test "x$cf_with_manpages" = xyes; then
3959 cat >> Makefile <<CF_EOF
3960
3961 install.man \\
3962 uninstall.man ::
3963         cd man && \${MAKE} \${TOP_MFLAGS} \[$]@
3964 CF_EOF
3965 fi
3966
3967 cat >> Makefile <<CF_EOF
3968
3969 distclean ::
3970         rm -f config.cache config.log config.status Makefile include/ncurses_cfg.h
3971         rm -f headers.sh headers.sed mk_shared_lib.sh
3972         rm -f edit_man.* man_alias.*
3973         rm -rf \${DIRS_TO_MAKE}
3974 CF_EOF
3975
3976 # Special case: tack's manpage lives in its own directory.
3977 if test "x$cf_with_manpages" = xyes; then
3978 if test "x$cf_with_tack" = "xyes"; then
3979 cat >> Makefile <<CF_EOF
3980
3981 install.man \\
3982 uninstall.man ::
3983         cd tack && \${MAKE} \${TOP_MFLAGS} \[$]@
3984 CF_EOF
3985 fi
3986 fi
3987
3988 dnl If we're installing into a subdirectory of /usr/include, etc., we should
3989 dnl prepend the subdirectory's name to the "#include" paths.  It won't hurt
3990 dnl anything, and will make it more standardized.  It's awkward to decide this
3991 dnl at configuration because of quoting, so we'll simply make all headers
3992 dnl installed via a script that can do the right thing.
3993
3994 rm -f headers.sed headers.sh
3995
3996 dnl ( generating this script makes the makefiles a little tidier :-)
3997 echo creating headers.sh
3998 cat >headers.sh <<CF_EOF
3999 #! $SHELL
4000 # This shell script is generated by the 'configure' script.  It is invoked in a
4001 # subdirectory of the build tree.  It generates a sed-script in the parent
4002 # directory that is used to adjust includes for header files that reside in a
4003 # subdirectory of /usr/include, etc.
4004 PRG=""
4005 while test \[$]# != 3
4006 do
4007 PRG="\$PRG \[$]1"; shift
4008 done
4009 DST=\[$]1
4010 REF=\[$]2
4011 SRC=\[$]3
4012 TMPSRC=\${TMPDIR:-/tmp}/\`basename \$SRC\`\$\$
4013 TMPSED=\${TMPDIR:-/tmp}/headers.sed\$\$
4014 echo installing \$SRC in \$DST
4015 CF_EOF
4016
4017 if test $WITH_CURSES_H = yes; then
4018         cat >>headers.sh <<CF_EOF
4019 case \$DST in
4020 (/*/include/*)
4021         END=\`basename \$DST\`
4022         for i in \`cat \$REF/../*/headers |fgrep -v "#"\`
4023         do
4024                 NAME=\`basename \$i\`
4025                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
4026         done
4027         ;;
4028 (*)
4029         echo "" >> \$TMPSED
4030         ;;
4031 esac
4032 CF_EOF
4033
4034 else
4035         cat >>headers.sh <<CF_EOF
4036 case \$DST in
4037 (/*/include/*)
4038         END=\`basename \$DST\`
4039         for i in \`cat \$REF/../*/headers |fgrep -v "#"\`
4040         do
4041                 NAME=\`basename \$i\`
4042                 if test "\$NAME" = "curses.h"
4043                 then
4044                         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
4045                         NAME=ncurses.h
4046                 fi
4047                 echo "s/<\$NAME>/<\$END\/\$NAME>/" >> \$TMPSED
4048         done
4049         ;;
4050 (*)
4051         echo "s/<curses.h>/<ncurses.h>/" >> \$TMPSED
4052         ;;
4053 esac
4054 CF_EOF
4055 fi
4056 cat >>headers.sh <<CF_EOF
4057 rm -f \$TMPSRC
4058 sed -f \$TMPSED \$SRC > \$TMPSRC
4059 NAME=\`basename \$SRC\`
4060 CF_EOF
4061 if test $WITH_CURSES_H != yes; then
4062         cat >>headers.sh <<CF_EOF
4063 test "\$NAME" = "curses.h" && NAME=ncurses.h
4064 CF_EOF
4065 fi
4066 cat >>headers.sh <<CF_EOF
4067 # Just in case someone gzip'd manpages, remove the conflicting copy.
4068 test -f \$DST/\$NAME.gz && rm -f \$DST/\$NAME.gz
4069
4070 eval \$PRG \$TMPSRC \$DST/\$NAME
4071 rm -f \$TMPSRC \$TMPSED
4072 CF_EOF
4073
4074 chmod 0755 headers.sh
4075
4076 for cf_dir in $SRC_SUBDIRS
4077 do
4078         if test ! -d $srcdir/$cf_dir ; then
4079                 continue
4080         fi
4081
4082         if test -f $srcdir/$cf_dir/headers; then
4083                 $AWK -f $srcdir/mk-hdr.awk \
4084                         subset="$LIB_SUBSETS" \
4085                         compat="$WITH_CURSES_H" \
4086                         $srcdir/$cf_dir/headers >>$cf_dir/Makefile
4087         fi
4088
4089         if test -f $srcdir/$cf_dir/modules; then
4090                 if test "$cf_dir" != "c++" ; then
4091                         cat >>$cf_dir/Makefile <<"CF_EOF"
4092 depend : ${AUTO_SRC}
4093         makedepend -- ${CPPFLAGS} -- ${C_SRC}
4094
4095 # DO NOT DELETE THIS LINE -- make depend depends on it.
4096 CF_EOF
4097                 fi
4098         fi
4099 done
4100 AC_SUBST(Libs_To_Make)
4101 ])dnl
4102 dnl ---------------------------------------------------------------------------
4103 dnl CF_LIB_SONAME version: 6 updated: 2017/01/21 11:06:25
4104 dnl -------------
4105 dnl Find the and soname for the given shared library.  Set the cache variable
4106 dnl cf_cv_$3_soname to this, unless it is not found.  Then set the cache
4107 dnl variable to "unknown".
4108 dnl
4109 dnl $1 = headers
4110 dnl $2 = code
4111 dnl $3 = library name
4112 AC_DEFUN([CF_LIB_SONAME],
4113 [
4114 AC_CACHE_CHECK(for soname of $3 library,cf_cv_$3_soname,[
4115
4116 cf_cv_$3_soname=unknown
4117 if test "$cross_compiling" != yes ; then
4118 cat >conftest.$ac_ext <<CF_EOF
4119 $1
4120 int main(void)
4121 {
4122 $2
4123         ${cf_cv_main_return:-return}(0);
4124 }
4125 CF_EOF
4126 cf_save_LIBS="$LIBS"
4127         CF_ADD_LIB($3)
4128         if AC_TRY_EVAL(ac_compile) ; then
4129                 if AC_TRY_EVAL(ac_link) ; then
4130                         cf_cv_$3_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep lib$3.`
4131                         test -z "$cf_cv_$3_soname" && cf_cv_$3_soname=unknown
4132                 fi
4133         fi
4134 rm -rf conftest*
4135 LIBS="$cf_save_LIBS"
4136 fi
4137 ])
4138 ])
4139 dnl ---------------------------------------------------------------------------
4140 dnl CF_LIB_SUFFIX version: 25 updated: 2015/04/17 21:13:04
4141 dnl -------------
4142 dnl Compute the library file-suffix from the given model name
4143 dnl $1 = model name
4144 dnl $2 = variable to set (the nominal library suffix)
4145 dnl $3 = dependency variable to set (actual filename)
4146 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
4147 AC_DEFUN([CF_LIB_SUFFIX],
4148 [
4149         case X$1 in
4150         (Xlibtool)
4151                 $2='.la'
4152                 $3=[$]$2
4153                 ;;
4154         (Xdebug)
4155                 $2='_g.a'
4156                 $3=[$]$2
4157                 ;;
4158         (Xprofile)
4159                 $2='_p.a'
4160                 $3=[$]$2
4161                 ;;
4162         (Xshared)
4163                 case $cf_cv_system_name in
4164                 (aix[[5-7]]*)
4165                         $2='.so'
4166                         $3=[$]$2
4167                         ;;
4168                 (cygwin*|msys*|mingw*)
4169                         $2='.dll'
4170                         $3='.dll.a'
4171                         ;;
4172                 (darwin*)
4173                         $2='.dylib'
4174                         $3=[$]$2
4175                         ;;
4176                 (hpux*)
4177                         case $target in
4178                         (ia64*)
4179                                 $2='.so'
4180                                 $3=[$]$2
4181                                 ;;
4182                         (*)
4183                                 $2='.sl'
4184                                 $3=[$]$2
4185                                 ;;
4186                         esac
4187                         ;;
4188                 (*)
4189                         $2='.so'
4190                         $3=[$]$2
4191                         ;;
4192                 esac
4193                 ;;
4194         (*)
4195                 $2='.a'
4196                 $3=[$]$2
4197                 ;;
4198         esac
4199         if test -n "${LIB_SUFFIX}${EXTRA_SUFFIX}"
4200         then
4201                 $2="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$2}"
4202                 $3="${LIB_SUFFIX}${EXTRA_SUFFIX}[$]{$3}"
4203         fi
4204 ])dnl
4205 dnl ---------------------------------------------------------------------------
4206 dnl CF_LIB_TYPE version: 5 updated: 2015/04/17 21:13:04
4207 dnl -----------
4208 dnl Compute the string to append to -library from the given model name
4209 dnl $1 = model name
4210 dnl $2 = variable to set
4211 dnl The variable $LIB_SUFFIX, if set, prepends the variable to set.
4212 AC_DEFUN([CF_LIB_TYPE],
4213 [
4214         case $1 in
4215         (libtool) $2=''   ;;
4216         (normal)  $2=''   ;;
4217         (debug)   $2='_g' ;;
4218         (profile) $2='_p' ;;
4219         (shared)  $2=''   ;;
4220         esac
4221         test -n "$LIB_SUFFIX" && $2="${LIB_SUFFIX}[$]{$2}"
4222 ])dnl
4223 dnl ---------------------------------------------------------------------------
4224 dnl CF_LINK_DATAONLY version: 12 updated: 2017/07/23 17:46:07
4225 dnl ----------------
4226 dnl Some systems have a non-ANSI linker that doesn't pull in modules that have
4227 dnl only data (i.e., no functions), for example NeXT.  On those systems we'll
4228 dnl have to provide wrappers for global tables to ensure they're linked
4229 dnl properly.
4230 AC_DEFUN([CF_LINK_DATAONLY],
4231 [
4232 AC_MSG_CHECKING([if data-only library module links])
4233 AC_CACHE_VAL(cf_cv_link_dataonly,[
4234         rm -f conftest.a
4235         cat >conftest.$ac_ext <<EOF
4236 #line __oline__ "configure"
4237 int     testdata[[3]] = { 123, 456, 789 };
4238 EOF
4239         if AC_TRY_EVAL(ac_compile) ; then
4240                 mv conftest.o data.o && \
4241                 ( $AR $ARFLAGS conftest.a data.o ) 2>&AC_FD_CC 1>/dev/null
4242         fi
4243         rm -f conftest.$ac_ext data.o
4244         cat >conftest.$ac_ext <<EOF
4245 #line __oline__ "configure"
4246 int     testfunc(void)
4247 {
4248 #if defined(NeXT)
4249         ${cf_cv_main_return:-return}(1);        /* I'm told this linker is broken */
4250 #else
4251         extern int testdata[[3]];
4252         return testdata[[0]] == 123
4253            &&  testdata[[1]] == 456
4254            &&  testdata[[2]] == 789;
4255 #endif
4256 }
4257 EOF
4258         if AC_TRY_EVAL(ac_compile); then
4259                 mv conftest.o func.o && \
4260                 ( $AR $ARFLAGS conftest.a func.o ) 2>&AC_FD_CC 1>/dev/null
4261         fi
4262         rm -f conftest.$ac_ext func.o
4263         ( eval $RANLIB conftest.a ) 2>&AC_FD_CC >/dev/null
4264         cf_saveLIBS="$LIBS"
4265         LIBS="conftest.a $LIBS"
4266         AC_TRY_RUN([
4267         int main(void)
4268         {
4269                 extern int testfunc();
4270                 ${cf_cv_main_return:-return} (!testfunc());
4271         }
4272         ],
4273         [cf_cv_link_dataonly=yes],
4274         [cf_cv_link_dataonly=no],
4275         [cf_cv_link_dataonly=unknown])
4276         LIBS="$cf_saveLIBS"
4277         ])
4278 AC_MSG_RESULT($cf_cv_link_dataonly)
4279
4280 if test "$cf_cv_link_dataonly" = no ; then
4281         AC_DEFINE(BROKEN_LINKER,1,[if data-only library module does not link])
4282         BROKEN_LINKER=1
4283 fi
4284
4285 ])dnl
4286 dnl ---------------------------------------------------------------------------
4287 dnl CF_LINK_FUNCS version: 9 updated: 2017/01/21 11:11:02
4288 dnl -------------
4289 dnl Most Unix systems have both link and symlink, a few don't have symlink.
4290 dnl A few non-Unix systems implement symlink, but not link.
4291 dnl A few non-systems implement neither (or have nonfunctional versions).
4292 AC_DEFUN([CF_LINK_FUNCS],
4293 [
4294 AC_CHECK_HEADERS( \
4295 unistd.h \
4296 )
4297 AC_CHECK_FUNCS( \
4298         remove \
4299         unlink )
4300
4301 if test "$cross_compiling" = yes ; then
4302         AC_CHECK_FUNCS( \
4303                 link \
4304                 symlink )
4305 else
4306         AC_CACHE_CHECK(if link/symlink functions work,cf_cv_link_funcs,[
4307                 cf_cv_link_funcs=
4308                 for cf_func in link symlink ; do
4309                         AC_TRY_RUN([
4310 #include <sys/types.h>
4311 #include <sys/stat.h>
4312 #ifdef HAVE_UNISTD_H
4313 #include <unistd.h>
4314 #endif
4315 int main(void)
4316 {
4317         int fail = 0;
4318         char *src = "config.log";
4319         char *dst = "conftest.chk";
4320         struct stat src_sb;
4321         struct stat dst_sb;
4322
4323         stat(src, &src_sb);
4324         fail = ($cf_func("config.log", "conftest.chk") < 0)
4325             || (stat(dst, &dst_sb) < 0)
4326             || (dst_sb.st_mtime != src_sb.st_mtime);
4327 #ifdef HAVE_UNLINK
4328         unlink(dst);
4329 #else
4330         remove(dst);
4331 #endif
4332         ${cf_cv_main_return:-return} (fail);
4333 }
4334                         ],[
4335                         cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
4336                         eval 'ac_cv_func_'$cf_func'=yes'],[
4337                         eval 'ac_cv_func_'$cf_func'=no'],[
4338                         eval 'ac_cv_func_'$cf_func'=error'])
4339                 done
4340                 test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
4341         ])
4342         test "$ac_cv_func_link"    = yes && AC_DEFINE(HAVE_LINK,1,[Define to 1 if we have link() function])
4343         test "$ac_cv_func_symlink" = yes && AC_DEFINE(HAVE_SYMLINK,1,[Define to 1 if we have symlink() function])
4344 fi
4345 ])dnl
4346 dnl ---------------------------------------------------------------------------
4347 dnl CF_MAKEFLAGS version: 17 updated: 2015/08/05 20:44:28
4348 dnl ------------
4349 dnl Some 'make' programs support ${MAKEFLAGS}, some ${MFLAGS}, to pass 'make'
4350 dnl options to lower-levels.  It's very useful for "make -n" -- if we have it.
4351 dnl (GNU 'make' does both, something POSIX 'make', which happens to make the
4352 dnl ${MAKEFLAGS} variable incompatible because it adds the assignments :-)
4353 AC_DEFUN([CF_MAKEFLAGS],
4354 [
4355 AC_CACHE_CHECK(for makeflags variable, cf_cv_makeflags,[
4356         cf_cv_makeflags=''
4357         for cf_option in '-${MAKEFLAGS}' '${MFLAGS}'
4358         do
4359                 cat >cf_makeflags.tmp <<CF_EOF
4360 SHELL = $SHELL
4361 all :
4362         @ echo '.$cf_option'
4363 CF_EOF
4364                 cf_result=`${MAKE:-make} -k -f cf_makeflags.tmp 2>/dev/null | fgrep -v "ing directory" | sed -e 's,[[   ]]*$,,'`
4365                 case "$cf_result" in
4366                 (.*k|.*kw)
4367                         cf_result=`${MAKE:-make} -k -f cf_makeflags.tmp CC=cc 2>/dev/null`
4368                         case "$cf_result" in
4369                         (.*CC=*)        cf_cv_makeflags=
4370                                 ;;
4371                         (*)     cf_cv_makeflags=$cf_option
4372                                 ;;
4373                         esac
4374                         break
4375                         ;;
4376                 (.-)    ;;
4377                 (*)     echo "given option \"$cf_option\", no match \"$cf_result\""
4378                         ;;
4379                 esac
4380         done
4381         rm -f cf_makeflags.tmp
4382 ])
4383
4384 AC_SUBST(cf_cv_makeflags)
4385 ])dnl
4386 dnl ---------------------------------------------------------------------------
4387 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
4388 dnl ------------
4389 dnl Generate tags/TAGS targets for makefiles.  Do not generate TAGS if we have
4390 dnl a monocase filesystem.
4391 AC_DEFUN([CF_MAKE_TAGS],[
4392 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
4393
4394 AC_CHECK_PROGS(CTAGS, exctags ctags)
4395 AC_CHECK_PROGS(ETAGS, exetags etags)
4396
4397 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
4398
4399 if test "$cf_cv_mixedcase" = yes ; then
4400         AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
4401 else
4402         MAKE_UPPER_TAGS=no
4403 fi
4404
4405 if test "$MAKE_UPPER_TAGS" = yes ; then
4406         MAKE_UPPER_TAGS=
4407 else
4408         MAKE_UPPER_TAGS="#"
4409 fi
4410
4411 if test "$MAKE_LOWER_TAGS" = yes ; then
4412         MAKE_LOWER_TAGS=
4413 else
4414         MAKE_LOWER_TAGS="#"
4415 fi
4416
4417 AC_SUBST(CTAGS)
4418 AC_SUBST(ETAGS)
4419
4420 AC_SUBST(MAKE_UPPER_TAGS)
4421 AC_SUBST(MAKE_LOWER_TAGS)
4422 ])dnl
4423 dnl ---------------------------------------------------------------------------
4424 dnl CF_MANPAGE_FORMAT version: 11 updated: 2015/04/18 08:56:57
4425 dnl -----------------
4426 dnl Option to allow user to override automatic configuration of manpage format.
4427 dnl There are several special cases:
4428 dnl
4429 dnl     gzip - man checks for, can display gzip'd files
4430 dnl     compress - man checks for, can display compressed files
4431 dnl     BSDI - files in the cat-directories are suffixed ".0"
4432 dnl     formatted - installer should format (put files in cat-directory)
4433 dnl     catonly - installer should only format, e.g., for a turnkey system.
4434 dnl
4435 dnl There are other configurations which this macro does not test, e.g., HPUX's
4436 dnl compressed manpages (but uncompressed manpages are fine, and HPUX's naming
4437 dnl convention would not match our use).
4438 AC_DEFUN([CF_MANPAGE_FORMAT],
4439 [
4440 AC_REQUIRE([CF_PATHSEP])
4441 AC_MSG_CHECKING(format of man-pages)
4442
4443 AC_ARG_WITH(manpage-format,
4444         [  --with-manpage-format   specify manpage-format: gzip/compress/BSDI/normal and
4445                           optionally formatted/catonly, e.g., gzip,formatted],
4446         [MANPAGE_FORMAT=$withval],
4447         [MANPAGE_FORMAT=unknown])
4448
4449 test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=unknown
4450 MANPAGE_FORMAT=`echo "$MANPAGE_FORMAT" | sed -e 's/,/ /g'`
4451
4452 cf_unknown=
4453
4454 case $MANPAGE_FORMAT in
4455 (unknown)
4456         if test -z "$MANPATH" ; then
4457                 MANPATH="/usr/man:/usr/share/man"
4458         fi
4459
4460         # look for the 'date' man-page (it's most likely to be installed!)
4461         MANPAGE_FORMAT=
4462         cf_preform=no
4463         cf_catonly=yes
4464         cf_example=date
4465
4466         IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
4467         for cf_dir in $MANPATH; do
4468                 test -z "$cf_dir" && cf_dir=/usr/man
4469                 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
4470                 do
4471                         cf_test=`echo $cf_name | sed -e 's/*//'`
4472                         if test "x$cf_test" = "x$cf_name" ; then
4473
4474                                 case "$cf_name" in
4475                                 (*.gz) MANPAGE_FORMAT="$MANPAGE_FORMAT gzip";;
4476                                 (*.Z)  MANPAGE_FORMAT="$MANPAGE_FORMAT compress";;
4477                                 (*.0)  MANPAGE_FORMAT="$MANPAGE_FORMAT BSDI";;
4478                                 (*)    MANPAGE_FORMAT="$MANPAGE_FORMAT normal";;
4479                                 esac
4480
4481                                 case "$cf_name" in
4482                                 ($cf_dir/man*)
4483                                         cf_catonly=no
4484                                         ;;
4485                                 ($cf_dir/cat*)
4486                                         cf_preform=yes
4487                                         ;;
4488                                 esac
4489                                 break
4490                         fi
4491
4492                         # if we found a match in either man* or cat*, stop looking
4493                         if test -n "$MANPAGE_FORMAT" ; then
4494                                 cf_found=no
4495                                 test "$cf_preform" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT formatted"
4496                                 test "$cf_catonly" = yes && MANPAGE_FORMAT="$MANPAGE_FORMAT catonly"
4497                                 case "$cf_name" in
4498                                 ($cf_dir/cat*)
4499                                         cf_found=yes
4500                                         ;;
4501                                 esac
4502                                 test $cf_found=yes && break
4503                         fi
4504                 done
4505                 # only check the first directory in $MANPATH where we find manpages
4506                 if test -n "$MANPAGE_FORMAT" ; then
4507                         break
4508                 fi
4509         done
4510         # if we did not find the example, just assume it is normal
4511         test -z "$MANPAGE_FORMAT" && MANPAGE_FORMAT=normal
4512         IFS="$ac_save_ifs"
4513         ;;
4514 (*)
4515         for cf_option in $MANPAGE_FORMAT; do
4516         case $cf_option in
4517         (gzip|compress|BSDI|normal|formatted|catonly)
4518                 ;;
4519         (*)
4520                 cf_unknown="$cf_unknown $cf_option"
4521                 ;;
4522         esac
4523         done
4524         ;;
4525 esac
4526
4527 AC_MSG_RESULT($MANPAGE_FORMAT)
4528 if test -n "$cf_unknown" ; then
4529         AC_MSG_WARN(Unexpected manpage-format $cf_unknown)
4530 fi
4531 ])dnl
4532 dnl ---------------------------------------------------------------------------
4533 dnl CF_MANPAGE_RENAMES version: 10 updated: 2015/08/05 20:44:28
4534 dnl ------------------
4535 dnl The Debian people have their own naming convention for manpages.  This
4536 dnl option lets us override the name of the file containing renaming, or
4537 dnl disable it altogether.
4538 AC_DEFUN([CF_MANPAGE_RENAMES],
4539 [
4540 AC_MSG_CHECKING(for manpage renaming)
4541
4542 AC_ARG_WITH(manpage-renames,
4543         [  --with-manpage-renames  specify manpage-renaming],
4544         [MANPAGE_RENAMES=$withval],
4545         [MANPAGE_RENAMES=yes])
4546
4547 case ".$MANPAGE_RENAMES" in
4548 (.no)
4549         ;;
4550 (.|.yes)
4551         # Debian 'man' program?
4552         if test -f /etc/debian_version ; then
4553                 MANPAGE_RENAMES=`cd $srcdir && pwd`/man/man_db.renames
4554         else
4555                 MANPAGE_RENAMES=no
4556         fi
4557         ;;
4558 esac
4559
4560 if test "$MANPAGE_RENAMES" != no ; then
4561         if test -f $srcdir/man/$MANPAGE_RENAMES ; then
4562                 MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
4563         elif test ! -f $MANPAGE_RENAMES ; then
4564                 AC_MSG_ERROR(not a filename: $MANPAGE_RENAMES)
4565         fi
4566
4567         test ! -d man && mkdir man
4568
4569         # Construct a sed-script to perform renaming within man-pages
4570         if test -n "$MANPAGE_RENAMES" ; then
4571                 test ! -d man && mkdir man
4572                 $SHELL $srcdir/man/make_sed.sh $MANPAGE_RENAMES >./edit_man.sed
4573         fi
4574 fi
4575
4576 AC_MSG_RESULT($MANPAGE_RENAMES)
4577 AC_SUBST(MANPAGE_RENAMES)
4578 ])dnl
4579 dnl ---------------------------------------------------------------------------
4580 dnl CF_MANPAGE_SYMLINKS version: 6 updated: 2015/04/17 21:13:04
4581 dnl -------------------
4582 dnl Some people expect each tool to make all aliases for manpages in the
4583 dnl man-directory.  This accommodates the older, less-capable implementations
4584 dnl of 'man', and is optional.
4585 AC_DEFUN([CF_MANPAGE_SYMLINKS],
4586 [
4587 AC_MSG_CHECKING(if manpage aliases will be installed)
4588
4589 AC_ARG_WITH(manpage-aliases,
4590         [  --with-manpage-aliases  specify manpage-aliases using .so],
4591         [MANPAGE_ALIASES=$withval],
4592         [MANPAGE_ALIASES=yes])
4593
4594 AC_MSG_RESULT($MANPAGE_ALIASES)
4595
4596 case "x$LN_S" in
4597 (xln*)
4598         cf_use_symlinks=yes
4599         ;;
4600 (*)
4601         cf_use_symlinks=no
4602         ;;
4603 esac
4604
4605 MANPAGE_SYMLINKS=no
4606 if test "$MANPAGE_ALIASES" = yes ; then
4607 AC_MSG_CHECKING(if manpage symlinks should be used)
4608
4609 AC_ARG_WITH(manpage-symlinks,
4610         [  --with-manpage-symlinks specify manpage-aliases using symlinks],
4611         [MANPAGE_SYMLINKS=$withval],
4612         [MANPAGE_SYMLINKS=$cf_use_symlinks])
4613
4614 if test "$$cf_use_symlinks" = no; then
4615 if test "$MANPAGE_SYMLINKS" = yes ; then
4616         AC_MSG_WARN(cannot make symlinks, will use .so files)
4617         MANPAGE_SYMLINKS=no
4618 fi
4619 fi
4620
4621 AC_MSG_RESULT($MANPAGE_SYMLINKS)
4622 fi
4623
4624 ])dnl
4625 dnl ---------------------------------------------------------------------------
4626 dnl CF_MANPAGE_TBL version: 3 updated: 2002/01/19 22:51:32
4627 dnl --------------
4628 dnl This option causes manpages to be run through tbl(1) to generate tables
4629 dnl correctly.
4630 AC_DEFUN([CF_MANPAGE_TBL],
4631 [
4632 AC_MSG_CHECKING(for manpage tbl)
4633
4634 AC_ARG_WITH(manpage-tbl,
4635         [  --with-manpage-tbl      specify manpage processing with tbl],
4636         [MANPAGE_TBL=$withval],
4637         [MANPAGE_TBL=no])
4638
4639 AC_MSG_RESULT($MANPAGE_TBL)
4640 ])dnl
4641 dnl ---------------------------------------------------------------------------
4642 dnl CF_MAN_PAGES version: 47 updated: 2017/08/12 07:58:51
4643 dnl ------------
4644 dnl Try to determine if the man-pages on the system are compressed, and if
4645 dnl so, what format is used.  Use this information to construct a script that
4646 dnl will install man-pages.
4647 AC_DEFUN([CF_MAN_PAGES],
4648 [
4649 CF_HELP_MESSAGE(Options to Specify How Manpages are Installed:)
4650 CF_MANPAGE_FORMAT
4651 CF_MANPAGE_RENAMES
4652 CF_MANPAGE_SYMLINKS
4653 CF_MANPAGE_TBL
4654
4655 if test "$prefix" = "NONE" ; then
4656         cf_prefix="$ac_default_prefix"
4657 else
4658         cf_prefix="$prefix"
4659 fi
4660
4661 case "$MANPAGE_FORMAT" in
4662 (*catonly*)
4663         cf_format=yes
4664         cf_inboth=no
4665         ;;
4666 (*formatted*)
4667         cf_format=yes
4668         cf_inboth=yes
4669         ;;
4670 (*)
4671         cf_format=no
4672         cf_inboth=no
4673         ;;
4674 esac
4675
4676 test ! -d man && mkdir man
4677
4678 cf_so_strip=
4679 cf_compress=
4680 case "$MANPAGE_FORMAT" in
4681 (*compress*)
4682         cf_so_strip="Z"
4683         cf_compress=compress
4684         ;;
4685 (*gzip*)
4686         cf_so_strip="gz"
4687         cf_compress=gzip
4688         ;;
4689 esac
4690
4691 cf_edit_man=./edit_man.sh
4692 cf_man_alias=`pwd`/man_alias.sed
4693
4694 cat >$cf_edit_man <<CF_EOF
4695 #! $SHELL
4696 # this script is generated by the configure-script CF_MAN_PAGES macro.
4697
4698 prefix="$cf_prefix"
4699 datarootdir="$datarootdir"
4700 datadir="$datadir"
4701
4702 NCURSES_MAJOR="$NCURSES_MAJOR"
4703 NCURSES_MINOR="$NCURSES_MINOR"
4704 NCURSES_PATCH="$NCURSES_PATCH"
4705
4706 NCURSES_OSPEED="$NCURSES_OSPEED"
4707 TERMINFO="$TERMINFO"
4708
4709 INSTALL="$INSTALL"
4710 INSTALL_DATA="$INSTALL_DATA"
4711
4712 transform="$program_transform_name"
4713
4714 TMP=\${TMPDIR:=/tmp}/man\$\$
4715 trap "rm -f \$TMP" 0 1 2 3 15
4716
4717 form=\[$]1
4718 shift || exit 1
4719
4720 verb=\[$]1
4721 shift || exit 1
4722
4723 mandir=\[$]1
4724 shift || exit 1
4725
4726 srcdir=\[$]1
4727 top_srcdir=\[$]srcdir/..
4728 shift || exit 1
4729
4730 if test "\$form" = normal ; then
4731         if test "$cf_format" = yes ; then
4732         if test "$cf_inboth" = no ; then
4733                 $SHELL \[$]0 format \$verb \$mandir \$srcdir \[$]*
4734                 exit $?
4735         fi
4736         fi
4737         cf_subdir=\$mandir/man
4738         cf_tables=$MANPAGE_TBL
4739 else
4740         cf_subdir=\$mandir/cat
4741         cf_tables=yes
4742 fi
4743
4744 # process the list of source-files
4745 for i in \[$]* ; do
4746 case \$i in
4747 (*.orig|*.rej) ;;
4748 (*.[[0-9]]*)
4749         section=\`expr "\$i" : '.*\\.\\([[0-9]]\\)[[xm]]*'\`;
4750         if test \$verb = installing ; then
4751         if test ! -d \$cf_subdir\${section} ; then
4752                 mkdir -p \$cf_subdir\$section
4753         fi
4754         fi
4755
4756         # replace variables in man page
4757         if test ! -f $cf_man_alias ; then
4758 cat >>$cf_man_alias <<-CF_EOF2
4759                 s,@DATADIR@,\$datadir,g
4760                 s,@TERMINFO@,\${TERMINFO:="no default value"},g
4761                 s,@TERMINFO_DIRS@,\${TERMINFO_DIRS:="no default value"},g
4762                 s,@NCURSES_MAJOR@,\${NCURSES_MAJOR:="no default value"},g
4763                 s,@NCURSES_MINOR@,\${NCURSES_MINOR:="no default value"},g
4764                 s,@NCURSES_PATCH@,\${NCURSES_PATCH:="no default value"},g
4765                 s,@NCURSES_OSPEED@,\${NCURSES_OSPEED:="no default value"},g
4766 CF_EOF
4767         ifelse($1,,,[
4768         for cf_name in $1
4769         do
4770                 cf_NAME=`echo "$cf_name" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
4771                 cf_name=`echo $cf_name|sed "$program_transform_name"`
4772 cat >>$cf_edit_man <<-CF_EOF
4773                 s,@$cf_NAME@,$cf_name,g
4774 CF_EOF
4775         done
4776         ])
4777 cat >>$cf_edit_man <<CF_EOF
4778 CF_EOF2
4779                 echo "...made $cf_man_alias"
4780         fi
4781
4782         aliases=
4783         cf_source=\`basename \$i\`
4784         inalias=\$cf_source
4785         test ! -f \$inalias && inalias="\$srcdir/\$inalias"
4786         if test ! -f \$inalias ; then
4787                 echo .. skipped \$cf_source
4788                 continue
4789         fi
4790 CF_EOF
4791
4792 if test "$MANPAGE_ALIASES" != no ; then
4793 cat >>$cf_edit_man <<CF_EOF
4794         nCurses=ignore.3x
4795         test $with_curses_h = yes && nCurses=ncurses.3x
4796         aliases=\`sed -f \$top_srcdir/man/manlinks.sed \$inalias |sed -f $cf_man_alias | sort -u; test \$inalias = \$nCurses && echo curses\`
4797 CF_EOF
4798 fi
4799
4800 if test "$MANPAGE_RENAMES" = no ; then
4801 cat >>$cf_edit_man <<CF_EOF
4802         # perform program transformations for section 1 man pages
4803         if test \$section = 1 ; then
4804                 cf_target=\$cf_subdir\${section}/\`echo \$cf_source|sed "\${transform}"\`
4805         else
4806                 cf_target=\$cf_subdir\${section}/\$cf_source
4807         fi
4808 CF_EOF
4809 else
4810 cat >>$cf_edit_man <<CF_EOF
4811         cf_target=\`grep "^\$cf_source" $MANPAGE_RENAMES | $AWK '{print \[$]2}'\`
4812         if test -z "\$cf_target" ; then
4813                 echo '? missing rename for '\$cf_source
4814                 cf_target="\$cf_source"
4815         fi
4816         cf_target="\$cf_subdir\${section}/\${cf_target}"
4817
4818 CF_EOF
4819 fi
4820
4821 cat >>$cf_edit_man <<CF_EOF
4822         sed     -f $cf_man_alias \\
4823 CF_EOF
4824
4825 if test -f $MANPAGE_RENAMES ; then
4826 cat >>$cf_edit_man <<CF_EOF
4827                 < \$i | sed -f `pwd`/edit_man.sed >\$TMP
4828 CF_EOF
4829 else
4830 cat >>$cf_edit_man <<CF_EOF
4831                 < \$i >\$TMP
4832 CF_EOF
4833 fi
4834
4835 cat >>$cf_edit_man <<CF_EOF
4836 if test \$cf_tables = yes ; then
4837         tbl \$TMP >\$TMP.out
4838         mv \$TMP.out \$TMP
4839 fi
4840 CF_EOF
4841
4842 if test $with_overwrite != yes ; then
4843 cat >>$cf_edit_man <<CF_EOF
4844         sed -e "/\#[    ]*include/s,<curses.h,<ncurses$LIB_SUFFIX/curses.h," < \$TMP >\$TMP.out
4845         mv \$TMP.out \$TMP
4846 CF_EOF
4847 fi
4848
4849 if test $with_curses_h != yes ; then
4850 cat >>$cf_edit_man <<CF_EOF
4851         sed -e "/\#[    ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out
4852         mv \$TMP.out \$TMP
4853 CF_EOF
4854 fi
4855
4856 cat >>$cf_edit_man <<CF_EOF
4857         if test \$form = format ; then
4858                 nroff -man \$TMP >\$TMP.out
4859                 mv \$TMP.out \$TMP
4860         fi
4861 CF_EOF
4862
4863 if test -n "$cf_compress" ; then
4864 cat >>$cf_edit_man <<CF_EOF
4865         if test \$verb = installing ; then
4866         if ( $cf_compress -f \$TMP )
4867         then
4868                 mv \$TMP.$cf_so_strip \$TMP
4869         fi
4870         fi
4871         cf_target="\$cf_target.$cf_so_strip"
4872 CF_EOF
4873 fi
4874
4875 case "$MANPAGE_FORMAT" in
4876 (*BSDI*)
4877 cat >>$cf_edit_man <<CF_EOF
4878         if test \$form = format ; then
4879                 # BSDI installs only .0 suffixes in the cat directories
4880                 cf_target="\`echo \$cf_target|sed -e 's/\.[[1-9]]\+[[a-z]]*/.0/'\`"
4881         fi
4882 CF_EOF
4883   ;;
4884 esac
4885
4886 cat >>$cf_edit_man <<CF_EOF
4887         suffix=\`basename \$cf_target | sed -e 's%^[[^.]]*%%'\`
4888         if test \$verb = installing ; then
4889                 echo \$verb \$cf_target
4890                 \$INSTALL_DATA \$TMP \$cf_target
4891                 test -d \$cf_subdir\${section} &&
4892                 test -n "\$aliases" && (
4893                         cd \$cf_subdir\${section} && (
4894                                 cf_source=\`echo \$cf_target |sed -e 's%^.*/\([[^/]][[^/]]*/[[^/]][[^/]]*$\)%\1%'\`
4895                                 test -n "$cf_so_strip" && cf_source=\`echo \$cf_source |sed -e 's%\.$cf_so_strip\$%%'\`
4896                                 cf_target=\`basename \$cf_target\`
4897                                 for cf_alias in \$aliases
4898                                 do
4899                                         if test \$section = 1 ; then
4900                                                 cf_alias=\`echo \$cf_alias|sed "\${transform}"\`
4901                                         fi
4902
4903                                         if test "$MANPAGE_SYMLINKS" = yes ; then
4904                                                 if test -f \$cf_alias\${suffix} ; then
4905                                                         if ( cmp -s \$cf_target \$cf_alias\${suffix} )
4906                                                         then
4907                                                                 continue
4908                                                         fi
4909                                                 fi
4910                                                 echo .. \$verb alias \$cf_alias\${suffix}
4911 CF_EOF
4912 case "x$LN_S" in
4913 (*-f)
4914 cat >>$cf_edit_man <<CF_EOF
4915                                                 $LN_S \$cf_target \$cf_alias\${suffix}
4916 CF_EOF
4917         ;;
4918 (*)
4919 cat >>$cf_edit_man <<CF_EOF
4920                                                 rm -f \$cf_alias\${suffix}
4921                                                 $LN_S \$cf_target \$cf_alias\${suffix}
4922 CF_EOF
4923         ;;
4924 esac
4925 cat >>$cf_edit_man <<CF_EOF
4926                                         elif test "\$cf_target" != "\$cf_alias\${suffix}" ; then
4927                                                 echo ".so \$cf_source" >\$TMP
4928 CF_EOF
4929 if test -n "$cf_compress" ; then
4930 cat >>$cf_edit_man <<CF_EOF
4931                                                 if test -n "$cf_so_strip" ; then
4932                                                         $cf_compress -f \$TMP
4933                                                         mv \$TMP.$cf_so_strip \$TMP
4934                                                 fi
4935 CF_EOF
4936 fi
4937 cat >>$cf_edit_man <<CF_EOF
4938                                                 echo .. \$verb alias \$cf_alias\${suffix}
4939                                                 rm -f \$cf_alias\${suffix}
4940                                                 \$INSTALL_DATA \$TMP \$cf_alias\${suffix}
4941                                         fi
4942                                 done
4943                         )
4944                 )
4945         elif test \$verb = removing ; then
4946                 test -f \$cf_target && (
4947                         echo \$verb \$cf_target
4948                         rm -f \$cf_target
4949                 )
4950                 test -d \$cf_subdir\${section} &&
4951                 test -n "\$aliases" && (
4952                         cd \$cf_subdir\${section} && (
4953                                 for cf_alias in \$aliases
4954                                 do
4955                                         if test \$section = 1 ; then
4956                                                 cf_alias=\`echo \$cf_alias|sed "\${transform}"\`
4957                                         fi
4958
4959                                         echo .. \$verb alias \$cf_alias\${suffix}
4960                                         rm -f \$cf_alias\${suffix}
4961                                 done
4962                         )
4963                 )
4964         else
4965 #               echo ".hy 0"
4966                 cat \$TMP
4967         fi
4968         ;;
4969 esac
4970 done
4971
4972 if test $cf_inboth = yes ; then
4973 if test \$form != format ; then
4974         $SHELL \[$]0 format \$verb \$mandir \$srcdir \[$]*
4975 fi
4976 fi
4977
4978 exit 0
4979 CF_EOF
4980 chmod 755 $cf_edit_man
4981
4982 ])dnl
4983 dnl ---------------------------------------------------------------------------
4984 dnl CF_MATH_LIB version: 9 updated: 2017/01/21 11:06:25
4985 dnl -----------
4986 dnl Checks for libraries.  At least one UNIX system, Apple Macintosh
4987 dnl Rhapsody 5.5, does not have -lm.  We cannot use the simpler
4988 dnl AC_CHECK_LIB(m,sin), because that fails for C++.
4989 AC_DEFUN([CF_MATH_LIB],
4990 [
4991 AC_CACHE_CHECK(if -lm needed for math functions,
4992         cf_cv_need_libm,[
4993         AC_TRY_LINK([
4994         #include <stdio.h>
4995         #include <stdlib.h>
4996         #include <math.h>
4997         ],
4998         [double x = rand(); printf("result = %g\n", ]ifelse([$2],,sin(x),$2)[)],
4999         [cf_cv_need_libm=no],
5000         [cf_cv_need_libm=yes])])
5001 if test "$cf_cv_need_libm" = yes
5002 then
5003 ifelse($1,,[
5004         CF_ADD_LIB(m)
5005 ],[$1=-lm])
5006 fi
5007 ])
5008 dnl ---------------------------------------------------------------------------
5009 dnl CF_MIXEDCASE_FILENAMES version: 7 updated: 2015/04/12 15:39:00
5010 dnl ----------------------
5011 dnl Check if the file-system supports mixed-case filenames.  If we're able to
5012 dnl create a lowercase name and see it as uppercase, it doesn't support that.
5013 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
5014 [
5015 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
5016 if test "$cross_compiling" = yes ; then
5017         case $target_alias in
5018         (*-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-msys*|*-mingw*|*-uwin*)
5019                 cf_cv_mixedcase=no
5020                 ;;
5021         (*)
5022                 cf_cv_mixedcase=yes
5023                 ;;
5024         esac
5025 else
5026         rm -f conftest CONFTEST
5027         echo test >conftest
5028         if test -f CONFTEST ; then
5029                 cf_cv_mixedcase=no
5030         else
5031                 cf_cv_mixedcase=yes
5032         fi
5033         rm -f conftest CONFTEST
5034 fi
5035 ])
5036 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES,1,[Define to 1 if filesystem supports mixed-case filenames.])
5037 ])dnl
5038 dnl ---------------------------------------------------------------------------
5039 dnl CF_MKSTEMP version: 10 updated: 2017/01/21 11:12:16
5040 dnl ----------
5041 dnl Check for a working mkstemp.  This creates two files, checks that they are
5042 dnl successfully created and distinct (AmigaOS apparently fails on the last).
5043 AC_DEFUN([CF_MKSTEMP],[
5044 AC_CHECK_HEADERS( \
5045 unistd.h \
5046 )
5047 AC_CACHE_CHECK(for working mkstemp, cf_cv_func_mkstemp,[
5048 rm -rf conftest*
5049 AC_TRY_RUN([
5050 #include <sys/types.h>
5051 #ifdef HAVE_UNISTD_H
5052 #include <unistd.h>
5053 #endif
5054 #include <stdlib.h>
5055 #include <stdio.h>
5056 #include <string.h>
5057 #include <sys/stat.h>
5058 int main(void)
5059 {
5060         char *tmpl = "conftestXXXXXX";
5061         char name[2][80];
5062         int n;
5063         int result = 0;
5064         int fd;
5065         struct stat sb;
5066
5067         umask(077);
5068         for (n = 0; n < 2; ++n) {
5069                 strcpy(name[n], tmpl);
5070                 if ((fd = mkstemp(name[n])) >= 0) {
5071                         if (!strcmp(name[n], tmpl)
5072                          || stat(name[n], &sb) != 0
5073                          || (sb.st_mode & S_IFMT) != S_IFREG
5074                          || (sb.st_mode & 077) != 0) {
5075                                 result = 1;
5076                         }
5077                         close(fd);
5078                 }
5079         }
5080         if (result == 0
5081          && !strcmp(name[0], name[1]))
5082                 result = 1;
5083         ${cf_cv_main_return:-return}(result);
5084 }
5085 ],[cf_cv_func_mkstemp=yes
5086 ],[cf_cv_func_mkstemp=no
5087 ],[cf_cv_func_mkstemp=maybe])
5088 ])
5089 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
5090         AC_CHECK_FUNC(mkstemp)
5091 fi
5092 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
5093         AC_DEFINE(HAVE_MKSTEMP,1,[Define to 1 if mkstemp() is available and working.])
5094 fi
5095 ])dnl
5096 dnl ---------------------------------------------------------------------------
5097 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
5098 dnl ----------
5099 dnl Write a debug message to config.log, along with the line number in the
5100 dnl configure script.
5101 AC_DEFUN([CF_MSG_LOG],[
5102 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
5103 ])dnl
5104 dnl ---------------------------------------------------------------------------
5105 dnl CF_NCURSES_ABI_6 version: 3 updated: 2015/06/06 16:10:11
5106 dnl ----------------
5107 dnl Set ncurses' ABI to 6 unless overridden by explicit configure option, and
5108 dnl warn about this.
5109 AC_DEFUN([CF_NCURSES_ABI_6],[
5110 if test "${with_abi_version+set}" != set; then
5111         case $cf_cv_rel_version in
5112         (5.*)
5113                 cf_cv_rel_version=6.0
5114                 cf_cv_abi_version=6
5115                 AC_MSG_WARN(overriding ABI version to $cf_cv_abi_version)
5116                 ;;
5117         esac
5118 fi
5119 ])dnl
5120 dnl ---------------------------------------------------------------------------
5121 dnl CF_NCURSES_WITH_ABI_VERSION version: 2 updated: 2015/12/19 17:51:52
5122 dnl ---------------------------
5123 dnl Allow ncurses's ABI to be overridden.  Generally this happens when a
5124 dnl packager has incremented the ABI past that used in the original package,
5125 dnl and wishes to keep doing this.
5126 dnl
5127 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
5128 dnl symbol.
5129 AC_DEFUN([CF_NCURSES_WITH_ABI_VERSION],[
5130 CF_WITH_ABI_VERSION($1)
5131 if test "x$cf_cv_abi_version" != "x$with_abi_version"
5132 then
5133         case $cf_cv_rel_version in
5134         (5.*)
5135                 cf_cv_rel_version=$with_abi_version.0
5136                 ;;
5137         esac
5138 fi
5139 ])dnl
5140 dnl ---------------------------------------------------------------------------
5141 dnl CF_NO_LEAKS_OPTION version: 6 updated: 2015/04/12 15:39:00
5142 dnl ------------------
5143 dnl see CF_WITH_NO_LEAKS
5144 AC_DEFUN([CF_NO_LEAKS_OPTION],[
5145 AC_MSG_CHECKING(if you want to use $1 for testing)
5146 AC_ARG_WITH($1,
5147         [$2],
5148         [AC_DEFINE_UNQUOTED($3,1,"Define to 1 if you want to use $1 for testing.")ifelse([$4],,[
5149          $4
5150 ])
5151         : ${with_cflags:=-g}
5152         : ${with_no_leaks:=yes}
5153          with_$1=yes],
5154         [with_$1=])
5155 AC_MSG_RESULT(${with_$1:-no})
5156
5157 case .$with_cflags in
5158 (.*-g*)
5159         case .$CFLAGS in
5160         (.*-g*)
5161                 ;;
5162         (*)
5163                 CF_ADD_CFLAGS([-g])
5164                 ;;
5165         esac
5166         ;;
5167 esac
5168 ])dnl
5169 dnl ---------------------------------------------------------------------------
5170 dnl CF_NUMBER_SYNTAX version: 2 updated: 2015/04/17 21:13:04
5171 dnl ----------------
5172 dnl Check if the given variable is a number.  If not, report an error.
5173 dnl $1 is the variable
5174 dnl $2 is the message
5175 AC_DEFUN([CF_NUMBER_SYNTAX],[
5176 if test -n "$1" ; then
5177   case $1 in
5178   ([[0-9]]*)
5179         ;;
5180   (*)
5181         AC_MSG_ERROR($2 is not a number: $1)
5182         ;;
5183   esac
5184 else
5185   AC_MSG_ERROR($2 value is empty)
5186 fi
5187 ])dnl
5188 dnl ---------------------------------------------------------------------------
5189 dnl CF_OBJ_SUBDIR version: 7 updated: 2015/04/17 21:13:04
5190 dnl -------------
5191 dnl Compute the object-directory name from the given model name
5192 AC_DEFUN([CF_OBJ_SUBDIR],
5193 [
5194         case $1 in
5195         (libtool) $2='obj_lo'  ;;
5196         (normal)  $2='objects' ;;
5197         (debug)   $2='obj_g' ;;
5198         (profile) $2='obj_p' ;;
5199         (shared)
5200                 case $cf_cv_system_name in
5201                 (cygwin|msys)
5202                         $2='objects' ;;
5203                 (*)
5204                         $2='obj_s' ;;
5205                 esac
5206         esac
5207 ])dnl
5208 dnl ---------------------------------------------------------------------------
5209 dnl CF_PATHSEP version: 7 updated: 2015/04/12 15:39:00
5210 dnl ----------
5211 dnl Provide a value for the $PATH and similar separator (or amend the value
5212 dnl as provided in autoconf 2.5x).
5213 AC_DEFUN([CF_PATHSEP],
5214 [
5215         AC_MSG_CHECKING(for PATH separator)
5216         case $cf_cv_system_name in
5217         (os2*)  PATH_SEPARATOR=';'  ;;
5218         (*)     ${PATH_SEPARATOR:=':'}  ;;
5219         esac
5220 ifelse([$1],,,[$1=$PATH_SEPARATOR])
5221         AC_SUBST(PATH_SEPARATOR)
5222         AC_MSG_RESULT($PATH_SEPARATOR)
5223 ])dnl
5224 dnl ---------------------------------------------------------------------------
5225 dnl CF_PATH_SYNTAX version: 16 updated: 2015/04/18 08:56:57
5226 dnl --------------
5227 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
5228 dnl begins with one of the prefix/exec_prefix variables, and then again if the
5229 dnl result begins with 'NONE'.  This is necessary to work around autoconf's
5230 dnl delayed evaluation of those symbols.
5231 AC_DEFUN([CF_PATH_SYNTAX],[
5232 if test "x$prefix" != xNONE; then
5233         cf_path_syntax="$prefix"
5234 else
5235         cf_path_syntax="$ac_default_prefix"
5236 fi
5237
5238 case ".[$]$1" in
5239 (.\[$]\(*\)*|.\'*\'*)
5240         ;;
5241 (..|./*|.\\*)
5242         ;;
5243 (.[[a-zA-Z]]:[[\\/]]*) # OS/2 EMX
5244         ;;
5245 (.\[$]{*prefix}*|.\[$]{*dir}*)
5246         eval $1="[$]$1"
5247         case ".[$]$1" in
5248         (.NONE/*)
5249                 $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
5250                 ;;
5251         esac
5252         ;;
5253 (.no|.NONE/*)
5254         $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
5255         ;;
5256 (*)
5257         ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
5258         ;;
5259 esac
5260 ])dnl
5261 dnl ---------------------------------------------------------------------------
5262 dnl CF_PKG_CONFIG version: 10 updated: 2015/04/26 18:06:58
5263 dnl -------------
5264 dnl Check for the package-config program, unless disabled by command-line.
5265 AC_DEFUN([CF_PKG_CONFIG],
5266 [
5267 AC_MSG_CHECKING(if you want to use pkg-config)
5268 AC_ARG_WITH(pkg-config,
5269         [  --with-pkg-config{=path} enable/disable use of pkg-config],
5270         [cf_pkg_config=$withval],
5271         [cf_pkg_config=yes])
5272 AC_MSG_RESULT($cf_pkg_config)
5273
5274 case $cf_pkg_config in
5275 (no)
5276         PKG_CONFIG=none
5277         ;;
5278 (yes)
5279         CF_ACVERSION_CHECK(2.52,
5280                 [AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)],
5281                 [AC_PATH_PROG(PKG_CONFIG, pkg-config, none)])
5282         ;;
5283 (*)
5284         PKG_CONFIG=$withval
5285         ;;
5286 esac
5287
5288 test -z "$PKG_CONFIG" && PKG_CONFIG=none
5289 if test "$PKG_CONFIG" != none ; then
5290         CF_PATH_SYNTAX(PKG_CONFIG)
5291 elif test "x$cf_pkg_config" != xno ; then
5292         AC_MSG_WARN(pkg-config is not installed)
5293 fi
5294
5295 AC_SUBST(PKG_CONFIG)
5296 ])dnl
5297 dnl ---------------------------------------------------------------------------
5298 dnl CF_POSIX_C_SOURCE version: 9 updated: 2015/04/12 15:39:00
5299 dnl -----------------
5300 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
5301 dnl
5302 dnl     POSIX.1-1990                            _POSIX_SOURCE
5303 dnl     POSIX.1-1990 and                        _POSIX_SOURCE and
5304 dnl             POSIX.2-1992 C-Language                 _POSIX_C_SOURCE=2
5305 dnl             Bindings Option
5306 dnl     POSIX.1b-1993                           _POSIX_C_SOURCE=199309L
5307 dnl     POSIX.1c-1996                           _POSIX_C_SOURCE=199506L
5308 dnl     X/Open 2000                             _POSIX_C_SOURCE=200112L
5309 dnl
5310 dnl Parameters:
5311 dnl     $1 is the nominal value for _POSIX_C_SOURCE
5312 AC_DEFUN([CF_POSIX_C_SOURCE],
5313 [
5314 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
5315
5316 cf_save_CFLAGS="$CFLAGS"
5317 cf_save_CPPFLAGS="$CPPFLAGS"
5318
5319 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
5320 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
5321
5322 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
5323         CF_MSG_LOG(if the symbol is already defined go no further)
5324         AC_TRY_COMPILE([#include <sys/types.h>],[
5325 #ifndef _POSIX_C_SOURCE
5326 make an error
5327 #endif],
5328         [cf_cv_posix_c_source=no],
5329         [cf_want_posix_source=no
5330          case .$cf_POSIX_C_SOURCE in
5331          (.[[12]]??*)
5332                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
5333                 ;;
5334          (.2)
5335                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
5336                 cf_want_posix_source=yes
5337                 ;;
5338          (.*)
5339                 cf_want_posix_source=yes
5340                 ;;
5341          esac
5342          if test "$cf_want_posix_source" = yes ; then
5343                 AC_TRY_COMPILE([#include <sys/types.h>],[
5344 #ifdef _POSIX_SOURCE
5345 make an error
5346 #endif],[],
5347                 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
5348          fi
5349          CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
5350          CFLAGS="$cf_trim_CFLAGS"
5351          CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
5352          CF_MSG_LOG(if the second compile does not leave our definition intact error)
5353          AC_TRY_COMPILE([#include <sys/types.h>],[
5354 #ifndef _POSIX_C_SOURCE
5355 make an error
5356 #endif],,
5357          [cf_cv_posix_c_source=no])
5358          CFLAGS="$cf_save_CFLAGS"
5359          CPPFLAGS="$cf_save_CPPFLAGS"
5360         ])
5361 ])
5362
5363 if test "$cf_cv_posix_c_source" != no ; then
5364         CFLAGS="$cf_trim_CFLAGS"
5365         CPPFLAGS="$cf_trim_CPPFLAGS"
5366         CF_ADD_CFLAGS($cf_cv_posix_c_source)
5367 fi
5368
5369 ])dnl
5370 dnl ---------------------------------------------------------------------------
5371 dnl CF_PREDEFINE version: 2 updated: 2010/05/26 16:44:57
5372 dnl ------------
5373 dnl Add definitions to CPPFLAGS to ensure they're predefined for all compiles.
5374 dnl
5375 dnl $1 = symbol to test
5376 dnl $2 = value (if any) to use for a predefinition
5377 AC_DEFUN([CF_PREDEFINE],
5378 [
5379 AC_MSG_CHECKING(if we must define $1)
5380 AC_TRY_COMPILE([#include <sys/types.h>
5381 ],[
5382 #ifndef $1
5383 make an error
5384 #endif],[cf_result=no],[cf_result=yes])
5385 AC_MSG_RESULT($cf_result)
5386
5387 if test "$cf_result" = yes ; then
5388         CPPFLAGS="$CPPFLAGS ifelse([$2],,-D$1,[-D$1=$2])"
5389 elif test "x$2" != "x" ; then
5390         AC_MSG_CHECKING(checking for compatible value versus $2)
5391         AC_TRY_COMPILE([#include <sys/types.h>
5392 ],[
5393 #if $1-$2 < 0
5394 make an error
5395 #endif],[cf_result=yes],[cf_result=no])
5396         AC_MSG_RESULT($cf_result)
5397         if test "$cf_result" = no ; then
5398                 # perhaps we can override it - try...
5399                 CPPFLAGS="$CPPFLAGS -D$1=$2"
5400         fi
5401 fi
5402 ])dnl
5403 dnl ---------------------------------------------------------------------------
5404 dnl CF_PRG_RULES version: 1 updated: 2006/06/03 11:45:08
5405 dnl ------------
5406 dnl Append definitions and rules for the given programs to the subdirectory
5407 dnl Makefiles, and the recursion rule for the top-level Makefile.
5408 dnl
5409 dnl parameters
5410 dnl     $1 = script to run
5411 dnl     $2 = list of subdirectories
5412 dnl
5413 dnl variables
5414 dnl     $AWK
5415 AC_DEFUN([CF_PRG_RULES],
5416 [
5417 for cf_dir in $2
5418 do
5419         if test ! -d $srcdir/$cf_dir; then
5420                 continue
5421         elif test -f $srcdir/$cf_dir/programs; then
5422                 $AWK -f $1 $srcdir/$cf_dir/programs >>$cf_dir/Makefile
5423         fi
5424 done
5425
5426 ])dnl
5427 dnl ---------------------------------------------------------------------------
5428 dnl CF_PROG_AR version: 1 updated: 2009/01/01 20:15:22
5429 dnl ----------
5430 dnl Check for archiver "ar".
5431 AC_DEFUN([CF_PROG_AR],[
5432 AC_CHECK_TOOL(AR, ar, ar)
5433 ])
5434 dnl ---------------------------------------------------------------------------
5435 dnl CF_PROG_AWK version: 1 updated: 2006/09/16 11:40:59
5436 dnl -----------
5437 dnl Check for awk, ensure that the check found something.
5438 AC_DEFUN([CF_PROG_AWK],
5439 [
5440 AC_PROG_AWK
5441 test -z "$AWK" && AC_MSG_ERROR(No awk program found)
5442 ])dnl
5443 dnl ---------------------------------------------------------------------------
5444 dnl CF_PROG_CC version: 4 updated: 2014/07/12 18:57:58
5445 dnl ----------
5446 dnl standard check for CC, plus followup sanity checks
5447 dnl $1 = optional parameter to pass to AC_PROG_CC to specify compiler name
5448 AC_DEFUN([CF_PROG_CC],[
5449 ifelse($1,,[AC_PROG_CC],[AC_PROG_CC($1)])
5450 CF_GCC_VERSION
5451 CF_ACVERSION_CHECK(2.52,
5452         [AC_PROG_CC_STDC],
5453         [CF_ANSI_CC_REQD])
5454 CF_CC_ENV_FLAGS
5455 ])dnl
5456 dnl ---------------------------------------------------------------------------
5457 dnl CF_PROG_CC_C_O version: 5 updated: 2017/01/21 11:06:25
5458 dnl --------------
5459 dnl Analogous to AC_PROG_CC_C_O, but more useful: tests only $CC, ensures that
5460 dnl the output file can be renamed, and allows for a shell variable that can
5461 dnl be used later.  The parameter is either CC or CXX.  The result is the
5462 dnl cache variable:
5463 dnl     $cf_cv_prog_CC_c_o
5464 dnl     $cf_cv_prog_CXX_c_o
5465 dnl
5466 dnl $1 = compiler
5467 dnl $2 = compiler options, if any
5468 AC_DEFUN([CF_PROG_CC_C_O],
5469 [AC_REQUIRE([AC_PROG_CC])dnl
5470 AC_MSG_CHECKING([whether [$]$1 understands -c and -o together])
5471 AC_CACHE_VAL(cf_cv_prog_$1_c_o,
5472 [
5473 cat > conftest.$ac_ext <<CF_EOF
5474 int main(void)
5475 {
5476         ${cf_cv_main_return:-return}(0);
5477 }
5478 CF_EOF
5479 # We do the test twice because some compilers refuse to overwrite an
5480 # existing .o file with -o, though they will create one.
5481 ac_try='[$]$1 $2 -c conftest.$ac_ext -o conftest2.$ac_objext >&AC_FD_CC'
5482 if AC_TRY_EVAL(ac_try) &&
5483   test -f conftest2.$ac_objext && AC_TRY_EVAL(ac_try);
5484 then
5485   eval cf_cv_prog_$1_c_o=yes
5486 else
5487   eval cf_cv_prog_$1_c_o=no
5488 fi
5489 rm -rf conftest*
5490 ])dnl
5491 if test $cf_cv_prog_$1_c_o = yes; then
5492   AC_MSG_RESULT([yes])
5493 else
5494   AC_MSG_RESULT([no])
5495 fi
5496 ])dnl
5497 dnl ---------------------------------------------------------------------------
5498 dnl CF_PROG_EGREP version: 2 updated: 2015/04/18 08:56:57
5499 dnl -------------
5500 dnl AC_PROG_EGREP was introduced in autoconf 2.53.
5501 dnl This macro adds a check to ensure the script found something.
5502 AC_DEFUN([CF_PROG_EGREP],
5503 [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep],
5504         [if echo a | (grep -E '(a|b)') >/dev/null 2>&1
5505                 then ac_cv_prog_egrep='grep -E'
5506                 else ac_cv_prog_egrep='egrep'
5507         fi])
5508         EGREP=$ac_cv_prog_egrep
5509         AC_SUBST([EGREP])
5510         test -z "$EGREP" && AC_MSG_ERROR(No egrep program found)
5511 ])dnl
5512 dnl ---------------------------------------------------------------------------
5513 dnl CF_PROG_GNAT version: 5 updated: 2018/01/15 15:28:49
5514 dnl ------------
5515 dnl Check for gnatmake, ensure that it is complete.
5516 AC_DEFUN([CF_PROG_GNAT],[
5517 cf_ada_make=gnatmake
5518 cf_ada_config="#"
5519 AC_CHECK_PROG(gnatmake_exists, $cf_ada_make, yes, no)
5520 if test "$ac_cv_prog_gnatmake_exists" = no; then
5521         cf_ada_make=
5522         cf_cv_prog_gnat_correct=no
5523 else
5524         AC_CHECK_PROG(gprconfig_exists, gprconfig, yes, no)
5525         if test "$ac_cv_prog_gprconfig_exists" = yes
5526         then
5527                 rm -rf conftest* *~conftest*
5528                 if mkdir conftest.src
5529                 then
5530                         cf_ada_config=""
5531                         cd conftest.src
5532                         for cf_gprconfig in Ada C
5533                         do
5534                                 AC_MSG_CHECKING(for gprconfig name for $cf_gprconfig)
5535                                 cf_gprconfig_value=`echo s| gprconfig --config=$cf_gprconfig 2>&AC_FD_CC | ${AWK:-awk} '/^\*/{print [$]3;}' | head -n 1`
5536                                 if test -n "$cf_gprconfig_value"
5537                                 then
5538                                         eval cf_ada_config_[$]cf_gprconfig=[$]cf_gprconfig_value
5539                                         AC_MSG_RESULT($cf_gprconfig_value)
5540                                 else
5541                                         AC_MSG_RESULT(missing)
5542                                         cf_ada_config="#"
5543                                         break
5544                                 fi
5545                         done
5546                         cd ..
5547                         rm -rf conftest* *~conftest*
5548                 fi
5549         else
5550                 # gprconfig is newer than gnatmake; we can continue...
5551                 cf_ada_config="##"
5552         fi
5553         if test "x$cf_ada_config" != "x#"
5554         then
5555                 CF_GNAT_VERSION
5556                 AC_CHECK_PROG(M4_exists, m4, yes, no)
5557                 if test "$ac_cv_prog_M4_exists" = no; then
5558                         cf_cv_prog_gnat_correct=no
5559                         echo Ada95 binding required program m4 not found. Ada95 binding disabled.
5560                 fi
5561                 if test "$cf_cv_prog_gnat_correct" = yes; then
5562                         AC_MSG_CHECKING(if GNAT works)
5563                         CF_GNAT_TRY_RUN([procedure conftest;],
5564 [with Text_IO;
5565 with GNAT.OS_Lib;
5566 procedure conftest is
5567 begin
5568    Text_IO.Put ("Hello World");
5569    Text_IO.New_Line;
5570    GNAT.OS_Lib.OS_Exit (0);
5571 end conftest;],[cf_cv_prog_gnat_correct=yes],[cf_cv_prog_gnat_correct=no])
5572                         AC_MSG_RESULT($cf_cv_prog_gnat_correct)
5573                 fi
5574         else
5575                 cf_cv_prog_gnat_correct=no
5576         fi
5577 fi
5578
5579 AC_SUBST(cf_ada_make)
5580 AC_SUBST(cf_ada_config)
5581 AC_SUBST(cf_ada_config_Ada)
5582 AC_SUBST(cf_ada_config_C)
5583 ])dnl
5584 dnl ---------------------------------------------------------------------------
5585 dnl CF_PROG_INSTALL version: 7 updated: 2015/04/18 08:56:57
5586 dnl ---------------
5587 dnl Force $INSTALL to be an absolute-path.  Otherwise, edit_man.sh and the
5588 dnl misc/tabset install won't work properly.  Usually this happens only when
5589 dnl using the fallback mkinstalldirs script
5590 AC_DEFUN([CF_PROG_INSTALL],
5591 [AC_PROG_INSTALL
5592 case $INSTALL in
5593 (/*)
5594         ;;
5595 (*)
5596         CF_DIRNAME(cf_dir,$INSTALL)
5597         test -z "$cf_dir" && cf_dir=.
5598         INSTALL=`cd $cf_dir && pwd`/`echo $INSTALL | sed -e 's%^.*/%%'`
5599         ;;
5600 esac
5601 ])dnl
5602 dnl ---------------------------------------------------------------------------
5603 dnl CF_PROG_LDCONFIG version: 5 updated: 2015/04/18 08:56:57
5604 dnl ----------------
5605 dnl Check for ldconfig, needed to fixup shared libraries that would be built
5606 dnl and then used in the install.
5607 AC_DEFUN([CF_PROG_LDCONFIG],[
5608 if test "$cross_compiling" = yes ; then
5609         LDCONFIG=:
5610 else
5611         case "$cf_cv_system_name" in
5612         (dragonfly*|mirbsd*|freebsd*)
5613                 test -z "$LDCONFIG" && LDCONFIG="/sbin/ldconfig -R"
5614                 ;;
5615         (*) LDPATH=$PATH:/sbin:/usr/sbin
5616                 AC_PATH_PROG(LDCONFIG,ldconfig,,$LDPATH)
5617                 ;;
5618         esac
5619 fi
5620 AC_SUBST(LDCONFIG)
5621 ])dnl
5622 dnl ---------------------------------------------------------------------------
5623 dnl CF_PROG_LINT version: 3 updated: 2016/05/22 15:25:54
5624 dnl ------------
5625 AC_DEFUN([CF_PROG_LINT],
5626 [
5627 AC_CHECK_PROGS(LINT, lint cppcheck splint)
5628 AC_SUBST(LINT_OPTS)
5629 ])dnl
5630 dnl ---------------------------------------------------------------------------
5631 dnl CF_PROG_LN_S version: 2 updated: 2010/08/14 18:25:37
5632 dnl ------------
5633 dnl Combine checks for "ln -s" and "ln -sf", updating $LN_S to include "-f"
5634 dnl option if it is supported.
5635 AC_DEFUN([CF_PROG_LN_S],[
5636 AC_PROG_LN_S
5637 AC_MSG_CHECKING(if $LN_S -f options work)
5638
5639 rm -f conf$$.src conf$$dst
5640 echo >conf$$.dst
5641 echo first >conf$$.src
5642 if $LN_S -f conf$$.src conf$$.dst 2>/dev/null; then
5643         cf_prog_ln_sf=yes
5644 else
5645         cf_prog_ln_sf=no
5646 fi
5647 rm -f conf$$.dst conf$$src
5648 AC_MSG_RESULT($cf_prog_ln_sf)
5649
5650 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
5651 ])dnl
5652 dnl ---------------------------------------------------------------------------
5653 dnl CF_REGEX version: 12 updated: 2015/04/18 08:56:57
5654 dnl --------
5655 dnl Attempt to determine if we've got one of the flavors of regular-expression
5656 dnl code that we can support.
5657 AC_DEFUN([CF_REGEX],
5658 [
5659
5660 cf_regex_func=no
5661
5662 cf_regex_libs="regex re"
5663 case $host_os in
5664 (mingw*)
5665         cf_regex_libs="gnurx $cf_regex_libs"
5666         ;;
5667 esac
5668
5669 AC_CHECK_FUNC(regcomp,[cf_regex_func=regcomp],[
5670         for cf_regex_lib in $cf_regex_libs
5671         do
5672                 AC_CHECK_LIB($cf_regex_lib,regcomp,[
5673                                 CF_ADD_LIB($cf_regex_lib)
5674                                 cf_regex_func=regcomp
5675                                 break])
5676         done
5677 ])
5678
5679 if test "$cf_regex_func" = no ; then
5680         AC_CHECK_FUNC(compile,[cf_regex_func=compile],[
5681                 AC_CHECK_LIB(gen,compile,[
5682                                 CF_ADD_LIB(gen)
5683                                 cf_regex_func=compile])])
5684 fi
5685
5686 if test "$cf_regex_func" = no ; then
5687         AC_MSG_WARN(cannot find regular expression library)
5688 fi
5689
5690 AC_CACHE_CHECK(for regular-expression headers,cf_cv_regex_hdrs,[
5691
5692 cf_cv_regex_hdrs=no
5693 case $cf_regex_func in
5694 (compile)
5695         for cf_regex_hdr in regexp.h regexpr.h
5696         do
5697                 AC_TRY_LINK([#include <$cf_regex_hdr>],[
5698                         char *p = compile("", "", "", 0);
5699                         int x = step("", "");
5700                 ],[
5701                         cf_cv_regex_hdrs=$cf_regex_hdr
5702                         break
5703                 ])
5704         done
5705         ;;
5706 (*)
5707         for cf_regex_hdr in regex.h
5708         do
5709                 AC_TRY_LINK([#include <sys/types.h>
5710 #include <$cf_regex_hdr>],[
5711                         regex_t *p;
5712                         int x = regcomp(p, "", 0);
5713                         int y = regexec(p, "", 0, 0, 0);
5714                         regfree(p);
5715                 ],[
5716                         cf_cv_regex_hdrs=$cf_regex_hdr
5717                         break
5718                 ])
5719         done
5720         ;;
5721 esac
5722
5723 ])
5724
5725 case $cf_cv_regex_hdrs in
5726         (no)            AC_MSG_WARN(no regular expression header found) ;;
5727         (regex.h)       AC_DEFINE(HAVE_REGEX_H_FUNCS,1,[Define to 1 to include regex.h for regular expressions]) ;;
5728         (regexp.h)      AC_DEFINE(HAVE_REGEXP_H_FUNCS,1,[Define to 1 to include regexp.h for regular expressions]) ;;
5729         (regexpr.h) AC_DEFINE(HAVE_REGEXPR_H_FUNCS,1,[Define to 1 to include regexpr.h for regular expressions]) ;;
5730 esac
5731 ])dnl
5732 dnl ---------------------------------------------------------------------------
5733 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
5734 dnl ----------------
5735 dnl Remove all -U and -D options that refer to the given symbol from a list
5736 dnl of C compiler options.  This works around the problem that not all
5737 dnl compilers process -U and -D options from left-to-right, so a -U option
5738 dnl cannot be used to cancel the effect of a preceding -D option.
5739 dnl
5740 dnl $1 = target (which could be the same as the source variable)
5741 dnl $2 = source (including '$')
5742 dnl $3 = symbol to remove
5743 define([CF_REMOVE_DEFINE],
5744 [
5745 $1=`echo "$2" | \
5746         sed     -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[[       ]]/ /g' \
5747                 -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[$]//g'`
5748 ])dnl
5749 dnl ---------------------------------------------------------------------------
5750 dnl CF_REMOVE_LIB version: 1 updated: 2007/02/17 14:11:52
5751 dnl -------------
5752 dnl Remove the given library from the symbol
5753 dnl
5754 dnl $1 = target (which could be the same as the source variable)
5755 dnl $2 = source (including '$')
5756 dnl $3 = library to remove
5757 define([CF_REMOVE_LIB],
5758 [
5759 # remove $3 library from $2
5760 $1=`echo "$2" | sed -e 's/-l$3[[        ]]//g' -e 's/-l$3[$]//'`
5761 ])dnl
5762 dnl ---------------------------------------------------------------------------
5763 dnl CF_RPATH_HACK version: 11 updated: 2013/09/01 13:02:00
5764 dnl -------------
5765 AC_DEFUN([CF_RPATH_HACK],
5766 [
5767 AC_REQUIRE([CF_LD_RPATH_OPT])
5768 AC_MSG_CHECKING(for updated LDFLAGS)
5769 if test -n "$LD_RPATH_OPT" ; then
5770         AC_MSG_RESULT(maybe)
5771
5772         AC_CHECK_PROGS(cf_ldd_prog,ldd,no)
5773         cf_rpath_list="/usr/lib /lib"
5774         if test "$cf_ldd_prog" != no
5775         then
5776                 cf_rpath_oops=
5777
5778 AC_TRY_LINK([#include <stdio.h>],
5779                 [printf("Hello");],
5780                 [cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
5781                  cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[[     ]]/%/%' -e 's%/[[^/]][[^/]]*$%%' |sort | uniq`])
5782
5783                 # If we passed the link-test, but get a "not found" on a given library,
5784                 # this could be due to inept reconfiguration of gcc to make it only
5785                 # partly honor /usr/local/lib (or whatever).  Sometimes this behavior
5786                 # is intentional, e.g., installing gcc in /usr/bin and suppressing the
5787                 # /usr/local libraries.
5788                 if test -n "$cf_rpath_oops"
5789                 then
5790                         for cf_rpath_src in $cf_rpath_oops
5791                         do
5792                                 for cf_rpath_dir in \
5793                                         /usr/local \
5794                                         /usr/pkg \
5795                                         /opt/sfw
5796                                 do
5797                                         if test -f $cf_rpath_dir/lib/$cf_rpath_src
5798                                         then
5799                                                 CF_VERBOSE(...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src)
5800                                                 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
5801                                                 break
5802                                         fi
5803                                 done
5804                         done
5805                 fi
5806         fi
5807
5808         CF_VERBOSE(...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS)
5809
5810         CF_RPATH_HACK_2(LDFLAGS)
5811         CF_RPATH_HACK_2(LIBS)
5812
5813         CF_VERBOSE(...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS)
5814 else
5815         AC_MSG_RESULT(no)
5816 fi
5817 AC_SUBST(EXTRA_LDFLAGS)
5818 ])dnl
5819 dnl ---------------------------------------------------------------------------
5820 dnl CF_RPATH_HACK_2 version: 7 updated: 2015/04/12 15:39:00
5821 dnl ---------------
5822 dnl Do one set of substitutions for CF_RPATH_HACK, adding an rpath option to
5823 dnl EXTRA_LDFLAGS for each -L option found.
5824 dnl
5825 dnl $cf_rpath_list contains a list of directories to ignore.
5826 dnl
5827 dnl $1 = variable name to update.  The LDFLAGS variable should be the only one,
5828 dnl      but LIBS often has misplaced -L options.
5829 AC_DEFUN([CF_RPATH_HACK_2],
5830 [
5831 CF_VERBOSE(...checking $1 [$]$1)
5832
5833 cf_rpath_dst=
5834 for cf_rpath_src in [$]$1
5835 do
5836         case $cf_rpath_src in
5837         (-L*)
5838
5839                 # check if this refers to a directory which we will ignore
5840                 cf_rpath_skip=no
5841                 if test -n "$cf_rpath_list"
5842                 then
5843                         for cf_rpath_item in $cf_rpath_list
5844                         do
5845                                 if test "x$cf_rpath_src" = "x-L$cf_rpath_item"
5846                                 then
5847                                         cf_rpath_skip=yes
5848                                         break
5849                                 fi
5850                         done
5851                 fi
5852
5853                 if test "$cf_rpath_skip" = no
5854                 then
5855                         # transform the option
5856                         if test "$LD_RPATH_OPT" = "-R " ; then
5857                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%-R %"`
5858                         else
5859                                 cf_rpath_tmp=`echo "$cf_rpath_src" |sed -e "s%-L%$LD_RPATH_OPT%"`
5860                         fi
5861
5862                         # if we have not already added this, add it now
5863                         cf_rpath_tst=`echo "$EXTRA_LDFLAGS" | sed -e "s%$cf_rpath_tmp %%"`
5864                         if test "x$cf_rpath_tst" = "x$EXTRA_LDFLAGS"
5865                         then
5866                                 CF_VERBOSE(...Filter $cf_rpath_src ->$cf_rpath_tmp)
5867                                 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
5868                         fi
5869                 fi
5870                 ;;
5871         esac
5872         cf_rpath_dst="$cf_rpath_dst $cf_rpath_src"
5873 done
5874 $1=$cf_rpath_dst
5875
5876 CF_VERBOSE(...checked $1 [$]$1)
5877 AC_SUBST(EXTRA_LDFLAGS)
5878 ])dnl
5879 dnl ---------------------------------------------------------------------------
5880 dnl CF_SHARED_OPTS version: 92 updated: 2017/12/30 17:26:05
5881 dnl --------------
5882 dnl --------------
5883 dnl Attempt to determine the appropriate CC/LD options for creating a shared
5884 dnl library.
5885 dnl
5886 dnl Notes:
5887 dnl a) ${LOCAL_LDFLAGS} is used to link executables that will run within
5888 dnl the build-tree, i.e., by making use of the libraries that are compiled in
5889 dnl $rel_builddir/lib We avoid compiling-in a $rel_builddir/lib path for the
5890 dnl shared library since that can lead to unexpected results at runtime.
5891 dnl b) ${LOCAL_LDFLAGS2} has the same intention but assumes that the shared
5892 dnl libraries are compiled in ../../lib
5893 dnl
5894 dnl The variable 'cf_cv_do_symlinks' is used to control whether we configure
5895 dnl to install symbolic links to the rel/abi versions of shared libraries.
5896 dnl
5897 dnl The variable 'cf_cv_shlib_version' controls whether we use the rel or abi
5898 dnl version when making symbolic links.
5899 dnl
5900 dnl The variable 'cf_cv_shlib_version_infix' controls whether shared library
5901 dnl version numbers are infix (ex: libncurses.<ver>.dylib) or postfix
5902 dnl (ex: libncurses.so.<ver>).
5903 dnl
5904 dnl Some loaders leave 'so_locations' lying around.  It's nice to clean up.
5905 AC_DEFUN([CF_SHARED_OPTS],
5906 [
5907         AC_REQUIRE([CF_LD_RPATH_OPT])
5908         RM_SHARED_OPTS=
5909         LOCAL_LDFLAGS=
5910         LOCAL_LDFLAGS2=
5911         LD_SHARED_OPTS=
5912         INSTALL_LIB="-m 644"
5913         : ${rel_builddir:=.}
5914
5915         shlibdir=$libdir
5916         AC_SUBST(shlibdir)
5917
5918         MAKE_DLLS="#"
5919         AC_SUBST(MAKE_DLLS)
5920
5921         cf_cv_do_symlinks=no
5922         cf_ld_rpath_opt=
5923         test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
5924
5925         AC_MSG_CHECKING(if release/abi version should be used for shared libs)
5926         AC_ARG_WITH(shlib-version,
5927         [  --with-shlib-version=X  Specify rel or abi version for shared libs],
5928         [test -z "$withval" && withval=auto
5929         case $withval in
5930         (yes)
5931                 cf_cv_shlib_version=auto
5932                 ;;
5933         (rel|abi|auto)
5934                 cf_cv_shlib_version=$withval
5935                 ;;
5936         (*)
5937                 AC_MSG_RESULT($withval)
5938                 AC_MSG_ERROR([option value must be one of: rel, abi, or auto])
5939                 ;;
5940         esac
5941         ],[cf_cv_shlib_version=auto])
5942         AC_MSG_RESULT($cf_cv_shlib_version)
5943
5944         cf_cv_rm_so_locs=no
5945         cf_try_cflags=
5946
5947         # Some less-capable ports of gcc support only -fpic
5948         CC_SHARED_OPTS=
5949
5950         cf_try_fPIC=no
5951         if test "$GCC" = yes
5952         then
5953                 cf_try_fPIC=yes
5954         else
5955                 case $cf_cv_system_name in
5956                 (*linux*)       # e.g., PGI compiler
5957                         cf_try_fPIC=yes
5958                         ;;
5959                 esac
5960         fi
5961
5962         if test "$cf_try_fPIC" = yes
5963         then
5964                 AC_MSG_CHECKING(which $CC option to use)
5965                 cf_save_CFLAGS="$CFLAGS"
5966                 for CC_SHARED_OPTS in -fPIC -fpic ''
5967                 do
5968                         CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
5969                         AC_TRY_COMPILE([#include <stdio.h>],[int x = 1],[break],[])
5970                 done
5971                 AC_MSG_RESULT($CC_SHARED_OPTS)
5972                 CFLAGS="$cf_save_CFLAGS"
5973         fi
5974
5975         cf_cv_shlib_version_infix=no
5976
5977         case $cf_cv_system_name in
5978         (aix4.[3-9]*|aix[[5-7]]*)
5979                 if test "$GCC" = yes; then
5980                         CC_SHARED_OPTS='-Wl,-brtl'
5981                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
5982                 else
5983                         CC_SHARED_OPTS='-brtl'
5984                         # as well as '-qpic=large -G' or perhaps "-bM:SRE -bnoentry -bexpall"
5985                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -G -Wl,-brtl -Wl,-blibpath:${RPATH_LIST}:/usr/lib -o [$]@'
5986                 fi
5987                 ;;
5988         (beos*)
5989                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -o $[@] -Xlinker -soname=`basename $[@]` -nostart -e 0'
5990                 ;;
5991         (cygwin*)
5992                 CC_SHARED_OPTS=
5993                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
5994                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
5995                 cf_cv_shlib_version=cygdll
5996                 cf_cv_shlib_version_infix=cygdll
5997                 shlibdir=$bindir
5998                 MAKE_DLLS=
5999                 cat >mk_shared_lib.sh <<-CF_EOF
6000                 #!$SHELL
6001                 SHARED_LIB=\[$]1
6002                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/cyg/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
6003                 shift
6004                 cat <<-EOF
6005                 Linking shared library
6006                 ** SHARED_LIB \[$]SHARED_LIB
6007                 ** IMPORT_LIB \[$]IMPORT_LIB
6008 EOF
6009                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
6010 CF_EOF
6011                 chmod +x mk_shared_lib.sh
6012                 ;;
6013         (msys*)
6014                 CC_SHARED_OPTS=
6015                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
6016                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
6017                 cf_cv_shlib_version=msysdll
6018                 cf_cv_shlib_version_infix=msysdll
6019                 shlibdir=$bindir
6020                 MAKE_DLLS=
6021                 cat >mk_shared_lib.sh <<-CF_EOF
6022                 #!$SHELL
6023                 SHARED_LIB=\[$]1
6024                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/msys-/lib/' -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
6025                 shift
6026                 cat <<-EOF
6027                 Linking shared library
6028                 ** SHARED_LIB \[$]SHARED_LIB
6029                 ** IMPORT_LIB \[$]IMPORT_LIB
6030 EOF
6031                 exec \[$]* ${LDFLAGS} -shared -Wl,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
6032 CF_EOF
6033                 chmod +x mk_shared_lib.sh
6034                 ;;
6035         (darwin*)
6036                 cf_try_cflags="no-cpp-precomp"
6037                 CC_SHARED_OPTS="-dynamic"
6038                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $[@]` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $[@]'
6039                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
6040                 cf_cv_shlib_version_infix=yes
6041                 AC_CACHE_CHECK([if ld -search_paths_first works], cf_cv_ldflags_search_paths_first, [
6042                         cf_save_LDFLAGS=$LDFLAGS
6043                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
6044                         AC_TRY_LINK(, [int i;], cf_cv_ldflags_search_paths_first=yes, cf_cv_ldflags_search_paths_first=no)
6045                                 LDFLAGS=$cf_save_LDFLAGS])
6046                 if test $cf_cv_ldflags_search_paths_first = yes; then
6047                         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
6048                 fi
6049                 ;;
6050         (hpux[[7-8]]*)
6051                 # HP-UX 8.07 ld lacks "+b" option used for libdir search-list
6052                 if test "$GCC" != yes; then
6053                         CC_SHARED_OPTS='+Z'
6054                 fi
6055                 MK_SHARED_LIB='${LD} ${LDFLAGS} -b -o $[@]'
6056                 INSTALL_LIB="-m 555"
6057                 ;;
6058         (hpux*)
6059                 # (tested with gcc 2.7.2 -- I don't have c89)
6060                 if test "$GCC" = yes; then
6061                         LD_SHARED_OPTS='-Xlinker +b -Xlinker ${libdir}'
6062                 else
6063                         CC_SHARED_OPTS='+Z'
6064                         LD_SHARED_OPTS='-Wl,+b,${libdir}'
6065                 fi
6066                 MK_SHARED_LIB='${LD} ${LDFLAGS} +b ${libdir} -b -o $[@]'
6067                 # HP-UX shared libraries must be executable, and should be
6068                 # readonly to exploit a quirk in the memory manager.
6069                 INSTALL_LIB="-m 555"
6070                 ;;
6071         (interix*)
6072                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
6073                 if test "$cf_cv_shlib_version" = rel; then
6074                         cf_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
6075                 else
6076                         cf_shared_soname='`basename $[@]`'
6077                 fi
6078                 CC_SHARED_OPTS=
6079                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-rpath,${RPATH_LIST} -Wl,-h,'$cf_shared_soname' -o $[@]'
6080                 ;;
6081         (irix*)
6082                 if test "$cf_cv_enable_rpath" = yes ; then
6083                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
6084                 fi
6085                 # tested with IRIX 5.2 and 'cc'.
6086                 if test "$GCC" != yes; then
6087                         CC_SHARED_OPTS='-KPIC'
6088                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -rdata_shared -soname `basename $[@]` -o $[@]'
6089                 else
6090                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,`basename $[@]` -o $[@]'
6091                 fi
6092                 cf_cv_rm_so_locs=yes
6093                 ;;
6094         (linux*|gnu*|k*bsd*-gnu)
6095                 if test "$DFT_LWR_MODEL" = "shared" ; then
6096                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
6097                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6098                 fi
6099                 if test "$cf_cv_enable_rpath" = yes ; then
6100                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
6101                 fi
6102                 CF_SHARED_SONAME
6103                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
6104                 ;;
6105         (mingw*)
6106                 cf_cv_shlib_version=mingw
6107                 cf_cv_shlib_version_infix=mingw
6108                 shlibdir=$bindir
6109                 MAKE_DLLS=
6110                 if test "$DFT_LWR_MODEL" = "shared" ; then
6111                         LOCAL_LDFLAGS="-Wl,--enable-auto-import"
6112                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6113                         EXTRA_LDFLAGS="-Wl,--enable-auto-import $EXTRA_LDFLAGS"
6114                 fi
6115                 CC_SHARED_OPTS=
6116                 MK_SHARED_LIB=$SHELL' '$rel_builddir'/mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
6117                 RM_SHARED_OPTS="$RM_SHARED_OPTS $rel_builddir/mk_shared_lib.sh *.dll.a"
6118                 cat >mk_shared_lib.sh <<-CF_EOF
6119                 #!$SHELL
6120                 SHARED_LIB=\[$]1
6121                 IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
6122                 shift
6123                 cat <<-EOF
6124                 Linking shared library
6125                 ** SHARED_LIB \[$]SHARED_LIB
6126                 ** IMPORT_LIB \[$]IMPORT_LIB
6127 EOF
6128                 exec \[$]* ${LDFLAGS} -shared -Wl,--enable-auto-import,--out-implib=\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o \[$]{SHARED_LIB}
6129 CF_EOF
6130                 chmod +x mk_shared_lib.sh
6131                 ;;
6132         (openbsd[[2-9]].*|mirbsd*)
6133                 if test "$DFT_LWR_MODEL" = "shared" ; then
6134                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
6135                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6136                 fi
6137                 if test "$cf_cv_enable_rpath" = yes ; then
6138                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
6139                 fi
6140                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
6141                 CF_SHARED_SONAME
6142                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
6143                 ;;
6144         (nto-qnx*|openbsd*|freebsd[[12]].*)
6145                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
6146                 MK_SHARED_LIB='${LD} ${LDFLAGS} -Bshareable -o $[@]'
6147                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
6148                 ;;
6149         (dragonfly*|freebsd*)
6150                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
6151                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
6152                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
6153                         LOCAL_LDFLAGS2="${cf_ld_rpath_opt}\${RPATH_LIST} $LOCAL_LDFLAGS"
6154                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
6155                 fi
6156                 CF_SHARED_SONAME
6157                 MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]'
6158                 ;;
6159         (netbsd*)
6160                 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
6161                 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
6162                         LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
6163                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6164                         EXTRA_LDFLAGS="${cf_ld_rpath_opt}\${RPATH_LIST} $EXTRA_LDFLAGS"
6165                         if test "$cf_cv_shlib_version" = auto; then
6166                         if test -f /usr/libexec/ld.elf_so; then
6167                                 cf_cv_shlib_version=abi
6168                         else
6169                                 cf_cv_shlib_version=rel
6170                         fi
6171                         fi
6172                         CF_SHARED_SONAME
6173                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $[@]'
6174                 else
6175                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -Wl,-shared -Wl,-Bshareable -o $[@]'
6176                 fi
6177                 ;;
6178         (osf*|mls+*)
6179                 # tested with OSF/1 V3.2 and 'cc'
6180                 # tested with OSF/1 V3.2 and gcc 2.6.3 (but the c++ demo didn't
6181                 # link with shared libs).
6182                 MK_SHARED_LIB='${LD} ${LDFLAGS} -set_version ${REL_VERSION}:${ABI_VERSION} -expect_unresolved "*" -shared -soname `basename $[@]`'
6183                 case $host_os in
6184                 (osf4*)
6185                         MK_SHARED_LIB="${MK_SHARED_LIB} -msym"
6186                         ;;
6187                 esac
6188                 MK_SHARED_LIB="${MK_SHARED_LIB}"' -o $[@]'
6189                 if test "$DFT_LWR_MODEL" = "shared" ; then
6190                         LOCAL_LDFLAGS="${LD_RPATH_OPT}\$(LOCAL_LIBDIR)"
6191                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6192                 fi
6193                 cf_cv_rm_so_locs=yes
6194                 ;;
6195         (sco3.2v5*)  # also uw2* and UW7: hops 13-Apr-98
6196                 # tested with osr5.0.5
6197                 if test "$GCC" != yes; then
6198                         CC_SHARED_OPTS='-belf -KPIC'
6199                 fi
6200                 MK_SHARED_LIB='${LD} ${LDFLAGS} -dy -G -h `basename $[@] .${REL_VERSION}`.${ABI_VERSION} -o [$]@'
6201                 if test "$cf_cv_enable_rpath" = yes ; then
6202                         # only way is to set LD_RUN_PATH but no switch for it
6203                         RUN_PATH=$libdir
6204                 fi
6205                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
6206                 LINK_PROGS='LD_RUN_PATH=${libdir}'
6207                 LINK_TESTS='Pwd=`pwd`;LD_RUN_PATH=`dirname $${Pwd}`/lib'
6208                 ;;
6209         (sunos4*)
6210                 # tested with SunOS 4.1.1 and gcc 2.7.0
6211                 if test "$GCC" != yes; then
6212                         CC_SHARED_OPTS='-KPIC'
6213                 fi
6214                 MK_SHARED_LIB='${LD} ${LDFLAGS} -assert pure-text -o $[@]'
6215                 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
6216                 ;;
6217         (solaris2*)
6218                 # tested with SunOS 5.5.1 (solaris 2.5.1) and gcc 2.7.2
6219                 # tested with SunOS 5.10 (solaris 10) and gcc 3.4.3
6220                 if test "$DFT_LWR_MODEL" = "shared" ; then
6221                         LOCAL_LDFLAGS="-R \$(LOCAL_LIBDIR):\${libdir}"
6222                         LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
6223                 fi
6224                 if test "$cf_cv_enable_rpath" = yes ; then
6225                         EXTRA_LDFLAGS="-R \${libdir} $EXTRA_LDFLAGS"
6226                 fi
6227                 CF_SHARED_SONAME
6228                 if test "$GCC" != yes; then
6229                         cf_save_CFLAGS="$CFLAGS"
6230                         for cf_shared_opts in -xcode=pic32 -xcode=pic13 -KPIC -Kpic -O
6231                         do
6232                                 CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
6233                                 AC_TRY_COMPILE([#include <stdio.h>],[printf("Hello\n");],[break])
6234                         done
6235                         CFLAGS="$cf_save_CFLAGS"
6236                         CC_SHARED_OPTS=$cf_shared_opts
6237                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dy -G -h '$cf_cv_shared_soname' -o $[@]'
6238                 else
6239                         MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -shared -dy -G -h '$cf_cv_shared_soname' -o $[@]'
6240                 fi
6241                 ;;
6242         (sysv5uw7*|unix_sv*)
6243                 # tested with UnixWare 7.1.0 (gcc 2.95.2 and cc)
6244                 if test "$GCC" != yes; then
6245                         CC_SHARED_OPTS='-KPIC'
6246                 fi
6247                 MK_SHARED_LIB='${LD} ${LDFLAGS} -d y -G -o [$]@'
6248                 ;;
6249         (*)
6250                 CC_SHARED_OPTS='unknown'
6251                 MK_SHARED_LIB='echo unknown'
6252                 ;;
6253         esac
6254
6255         # This works if the last tokens in $MK_SHARED_LIB are the -o target.
6256         case "$cf_cv_shlib_version" in
6257         (rel|abi)
6258                 case "$MK_SHARED_LIB" in
6259                 (*'-o $[@]')
6260                         test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
6261                         ;;
6262                 (*)
6263                         AC_MSG_WARN(ignored --with-shlib-version)
6264                         ;;
6265                 esac
6266                 ;;
6267         esac
6268
6269         if test -n "$cf_try_cflags"
6270         then
6271 cat > conftest.$ac_ext <<EOF
6272 #line __oline__ "${as_me:-configure}"
6273 #include <stdio.h>
6274 int main(int argc, char *argv[[]])
6275 {
6276         printf("hello\n");
6277         return (argv[[argc-1]] == 0) ;
6278 }
6279 EOF
6280                 cf_save_CFLAGS="$CFLAGS"
6281                 for cf_opt in $cf_try_cflags
6282                 do
6283                         CFLAGS="$cf_save_CFLAGS -$cf_opt"
6284                         AC_MSG_CHECKING(if CFLAGS option -$cf_opt works)
6285                         if AC_TRY_EVAL(ac_compile); then
6286                                 AC_MSG_RESULT(yes)
6287                                 cf_save_CFLAGS="$CFLAGS"
6288                         else
6289                                 AC_MSG_RESULT(no)
6290                         fi
6291                 done
6292                 CFLAGS="$cf_save_CFLAGS"
6293         fi
6294
6295
6296         # RPATH_LIST is a colon-separated list of directories
6297         test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
6298         test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
6299
6300         test $cf_cv_rm_so_locs = yes && RM_SHARED_OPTS="$RM_SHARED_OPTS so_locations"
6301
6302         CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
6303         CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
6304
6305         AC_SUBST(CC_SHARED_OPTS)
6306         AC_SUBST(LD_RPATH_OPT)
6307         AC_SUBST(LD_SHARED_OPTS)
6308         AC_SUBST(MK_SHARED_LIB)
6309         AC_SUBST(RM_SHARED_OPTS)
6310
6311         AC_SUBST(LINK_PROGS)
6312         AC_SUBST(LINK_TESTS)
6313
6314         AC_SUBST(EXTRA_LDFLAGS)
6315         AC_SUBST(LOCAL_LDFLAGS)
6316         AC_SUBST(LOCAL_LDFLAGS2)
6317
6318         AC_SUBST(INSTALL_LIB)
6319         AC_SUBST(RPATH_LIST)
6320 ])dnl
6321 dnl ---------------------------------------------------------------------------
6322 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
6323 dnl ----------------
6324 dnl utility macro for CF_SHARED_OPTS, constructs "$cf_cv_shared_soname" for
6325 dnl substitution into MK_SHARED_LIB string for the "-soname" (or similar)
6326 dnl option.
6327 dnl
6328 dnl $1 is the default that should be used for "$cf_cv_shlib_version".
6329 dnl If missing, use "rel".
6330 define([CF_SHARED_SONAME],
6331 [
6332         test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=ifelse($1,,rel,$1)
6333         if test "$cf_cv_shlib_version" = rel; then
6334                 cf_cv_shared_soname='`basename $[@] .${REL_VERSION}`.${ABI_VERSION}'
6335         else
6336                 cf_cv_shared_soname='`basename $[@]`'
6337         fi
6338 ])
6339 dnl ---------------------------------------------------------------------------
6340 dnl CF_SIGWINCH version: 1 updated: 2006/04/02 16:41:09
6341 dnl -----------
6342 dnl Use this macro after CF_XOPEN_SOURCE, but do not require it (not all
6343 dnl programs need this test).
6344 dnl
6345 dnl This is really a MacOS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
6346 dnl forces SIGWINCH to be undefined (breaks xterm, ncurses).  Oddly, the struct
6347 dnl winsize declaration is left alone - we may revisit this if Apple choose to
6348 dnl break that part of the interface as well.
6349 AC_DEFUN([CF_SIGWINCH],
6350 [
6351 AC_CACHE_CHECK(if SIGWINCH is defined,cf_cv_define_sigwinch,[
6352         AC_TRY_COMPILE([
6353 #include <sys/types.h>
6354 #include <sys/signal.h>
6355 ],[int x = SIGWINCH],
6356         [cf_cv_define_sigwinch=yes],
6357         [AC_TRY_COMPILE([
6358 #undef _XOPEN_SOURCE
6359 #undef _POSIX_SOURCE
6360 #undef _POSIX_C_SOURCE
6361 #include <sys/types.h>
6362 #include <sys/signal.h>
6363 ],[int x = SIGWINCH],
6364         [cf_cv_define_sigwinch=maybe],
6365         [cf_cv_define_sigwinch=no])
6366 ])
6367 ])
6368
6369 if test "$cf_cv_define_sigwinch" = maybe ; then
6370 AC_CACHE_CHECK(for actual SIGWINCH definition,cf_cv_fixup_sigwinch,[
6371 cf_cv_fixup_sigwinch=unknown
6372 cf_sigwinch=32
6373 while test $cf_sigwinch != 1
6374 do
6375         AC_TRY_COMPILE([
6376 #undef _XOPEN_SOURCE
6377 #undef _POSIX_SOURCE
6378 #undef _POSIX_C_SOURCE
6379 #include <sys/types.h>
6380 #include <sys/signal.h>
6381 ],[
6382 #if SIGWINCH != $cf_sigwinch
6383 make an error
6384 #endif
6385 int x = SIGWINCH],
6386         [cf_cv_fixup_sigwinch=$cf_sigwinch
6387          break])
6388
6389 cf_sigwinch=`expr $cf_sigwinch - 1`
6390 done
6391 ])
6392
6393         if test "$cf_cv_fixup_sigwinch" != unknown ; then
6394                 CPPFLAGS="$CPPFLAGS -DSIGWINCH=$cf_cv_fixup_sigwinch"
6395         fi
6396 fi
6397 ])dnl
6398 dnl ---------------------------------------------------------------------------
6399 dnl CF_SIG_ATOMIC_T version: 3 updated: 2012/10/04 20:12:20
6400 dnl ---------------
6401 dnl signal handler, but there are some gcc depedencies in that recommendation.
6402 dnl Try anyway.
6403 AC_DEFUN([CF_SIG_ATOMIC_T],
6404 [
6405 AC_MSG_CHECKING(for signal global datatype)
6406 AC_CACHE_VAL(cf_cv_sig_atomic_t,[
6407         for cf_type in \
6408                 "volatile sig_atomic_t" \
6409                 "sig_atomic_t" \
6410                 "int"
6411         do
6412         AC_TRY_COMPILE([
6413 #include <sys/types.h>
6414 #include <signal.h>
6415 #include <stdio.h>
6416
6417 extern $cf_type x;
6418 $cf_type x;
6419 static void handler(int sig)
6420 {
6421         x = 5;
6422 }],
6423                 [signal(SIGINT, handler);
6424                  x = 1],
6425                 [cf_cv_sig_atomic_t=$cf_type],
6426                 [cf_cv_sig_atomic_t=no])
6427                 test "$cf_cv_sig_atomic_t" != no && break
6428         done
6429         ])
6430 AC_MSG_RESULT($cf_cv_sig_atomic_t)
6431 test "$cf_cv_sig_atomic_t" != no && AC_DEFINE_UNQUOTED(SIG_ATOMIC_T, $cf_cv_sig_atomic_t,[Define to signal global datatype])
6432 ])dnl
6433 dnl ---------------------------------------------------------------------------
6434 dnl CF_SIZECHANGE version: 11 updated: 2015/04/18 08:56:57
6435 dnl -------------
6436 dnl Check for definitions & structures needed for window size-changing
6437 dnl FIXME: check that this works with "snake" (HP-UX 10.x)
6438 AC_DEFUN([CF_SIZECHANGE],
6439 [
6440 AC_REQUIRE([CF_STRUCT_TERMIOS])
6441 AC_CACHE_CHECK(declaration of size-change, cf_cv_sizechange,[
6442         cf_cv_sizechange=unknown
6443         cf_save_CPPFLAGS="$CPPFLAGS"
6444
6445 for cf_opts in "" "NEED_PTEM_H"
6446 do
6447
6448         CPPFLAGS="$cf_save_CPPFLAGS"
6449         test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts"
6450         AC_TRY_COMPILE([#include <sys/types.h>
6451 #ifdef HAVE_TERMIOS_H
6452 #include <termios.h>
6453 #else
6454 #ifdef HAVE_TERMIO_H
6455 #include <termio.h>
6456 #endif
6457 #endif
6458 #ifdef NEED_PTEM_H
6459 /* This is a workaround for SCO:  they neglected to define struct winsize in
6460  * termios.h -- it's only in termio.h and ptem.h
6461  */
6462 #include        <sys/stream.h>
6463 #include        <sys/ptem.h>
6464 #endif
6465 #if !defined(sun) || !defined(HAVE_TERMIOS_H)
6466 #include <sys/ioctl.h>
6467 #endif
6468 ],[
6469 #ifdef TIOCGSIZE
6470         struct ttysize win;     /* FIXME: what system is this? */
6471         int y = win.ts_lines;
6472         int x = win.ts_cols;
6473 #else
6474 #ifdef TIOCGWINSZ
6475         struct winsize win;
6476         int y = win.ws_row;
6477         int x = win.ws_col;
6478 #else
6479         no TIOCGSIZE or TIOCGWINSZ
6480 #endif /* TIOCGWINSZ */
6481 #endif /* TIOCGSIZE */
6482         ],
6483         [cf_cv_sizechange=yes],
6484         [cf_cv_sizechange=no])
6485
6486         CPPFLAGS="$cf_save_CPPFLAGS"
6487         if test "$cf_cv_sizechange" = yes ; then
6488                 echo "size-change succeeded ($cf_opts)" >&AC_FD_CC
6489                 test -n "$cf_opts" && cf_cv_sizechange="$cf_opts"
6490                 break
6491         fi
6492 done
6493 ])
6494 if test "$cf_cv_sizechange" != no ; then
6495         AC_DEFINE(HAVE_SIZECHANGE,1,[Define to 1 if sizechar declarations are provided])
6496         case $cf_cv_sizechange in
6497         (NEED*)
6498                 AC_DEFINE_UNQUOTED($cf_cv_sizechange )
6499                 ;;
6500         esac
6501 fi
6502 ])dnl
6503 dnl ---------------------------------------------------------------------------
6504 dnl CF_SRC_MODULES version: 30 updated: 2017/07/26 17:08:35
6505 dnl --------------
6506 dnl For each parameter, test if the source-directory exists, and if it contains
6507 dnl a 'modules' file.  If so, add to the list $cf_cv_src_modules which we'll
6508 dnl use in CF_LIB_RULES.
6509 dnl
6510 dnl This uses the configured value to make the lists SRC_SUBDIRS and
6511 dnl SUB_MAKEFILES which are used in the makefile-generation scheme.
6512 AC_DEFUN([CF_SRC_MODULES],
6513 [
6514 AC_MSG_CHECKING(for src modules)
6515
6516 # dependencies and linker-arguments for test-programs
6517 TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEPS"
6518 TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${LIB_NAME}${DFT_DEP_SUFFIX} $TEST_DEP2"
6519 if test "$DFT_LWR_MODEL" = "libtool"; then
6520         TEST_ARGS="${TEST_DEPS}"
6521         TEST_ARG2="${TEST_DEP2}"
6522 else
6523         TEST_ARGS="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARGS"
6524         TEST_ARG2="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARG2"
6525 fi
6526
6527 PC_MODULES_TO_MAKE="ncurses${USE_ARG_SUFFIX}"
6528 cf_cv_src_modules=
6529 for cf_dir in $1
6530 do
6531         if test -f $srcdir/$cf_dir/modules; then
6532
6533                 # We may/may not have tack in the distribution, though the
6534                 # makefile is.
6535                 if test $cf_dir = tack ; then
6536                         if test "x$cf_with_tack" != "xyes"; then
6537                                 continue
6538                         fi
6539                 fi
6540
6541                 if test -z "$cf_cv_src_modules"; then
6542                         cf_cv_src_modules=$cf_dir
6543                 else
6544                         cf_cv_src_modules="$cf_cv_src_modules $cf_dir"
6545                 fi
6546
6547                 # Make the ncurses_cfg.h file record the library interface files as
6548                 # well.  These are header files that are the same name as their
6549                 # directory.  Ncurses is the only library that does not follow
6550                 # that pattern.
6551                 if test $cf_dir = tack ; then
6552                         continue
6553                 elif test -f $srcdir/${cf_dir}/${cf_dir}.h; then
6554                         CF_UPPER(cf_have_include,$cf_dir)
6555                         AC_DEFINE_UNQUOTED(HAVE_${cf_have_include}_H)
6556                         AC_DEFINE_UNQUOTED(HAVE_LIB${cf_have_include})
6557                         TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${cf_dir}${DFT_DEP_SUFFIX} $TEST_DEPS"
6558                         TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${cf_dir}${DFT_DEP_SUFFIX} $TEST_DEP2"
6559                         if test "$DFT_LWR_MODEL" = "libtool"; then
6560                                 TEST_ARGS="${TEST_DEPS}"
6561                                 TEST_ARG2="${TEST_DEP2}"
6562                         else
6563                                 TEST_ARGS="-l${cf_dir}${USE_ARG_SUFFIX} $TEST_ARGS"
6564                                 TEST_ARG2="-l${cf_dir}${USE_ARG_SUFFIX} $TEST_ARG2"
6565                         fi
6566                         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ${cf_dir}${USE_ARG_SUFFIX}"
6567                 fi
6568         fi
6569 done
6570 AC_MSG_RESULT($cf_cv_src_modules)
6571
6572 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS"
6573 TEST_ARG2="-L${LIB_2ND} $TEST_ARG2"
6574
6575 AC_SUBST(TEST_ARGS)
6576 AC_SUBST(TEST_DEPS)
6577
6578 AC_SUBST(TEST_ARG2)
6579 AC_SUBST(TEST_DEP2)
6580
6581 SRC_SUBDIRS=
6582 if test "x$cf_with_manpages" != xno ; then
6583         SRC_SUBDIRS="$SRC_SUBDIRS man"
6584 fi
6585 SRC_SUBDIRS="$SRC_SUBDIRS include"
6586 for cf_dir in $cf_cv_src_modules
6587 do
6588         SRC_SUBDIRS="$SRC_SUBDIRS $cf_dir"
6589 done
6590 if test "x$cf_with_tests" != "xno" ; then
6591         SRC_SUBDIRS="$SRC_SUBDIRS test"
6592 fi
6593 # always make this, to install the ncurses-config script
6594 SRC_SUBDIRS="$SRC_SUBDIRS misc"
6595 if test "$cf_with_cxx_binding" != no; then
6596         PC_MODULES_TO_MAKE="${PC_MODULES_TO_MAKE} ncurses++${USE_ARG_SUFFIX}"
6597         SRC_SUBDIRS="$SRC_SUBDIRS c++"
6598 fi
6599
6600 test "x$with_termlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TINFO_ARG_SUFFIX"
6601 test "x$with_ticlib" != xno && PC_MODULES_TO_MAKE="$PC_MODULES_TO_MAKE $TICS_ARG_SUFFIX"
6602
6603 AC_SUBST(PC_MODULES_TO_MAKE)
6604
6605 ADA_SUBDIRS=
6606 if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = xyes && test -f $srcdir/Ada95/Makefile.in; then
6607         SRC_SUBDIRS="$SRC_SUBDIRS Ada95"
6608         ADA_SUBDIRS="gen src"
6609         if test "x$cf_with_tests" != "xno" ; then
6610                 ADA_SUBDIRS="$ADA_SUBDIRS samples"
6611         fi
6612 fi
6613
6614 SUB_MAKEFILES=
6615 for cf_dir in $SRC_SUBDIRS
6616 do
6617         SUB_MAKEFILES="$SUB_MAKEFILES $cf_dir/Makefile"
6618 done
6619
6620 if test -n "$ADA_SUBDIRS"; then
6621         for cf_dir in $ADA_SUBDIRS
6622         do
6623                 SUB_MAKEFILES="$SUB_MAKEFILES Ada95/$cf_dir/Makefile"
6624         done
6625         AC_SUBST(ADA_SUBDIRS)
6626 fi
6627 ])dnl
6628 dnl ---------------------------------------------------------------------------
6629 dnl CF_STDCPP_LIBRARY version: 11 updated: 2015/10/17 19:03:33
6630 dnl -----------------
6631 dnl Check for -lstdc++, which is GNU's standard C++ library.
6632 dnl If $CXXLIBS is set, add that to the libraries used for test-linking.
6633 dnl If -lstdc++ was not already added to $LIBS or $CXXLIBS, and is needed,
6634 dnl add it to $CXXLIBS.
6635 AC_DEFUN([CF_STDCPP_LIBRARY],
6636 [
6637 if test -n "$GXX" ; then
6638
6639         cf_save="$LIBS"
6640         LIBS="$LIBS $CXXLIBS"
6641         AC_MSG_CHECKING(if we already have C++ library)
6642         AC_TRY_LINK([
6643                         #include <iostream>],[
6644                         std::cout << "Hello World!" << std::endl;],
6645                 [cf_have_libstdcpp=yes],
6646                 [cf_have_libstdcpp=no])
6647         AC_MSG_RESULT($cf_have_libstdcpp)
6648         LIBS="$cf_save"
6649
6650         if test $cf_have_libstdcpp != yes
6651         then
6652                 case $cf_cv_system_name in
6653                 (os2*)
6654                         if test -z "`g++ -dM -E - < /dev/null | grep __KLIBC__`"; then
6655                                 cf_stdcpp_libname=stdcpp
6656                         else
6657                                 cf_stdcpp_libname=stdc++
6658                         fi
6659                         ;;
6660                 (*)
6661                         cf_stdcpp_libname=stdc++
6662                         ;;
6663                 esac
6664
6665                 AC_CACHE_CHECK(for library $cf_stdcpp_libname,cf_cv_libstdcpp,[
6666                         cf_save="$LIBS"
6667                         LIBS="$LIBS $CXXLIBS"
6668                         CF_ADD_LIB($cf_stdcpp_libname)
6669                 AC_TRY_LINK([
6670                                 #include <iostream>],[
6671                                 std::cout << "Hello World!" << std::endl;],
6672                         [cf_cv_libstdcpp=yes],
6673                         [cf_cv_libstdcpp=no])
6674                         LIBS="$cf_save"
6675                 ])
6676                 test "$cf_cv_libstdcpp" = yes && { CF_ADD_LIB($cf_stdcpp_libname,CXXLIBS) }
6677         fi
6678 fi
6679 ])dnl
6680 dnl ---------------------------------------------------------------------------
6681 dnl CF_STRIP_G_OPT version: 3 updated: 2002/12/21 19:25:52
6682 dnl --------------
6683 dnl     Remove "-g" option from the compiler options
6684 AC_DEFUN([CF_STRIP_G_OPT],
6685 [$1=`echo ${$1} | sed -e 's%-g %%' -e 's%-g$%%'`])dnl
6686 dnl ---------------------------------------------------------------------------
6687 dnl CF_STRUCT_SIGACTION version: 5 updated: 2012/10/06 17:56:13
6688 dnl -------------------
6689 dnl Check if we need _POSIX_SOURCE defined to use struct sigaction.  We'll only
6690 dnl do this if we've found the sigaction function.
6691 AC_DEFUN([CF_STRUCT_SIGACTION],[
6692 AC_REQUIRE([CF_XOPEN_SOURCE])
6693
6694 if test "$ac_cv_func_sigaction" = yes; then
6695 AC_MSG_CHECKING(whether sigaction needs _POSIX_SOURCE)
6696 AC_TRY_COMPILE([
6697 #include <sys/types.h>
6698 #include <signal.h>],
6699         [struct sigaction act],
6700         [sigact_bad=no],
6701         [
6702 AC_TRY_COMPILE([
6703 #define _POSIX_SOURCE
6704 #include <sys/types.h>
6705 #include <signal.h>],
6706         [struct sigaction act],
6707         [sigact_bad=yes
6708          AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE])],
6709          [sigact_bad=unknown])])
6710 AC_MSG_RESULT($sigact_bad)
6711 fi
6712 ])dnl
6713 dnl ---------------------------------------------------------------------------
6714 dnl CF_STRUCT_TERMIOS version: 8 updated: 2015/04/15 19:08:48
6715 dnl -----------------
6716 dnl Some machines require _POSIX_SOURCE to completely define struct termios.
6717 AC_DEFUN([CF_STRUCT_TERMIOS],[
6718 AC_REQUIRE([CF_XOPEN_SOURCE])
6719
6720 AC_CHECK_HEADERS( \
6721 termio.h \
6722 termios.h \
6723 unistd.h \
6724 )
6725
6726 if test "$ISC" = yes ; then
6727         AC_CHECK_HEADERS( sys/termio.h )
6728 fi
6729 if test "$ac_cv_header_termios_h" = yes ; then
6730         case "$CFLAGS $CPPFLAGS" in
6731         (*-D_POSIX_SOURCE*)
6732                 termios_bad=dunno ;;
6733         (*)     termios_bad=maybe ;;
6734         esac
6735         if test "$termios_bad" = maybe ; then
6736         AC_MSG_CHECKING(whether termios.h needs _POSIX_SOURCE)
6737         AC_TRY_COMPILE([#include <termios.h>],
6738                 [struct termios foo; int x = foo.c_iflag],
6739                 termios_bad=no, [
6740                 AC_TRY_COMPILE([
6741 #define _POSIX_SOURCE
6742 #include <termios.h>],
6743                         [struct termios foo; int x = foo.c_iflag],
6744                         termios_bad=unknown,
6745                         termios_bad=yes AC_DEFINE(_POSIX_SOURCE,1,[Define to 1 if we must define _POSIX_SOURCE]))
6746                         ])
6747         AC_MSG_RESULT($termios_bad)
6748         fi
6749 fi
6750 ])dnl
6751 dnl ---------------------------------------------------------------------------
6752 dnl CF_SUBDIR_PATH version: 7 updated: 2014/12/04 04:33:06
6753 dnl --------------
6754 dnl Construct a search-list for a nonstandard header/lib-file
6755 dnl     $1 = the variable to return as result
6756 dnl     $2 = the package name
6757 dnl     $3 = the subdirectory, e.g., bin, include or lib
6758 AC_DEFUN([CF_SUBDIR_PATH],
6759 [
6760 $1=
6761
6762 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
6763
6764 for cf_subdir_prefix in \
6765         /usr \
6766         /usr/local \
6767         /usr/pkg \
6768         /opt \
6769         /opt/local \
6770         [$]HOME
6771 do
6772         CF_ADD_SUBDIR_PATH($1,$2,$3,$cf_subdir_prefix,$prefix)
6773 done
6774 ])dnl
6775 dnl ---------------------------------------------------------------------------
6776 dnl CF_SUBST_IF version: 2 updated: 2006/06/17 12:33:03
6777 dnl -----------
6778 dnl     Shorthand macro for substituting things that the user may override
6779 dnl     with an environment variable.
6780 dnl
6781 dnl     $1 = condition to pass to "test"
6782 dnl     $2 = environment variable
6783 dnl     $3 = value if the test succeeds
6784 dnl     $4 = value if the test fails
6785 AC_DEFUN([CF_SUBST_IF],
6786 [
6787 if test $1 ; then
6788         $2=$3
6789 ifelse($4,,,[else
6790         $2=$4])
6791 fi
6792 AC_SUBST($2)
6793 ])dnl
6794 dnl ---------------------------------------------------------------------------
6795 dnl CF_SUBST_NCURSES_VERSION version: 8 updated: 2006/09/16 11:40:59
6796 dnl ------------------------
6797 dnl Get the version-number for use in shared-library naming, etc.
6798 AC_DEFUN([CF_SUBST_NCURSES_VERSION],
6799 [
6800 AC_REQUIRE([CF_PROG_EGREP])
6801 NCURSES_MAJOR="`$ac_cv_prog_egrep '^NCURSES_MAJOR[[     ]]*=' $srcdir/dist.mk | sed -e 's/^[[^0-9]]*//'`"
6802 NCURSES_MINOR="`$ac_cv_prog_egrep '^NCURSES_MINOR[[     ]]*=' $srcdir/dist.mk | sed -e 's/^[[^0-9]]*//'`"
6803 NCURSES_PATCH="`$ac_cv_prog_egrep '^NCURSES_PATCH[[     ]]*=' $srcdir/dist.mk | sed -e 's/^[[^0-9]]*//'`"
6804 cf_cv_abi_version=${NCURSES_MAJOR}
6805 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
6806 dnl Show the computed version, for logging
6807 cf_cv_timestamp=`date`
6808 AC_MSG_RESULT(Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp))
6809 dnl We need these values in the generated headers
6810 AC_SUBST(NCURSES_MAJOR)
6811 AC_SUBST(NCURSES_MINOR)
6812 AC_SUBST(NCURSES_PATCH)
6813 dnl We need these values in the generated makefiles
6814 AC_SUBST(cf_cv_rel_version)
6815 AC_SUBST(cf_cv_abi_version)
6816 AC_SUBST(cf_cv_builtin_bool)
6817 AC_SUBST(cf_cv_header_stdbool_h)
6818 AC_SUBST(cf_cv_type_of_bool)dnl
6819 ])dnl
6820 dnl ---------------------------------------------------------------------------
6821 dnl CF_SYS_TIME_SELECT version: 6 updated: 2015/04/18 08:56:57
6822 dnl ------------------
6823 dnl Check if we can include <sys/time.h> with <sys/select.h>; this breaks on
6824 dnl older SCO configurations.
6825 AC_DEFUN([CF_SYS_TIME_SELECT],
6826 [
6827 AC_MSG_CHECKING(if sys/time.h works with sys/select.h)
6828 AC_CACHE_VAL(cf_cv_sys_time_select,[
6829 AC_TRY_COMPILE([
6830 #include <sys/types.h>
6831 #ifdef HAVE_SYS_TIME_H
6832 #include <sys/time.h>
6833 #endif
6834 #ifdef HAVE_SYS_SELECT_H
6835 #include <sys/select.h>
6836 #endif
6837 ],[],[cf_cv_sys_time_select=yes],
6838          [cf_cv_sys_time_select=no])
6839          ])
6840 AC_MSG_RESULT($cf_cv_sys_time_select)
6841 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>])
6842 ])dnl
6843 dnl ---------------------------------------------------------------------------
6844 dnl CF_TOP_BUILDDIR version: 2 updated: 2013/07/27 17:38:32
6845 dnl ---------------
6846 dnl Define a top_builddir symbol, for applications that need an absolute path.
6847 AC_DEFUN([CF_TOP_BUILDDIR],
6848 [
6849 top_builddir=ifelse($1,,`pwd`,$1)
6850 AC_SUBST(top_builddir)
6851 ])dnl
6852 dnl ---------------------------------------------------------------------------
6853 dnl CF_TRY_XOPEN_SOURCE version: 1 updated: 2011/10/30 17:09:50
6854 dnl -------------------
6855 dnl If _XOPEN_SOURCE is not defined in the compile environment, check if we
6856 dnl can define it successfully.
6857 AC_DEFUN([CF_TRY_XOPEN_SOURCE],[
6858 AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
6859         AC_TRY_COMPILE([
6860 #include <stdlib.h>
6861 #include <string.h>
6862 #include <sys/types.h>
6863 ],[
6864 #ifndef _XOPEN_SOURCE
6865 make an error
6866 #endif],
6867         [cf_cv_xopen_source=no],
6868         [cf_save="$CPPFLAGS"
6869          CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
6870          AC_TRY_COMPILE([
6871 #include <stdlib.h>
6872 #include <string.h>
6873 #include <sys/types.h>
6874 ],[
6875 #ifdef _XOPEN_SOURCE
6876 make an error
6877 #endif],
6878         [cf_cv_xopen_source=no],
6879         [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
6880         CPPFLAGS="$cf_save"
6881         ])
6882 ])
6883
6884 if test "$cf_cv_xopen_source" != no ; then
6885         CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
6886         CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
6887         cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
6888         CF_ADD_CFLAGS($cf_temp_xopen_source)
6889 fi
6890 ])
6891 dnl ---------------------------------------------------------------------------
6892 dnl CF_TYPEOF_CHTYPE version: 10 updated: 2017/01/21 11:06:25
6893 dnl ----------------
6894 dnl Determine the type we should use for chtype (and attr_t, which is treated
6895 dnl as the same thing).  We want around 32 bits, so on most machines want a
6896 dnl long, but on newer 64-bit machines, probably want an int.  If we're using
6897 dnl wide characters, we have to have a type compatible with that, as well.
6898 AC_DEFUN([CF_TYPEOF_CHTYPE],
6899 [
6900 AC_MSG_CHECKING([for type of chtype])
6901 AC_CACHE_VAL(cf_cv_typeof_chtype,[
6902                 AC_TRY_RUN([
6903 #define WANT_BITS 31
6904 #include <stdio.h>
6905 int main(void)
6906 {
6907         FILE *fp = fopen("cf_test.out", "w");
6908         if (fp != 0) {
6909                 char *result = "long";
6910                 if (sizeof(unsigned long) > sizeof(unsigned int)) {
6911                         int n;
6912                         unsigned int x, y;
6913                         for (n = 0; n < WANT_BITS; n++) {
6914                                 x = (1 << n);
6915                                 y = (x >> n);
6916                                 if (y != 1 || x == 0) {
6917                                         x = 0;
6918                                         break;
6919                                 }
6920                         }
6921                         /*
6922                          * If x is nonzero, an int is big enough for the bits
6923                          * that we want.
6924                          */
6925                         result = (x != 0) ? "int" : "long";
6926                 }
6927                 fputs(result, fp);
6928                 fclose(fp);
6929         }
6930         ${cf_cv_main_return:-return}(0);
6931 }
6932                 ],
6933                 [cf_cv_typeof_chtype=`cat cf_test.out`],
6934                 [cf_cv_typeof_chtype=long],
6935                 [cf_cv_typeof_chtype=long])
6936                 rm -f cf_test.out
6937         ])
6938 AC_MSG_RESULT($cf_cv_typeof_chtype)
6939
6940 AC_SUBST(cf_cv_typeof_chtype)
6941 AC_DEFINE_UNQUOTED(TYPEOF_CHTYPE,$cf_cv_typeof_chtype,[Define to actual type if needed for chtype])
6942 ])dnl
6943 dnl ---------------------------------------------------------------------------
6944 dnl CF_TYPE_SIGACTION version: 4 updated: 2012/10/06 17:56:13
6945 dnl -----------------
6946 dnl
6947 AC_DEFUN([CF_TYPE_SIGACTION],
6948 [
6949 AC_MSG_CHECKING([for type sigaction_t])
6950 AC_CACHE_VAL(cf_cv_type_sigaction,[
6951         AC_TRY_COMPILE([
6952 #include <signal.h>],
6953                 [sigaction_t x],
6954                 [cf_cv_type_sigaction=yes],
6955                 [cf_cv_type_sigaction=no])])
6956 AC_MSG_RESULT($cf_cv_type_sigaction)
6957 test "$cf_cv_type_sigaction" = yes && AC_DEFINE(HAVE_TYPE_SIGACTION,1,[Define to 1 if we have the sigaction_t type])
6958 ])dnl
6959 dnl ---------------------------------------------------------------------------
6960 dnl CF_UNSIGNED_LITERALS version: 2 updated: 1998/02/07 22:10:16
6961 dnl --------------------
6962 dnl Test if the compiler supports 'U' and 'L' suffixes.  Only old compilers
6963 dnl won't, but they're still there.
6964 AC_DEFUN([CF_UNSIGNED_LITERALS],
6965 [
6966 AC_MSG_CHECKING([if unsigned literals are legal])
6967 AC_CACHE_VAL(cf_cv_unsigned_literals,[
6968         AC_TRY_COMPILE([],[long x = 1L + 1UL + 1U + 1],
6969                 [cf_cv_unsigned_literals=yes],
6970                 [cf_cv_unsigned_literals=no])
6971         ])
6972 AC_MSG_RESULT($cf_cv_unsigned_literals)
6973 ])dnl
6974 dnl ---------------------------------------------------------------------------
6975 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
6976 dnl --------
6977 dnl Make an uppercase version of a variable
6978 dnl $1=uppercase($2)
6979 AC_DEFUN([CF_UPPER],
6980 [
6981 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
6982 ])dnl
6983 dnl ---------------------------------------------------------------------------
6984 dnl CF_UTF8_LIB version: 8 updated: 2012/10/06 08:57:51
6985 dnl -----------
6986 dnl Check for multibyte support, and if not found, utf8 compatibility library
6987 AC_DEFUN([CF_UTF8_LIB],
6988 [
6989 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
6990         cf_save_LIBS="$LIBS"
6991         AC_TRY_LINK([
6992 #include <stdlib.h>],[putwc(0,0);],
6993         [cf_cv_utf8_lib=yes],
6994         [CF_FIND_LINKAGE([
6995 #include <libutf8.h>],[putwc(0,0);],utf8,
6996                 [cf_cv_utf8_lib=add-on],
6997                 [cf_cv_utf8_lib=no])
6998 ])])
6999
7000 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
7001 # ncurses/ncursesw:
7002 if test "$cf_cv_utf8_lib" = "add-on" ; then
7003         AC_DEFINE(HAVE_LIBUTF8_H,1,[Define to 1 if we should include libutf8.h])
7004         CF_ADD_INCDIR($cf_cv_header_path_utf8)
7005         CF_ADD_LIBDIR($cf_cv_library_path_utf8)
7006         CF_ADD_LIBS($cf_cv_library_file_utf8)
7007 fi
7008 ])dnl
7009 dnl ---------------------------------------------------------------------------
7010 dnl CF_VA_COPY version: 3 updated: 2012/10/06 11:17:15
7011 dnl ----------
7012 dnl check for va_copy, part of stdarg.h
7013 dnl Also, workaround for glibc's __va_copy, by checking for both.
7014 AC_DEFUN([CF_VA_COPY],[
7015 AC_CACHE_CHECK(for va_copy, cf_cv_have_va_copy,[
7016 AC_TRY_LINK([
7017 #include <stdarg.h>
7018 ],[
7019         static va_list dst;
7020         static va_list src;
7021         va_copy(dst, src)],
7022         cf_cv_have_va_copy=yes,
7023         cf_cv_have_va_copy=no)])
7024
7025 test "$cf_cv_have_va_copy" = yes && AC_DEFINE(HAVE_VA_COPY,1,[Define to 1 if we have va_copy])
7026
7027 AC_CACHE_CHECK(for __va_copy, cf_cv_have___va_copy,[
7028 AC_TRY_LINK([
7029 #include <stdarg.h>
7030 ],[
7031         static va_list dst;
7032         static va_list src;
7033         __va_copy(dst, src)],
7034         cf_cv_have___va_copy=yes,
7035         cf_cv_have___va_copy=no)])
7036
7037 test "$cf_cv_have___va_copy" = yes && AC_DEFINE(HAVE___VA_COPY,1,[Define to 1 if we have __va_copy])
7038 ])
7039 dnl ---------------------------------------------------------------------------
7040 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
7041 dnl ----------
7042 dnl Use AC_VERBOSE w/o the warnings
7043 AC_DEFUN([CF_VERBOSE],
7044 [test -n "$verbose" && echo "   $1" 1>&AC_FD_MSG
7045 CF_MSG_LOG([$1])
7046 ])dnl
7047 dnl ---------------------------------------------------------------------------
7048 dnl CF_VERSION_INFO version: 7 updated: 2015/04/17 21:13:04
7049 dnl ---------------
7050 dnl Define several useful symbols derived from the VERSION file.  A separate
7051 dnl file is preferred to embedding the version numbers in various scripts.
7052 dnl (automake is a textbook-example of why the latter is a bad idea, but there
7053 dnl are others).
7054 dnl
7055 dnl The file contents are:
7056 dnl     libtool-version release-version patch-version
7057 dnl or
7058 dnl     release-version
7059 dnl where
7060 dnl     libtool-version (see ?) consists of 3 integers separated by '.'
7061 dnl     release-version consists of a major version and minor version
7062 dnl             separated by '.', optionally followed by a patch-version
7063 dnl             separated by '-'.  The minor version need not be an
7064 dnl             integer (but it is preferred).
7065 dnl     patch-version is an integer in the form yyyymmdd, so ifdef's and
7066 dnl             scripts can easily compare versions.
7067 dnl
7068 dnl If libtool is used, the first form is required, since CF_WITH_LIBTOOL
7069 dnl simply extracts the first field using 'cut -f1'.
7070 dnl
7071 dnl Optional parameters:
7072 dnl $1 = internal name for package
7073 dnl $2 = external name for package
7074 AC_DEFUN([CF_VERSION_INFO],
7075 [
7076 if test -f $srcdir/VERSION ; then
7077         AC_MSG_CHECKING(for package version)
7078
7079         # if there are not enough fields, cut returns the last one...
7080         cf_field1=`sed -e '2,$d' $srcdir/VERSION|cut -f1`
7081         cf_field2=`sed -e '2,$d' $srcdir/VERSION|cut -f2`
7082         cf_field3=`sed -e '2,$d' $srcdir/VERSION|cut -f3`
7083
7084         # this is how CF_BUNDLED_INTL uses $VERSION:
7085         VERSION="$cf_field1"
7086
7087         VERSION_MAJOR=`echo "$cf_field2" | sed -e 's/\..*//'`
7088         test -z "$VERSION_MAJOR" && AC_MSG_ERROR(missing major-version)
7089
7090         VERSION_MINOR=`echo "$cf_field2" | sed -e 's/^[[^.]]*\.//' -e 's/-.*//'`
7091         test -z "$VERSION_MINOR" && AC_MSG_ERROR(missing minor-version)
7092
7093         AC_MSG_RESULT(${VERSION_MAJOR}.${VERSION_MINOR})
7094
7095         AC_MSG_CHECKING(for package patch date)
7096         VERSION_PATCH=`echo "$cf_field3" | sed -e 's/^[[^-]]*-//'`
7097         case .$VERSION_PATCH in
7098         (.)
7099                 AC_MSG_ERROR(missing patch-date $VERSION_PATCH)
7100                 ;;
7101         (.[[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]][[0-9]])
7102                 ;;
7103         (*)
7104                 AC_MSG_ERROR(illegal patch-date $VERSION_PATCH)
7105                 ;;
7106         esac
7107         AC_MSG_RESULT($VERSION_PATCH)
7108 else
7109         AC_MSG_ERROR(did not find $srcdir/VERSION)
7110 fi
7111
7112 # show the actual data that we have for versions:
7113 CF_VERBOSE(ABI VERSION $VERSION)
7114 CF_VERBOSE(VERSION_MAJOR $VERSION_MAJOR)
7115 CF_VERBOSE(VERSION_MINOR $VERSION_MINOR)
7116 CF_VERBOSE(VERSION_PATCH $VERSION_PATCH)
7117
7118 AC_SUBST(VERSION)
7119 AC_SUBST(VERSION_MAJOR)
7120 AC_SUBST(VERSION_MINOR)
7121 AC_SUBST(VERSION_PATCH)
7122
7123 dnl if a package name is given, define its corresponding version info.  We
7124 dnl need the package name to ensure that the defined symbols are unique.
7125 ifelse($1,,,[
7126         cf_PACKAGE=$1
7127         PACKAGE=ifelse($2,,$1,$2)
7128         AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",[Define to the package-name])
7129         AC_SUBST(PACKAGE)
7130         CF_UPPER(cf_PACKAGE,$cf_PACKAGE)
7131         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_VERSION,"${VERSION_MAJOR}.${VERSION_MINOR}")
7132         AC_DEFINE_UNQUOTED(${cf_PACKAGE}_PATCHDATE,${VERSION_PATCH})
7133 ])
7134 ])dnl
7135 dnl ---------------------------------------------------------------------------
7136 dnl CF_WCHAR_TYPE version: 4 updated: 2012/10/06 16:39:58
7137 dnl -------------
7138 dnl Check if type wide-character type $1 is declared, and if so, which header
7139 dnl file is needed.  The second parameter is used to set a shell variable when
7140 dnl the type is not found.  The first parameter sets a shell variable for the
7141 dnl opposite sense.
7142 AC_DEFUN([CF_WCHAR_TYPE],
7143 [
7144 # This is needed on Tru64 5.0 to declare $1
7145 AC_CACHE_CHECK(if we must include wchar.h to declare $1,cf_cv_$1,[
7146 AC_TRY_COMPILE([
7147 #include <stdlib.h>
7148 #include <stdarg.h>
7149 #include <stdio.h>
7150 #ifdef HAVE_LIBUTF8_H
7151 #include <libutf8.h>
7152 #endif],
7153         [$1 state],
7154         [cf_cv_$1=no],
7155         [AC_TRY_COMPILE([
7156 #include <stdlib.h>
7157 #include <stdarg.h>
7158 #include <stdio.h>
7159 #include <wchar.h>
7160 #ifdef HAVE_LIBUTF8_H
7161 #include <libutf8.h>
7162 #endif],
7163         [$1 value],
7164         [cf_cv_$1=yes],
7165         [cf_cv_$1=unknown])])])
7166
7167 if test "$cf_cv_$1" = yes ; then
7168         AC_DEFINE(NEED_WCHAR_H,1,[Define to 1 if we must include wchar.h])
7169         NEED_WCHAR_H=1
7170 fi
7171
7172 ifelse([$2],,,[
7173 # if we do not find $1 in either place, use substitution to provide a fallback.
7174 if test "$cf_cv_$1" = unknown ; then
7175         $2=1
7176 fi
7177 ])
7178 ifelse($3,,,[
7179 # if we find $1 in either place, use substitution to provide a fallback.
7180 if test "$cf_cv_$1" != unknown ; then
7181         $3=1
7182 fi
7183 ])
7184 ])dnl
7185 dnl ---------------------------------------------------------------------------
7186 dnl CF_WEAK_SYMBOLS version: 1 updated: 2008/08/16 19:18:06
7187 dnl ---------------
7188 dnl Check for compiler-support for weak symbols.
7189 dnl This works with "recent" gcc.
7190 AC_DEFUN([CF_WEAK_SYMBOLS],[
7191 AC_CACHE_CHECK(if $CC supports weak symbols,cf_cv_weak_symbols,[
7192
7193 AC_TRY_COMPILE([
7194 #include <stdio.h>],
7195 [
7196 #if defined(__GNUC__)
7197 #  if defined __USE_ISOC99
7198 #    define _cat_pragma(exp)    _Pragma(#exp)
7199 #    define _weak_pragma(exp)   _cat_pragma(weak name)
7200 #  else
7201 #    define _weak_pragma(exp)
7202 #  endif
7203 #  define _declare(name)        __extension__ extern __typeof__(name) name
7204 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
7205 #endif
7206
7207 weak_symbol(fopen);
7208 ],[cf_cv_weak_symbols=yes],[cf_cv_weak_symbols=no])
7209 ])
7210 ])dnl
7211 dnl ---------------------------------------------------------------------------
7212 dnl CF_WITH_ABI_VERSION version: 3 updated: 2015/06/06 16:10:11
7213 dnl -------------------
7214 dnl Allow library's ABI to be overridden.  Generally this happens when a
7215 dnl packager has incremented the ABI past that used in the original package,
7216 dnl and wishes to keep doing this.
7217 dnl
7218 dnl $1 is the package name, if any, to derive a corresponding {package}_ABI
7219 dnl symbol.
7220 AC_DEFUN([CF_WITH_ABI_VERSION],[
7221 test -z "$cf_cv_abi_version" && cf_cv_abi_version=0
7222 AC_ARG_WITH(abi-version,
7223 [  --with-abi-version=XXX  override derived ABI version],[
7224         if test "x$cf_cv_abi_version" != "x$withval"
7225         then
7226                 AC_MSG_WARN(overriding ABI version $cf_cv_abi_version to $withval)
7227                 case $cf_cv_rel_version in
7228                 (5.*)
7229                         cf_cv_rel_version=$withval.0
7230                         ;;
7231                 (6.*)
7232                         cf_cv_rel_version=$withval.9    # FIXME: should be 10 as of 6.0 release
7233                         ;;
7234                 esac
7235         fi
7236         cf_cv_abi_version=$withval])
7237         CF_NUMBER_SYNTAX($cf_cv_abi_version,ABI version)
7238 ifelse($1,,,[
7239 $1_ABI=$cf_cv_abi_version
7240 ])
7241 ])dnl
7242 dnl ---------------------------------------------------------------------------
7243 dnl CF_WITH_ADA_COMPILER version: 2 updated: 2010/06/26 17:35:58
7244 dnl --------------------
7245 dnl Command-line option to specify the Ada95 compiler.
7246 AC_DEFUN([CF_WITH_ADA_COMPILER],[
7247 AC_MSG_CHECKING(for ada-compiler)
7248 AC_ARG_WITH(ada-compiler,
7249         [  --with-ada-compiler=CMD specify Ada95 compiler command (default gnatmake)],
7250         [cf_ada_compiler=$withval],
7251         [cf_ada_compiler=gnatmake])
7252 AC_SUBST(cf_ada_compiler)
7253 AC_MSG_RESULT($cf_ada_compiler)
7254 ])dnl
7255 dnl ---------------------------------------------------------------------------
7256 dnl CF_WITH_ADA_INCLUDE version: 2 updated: 2010/06/26 17:35:58
7257 dnl -------------------
7258 dnl Command-line option to specify where Ada includes will install.
7259 AC_DEFUN([CF_WITH_ADA_INCLUDE],[
7260 AC_MSG_CHECKING(for ada-include)
7261 CF_WITH_PATH(ada-include,
7262    [  --with-ada-include=DIR  Ada includes are in DIR],
7263    ADA_INCLUDE,
7264    PREFIX/share/ada/adainclude,
7265    [$]prefix/share/ada/adainclude)
7266 AC_SUBST(ADA_INCLUDE)
7267 AC_MSG_RESULT($ADA_INCLUDE)
7268 ])dnl
7269 dnl ---------------------------------------------------------------------------
7270 dnl CF_WITH_ADA_OBJECTS version: 2 updated: 2010/06/26 17:35:58
7271 dnl -------------------
7272 dnl Command-line option to specify where Ada objects will install.
7273 AC_DEFUN([CF_WITH_ADA_OBJECTS],[
7274 AC_MSG_CHECKING(for ada-objects)
7275 CF_WITH_PATH(ada-objects,
7276    [  --with-ada-objects=DIR  Ada objects are in DIR],
7277    ADA_OBJECTS,
7278    PREFIX/lib/ada/adalib,
7279    [$]prefix/lib/ada/adalib)
7280 AC_SUBST(ADA_OBJECTS)
7281 AC_MSG_RESULT($ADA_OBJECTS)
7282 ])dnl
7283 dnl ---------------------------------------------------------------------------
7284 dnl CF_WITH_ADA_SHAREDLIB version: 4 updated: 2014/05/31 21:08:37
7285 dnl ---------------------
7286 dnl Command-line option to specify if an Ada95 shared-library should be built,
7287 dnl and optionally what its soname should be.
7288 AC_DEFUN([CF_WITH_ADA_SHAREDLIB],[
7289 AC_MSG_CHECKING(if an Ada95 shared-library should be built)
7290 AC_ARG_WITH(ada-sharedlib,
7291         [  --with-ada-sharedlib=soname build shared-library (requires GNAT projects)],
7292         [with_ada_sharedlib=$withval],
7293         [with_ada_sharedlib=no])
7294 AC_MSG_RESULT($with_ada_sharedlib)
7295
7296 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
7297 MAKE_ADA_SHAREDLIB="#"
7298
7299 if test "x$with_ada_sharedlib" != xno
7300 then
7301         MAKE_ADA_SHAREDLIB=
7302         if test "x$with_ada_sharedlib" != xyes
7303         then
7304                 ADA_SHAREDLIB="$with_ada_sharedlib"
7305         fi
7306 fi
7307
7308 AC_SUBST(ADA_SHAREDLIB)
7309 AC_SUBST(MAKE_ADA_SHAREDLIB)
7310 ])dnl
7311 dnl ---------------------------------------------------------------------------
7312 dnl CF_WITH_DBMALLOC version: 7 updated: 2010/06/21 17:26:47
7313 dnl ----------------
7314 dnl Configure-option for dbmalloc.  The optional parameter is used to override
7315 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
7316 AC_DEFUN([CF_WITH_DBMALLOC],[
7317 CF_NO_LEAKS_OPTION(dbmalloc,
7318         [  --with-dbmalloc         test: use Conor Cahill's dbmalloc library],
7319         [USE_DBMALLOC])
7320
7321 if test "$with_dbmalloc" = yes ; then
7322         AC_CHECK_HEADER(dbmalloc.h,
7323                 [AC_CHECK_LIB(dbmalloc,[debug_malloc]ifelse([$1],,[],[,$1]))])
7324 fi
7325 ])dnl
7326 dnl ---------------------------------------------------------------------------
7327 dnl CF_WITH_DMALLOC version: 7 updated: 2010/06/21 17:26:47
7328 dnl ---------------
7329 dnl Configure-option for dmalloc.  The optional parameter is used to override
7330 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
7331 AC_DEFUN([CF_WITH_DMALLOC],[
7332 CF_NO_LEAKS_OPTION(dmalloc,
7333         [  --with-dmalloc          test: use Gray Watson's dmalloc library],
7334         [USE_DMALLOC])
7335
7336 if test "$with_dmalloc" = yes ; then
7337         AC_CHECK_HEADER(dmalloc.h,
7338                 [AC_CHECK_LIB(dmalloc,[dmalloc_debug]ifelse([$1],,[],[,$1]))])
7339 fi
7340 ])dnl
7341 dnl ---------------------------------------------------------------------------
7342 dnl CF_WITH_EXPORT_SYMS version: 3 updated: 2014/12/20 19:16:08
7343 dnl -------------------
7344 dnl Use this with libtool to specify the list of symbols that may be exported.
7345 dnl The input file contains one symbol per line; comments work with "#".
7346 dnl
7347 dnl $1 = basename of the ".sym" file (default $PACKAGE)
7348 AC_DEFUN([CF_WITH_EXPORT_SYMS],
7349 [
7350 AC_MSG_CHECKING(if exported-symbols file should be used)
7351 AC_ARG_WITH(export-syms,
7352         [  --with-export-syms=XXX  limit exported symbols using libtool],
7353         [with_export_syms=$withval],
7354         [with_export_syms=no])
7355 if test "x$with_export_syms" = xyes
7356 then
7357         with_export_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).sym'
7358         AC_SUBST(PACKAGE)
7359 fi
7360 AC_MSG_RESULT($with_export_syms)
7361 if test "x$with_export_syms" != xno
7362 then
7363         EXPORT_SYMS="-export-symbols $with_export_syms"
7364         AC_SUBST(EXPORT_SYMS)
7365 fi
7366 ])dnl
7367 dnl ---------------------------------------------------------------------------
7368 dnl CF_WITH_GPM version: 10 updated: 2017/04/29 18:32:18
7369 dnl -----------
7370 dnl
7371 dnl The option parameter (if neither yes/no) is assumed to be the name of
7372 dnl the gpm library, e.g., for dynamic loading.
7373 AC_DEFUN([CF_WITH_GPM],
7374 [
7375 AC_MSG_CHECKING(if you want to link with the GPM mouse library)
7376 AC_ARG_WITH(gpm,
7377         [  --with-gpm              use Alessandro Rubini's GPM library],
7378         [with_gpm=$withval],
7379         [with_gpm=maybe])
7380 AC_MSG_RESULT($with_gpm)
7381
7382 if test "$with_gpm" != no ; then
7383         AC_CHECK_HEADER(gpm.h,[
7384                 AC_DEFINE(HAVE_GPM_H,1,[Define to 1 if we have gpm.h header])
7385                 if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
7386                         CF_VERBOSE(assuming we really have GPM library)
7387                         AC_DEFINE(HAVE_LIBGPM,1,[Define to 1 if we have the gpm library])
7388                         with_gpm=yes
7389                 else
7390                         AC_CHECK_LIB(gpm,Gpm_Open,[with_gpm=yes],[
7391                                 if test "$with_gpm" = maybe; then
7392                                         AC_MSG_WARN(Cannot link with GPM library)
7393                                         with_gpm=no
7394                                 else
7395                                         AC_MSG_ERROR(Cannot link with GPM library)
7396                                 fi
7397                         ])
7398                 fi
7399         ],[
7400                 test "$with_gpm" != maybe && AC_MSG_WARN(Cannot find GPM header)
7401                 with_gpm=no
7402         ])
7403 fi
7404 ])
7405 dnl ---------------------------------------------------------------------------
7406 dnl CF_WITH_LIBTOOL version: 35 updated: 2017/08/12 07:58:51
7407 dnl ---------------
7408 dnl Provide a configure option to incorporate libtool.  Define several useful
7409 dnl symbols for the makefile rules.
7410 dnl
7411 dnl The reference to AC_PROG_LIBTOOL does not normally work, since it uses
7412 dnl macros from libtool.m4 which is in the aclocal directory of automake.
7413 dnl Following is a simple script which turns on the AC_PROG_LIBTOOL macro.
7414 dnl But that still does not work properly since the macro is expanded outside
7415 dnl the CF_WITH_LIBTOOL macro:
7416 dnl
7417 dnl     #!/bin/sh
7418 dnl     ACLOCAL=`aclocal --print-ac-dir`
7419 dnl     if test -z "$ACLOCAL" ; then
7420 dnl             echo cannot find aclocal directory
7421 dnl             exit 1
7422 dnl     elif test ! -f $ACLOCAL/libtool.m4 ; then
7423 dnl             echo cannot find libtool.m4 file
7424 dnl             exit 1
7425 dnl     fi
7426 dnl
7427 dnl     LOCAL=aclocal.m4
7428 dnl     ORIG=aclocal.m4.orig
7429 dnl
7430 dnl     trap "mv $ORIG $LOCAL" 0 1 2 3 15
7431 dnl     rm -f $ORIG
7432 dnl     mv $LOCAL $ORIG
7433 dnl
7434 dnl     # sed the LIBTOOL= assignment to omit the current directory?
7435 dnl     sed -e 's/^LIBTOOL=.*/LIBTOOL=${LIBTOOL:-libtool}/' $ACLOCAL/libtool.m4 >>$LOCAL
7436 dnl     cat $ORIG >>$LOCAL
7437 dnl
7438 dnl     autoconf-257 $*
7439 dnl
7440 AC_DEFUN([CF_WITH_LIBTOOL],
7441 [
7442 AC_REQUIRE([CF_DISABLE_LIBTOOL_VERSION])
7443 ifdef([AC_PROG_LIBTOOL],,[
7444 LIBTOOL=
7445 ])
7446 # common library maintenance symbols that are convenient for libtool scripts:
7447 LIB_CREATE='${AR} -cr'
7448 LIB_OBJECT='${OBJECTS}'
7449 LIB_SUFFIX=.a
7450 LIB_PREP="$RANLIB"
7451
7452 # symbols used to prop libtool up to enable it to determine what it should be
7453 # doing:
7454 LIB_CLEAN=
7455 LIB_COMPILE=
7456 LIB_LINK='${CC}'
7457 LIB_INSTALL=
7458 LIB_UNINSTALL=
7459
7460 AC_MSG_CHECKING(if you want to build libraries with libtool)
7461 AC_ARG_WITH(libtool,
7462         [  --with-libtool          generate libraries with libtool],
7463         [with_libtool=$withval],
7464         [with_libtool=no])
7465 AC_MSG_RESULT($with_libtool)
7466 if test "$with_libtool" != "no"; then
7467 ifdef([AC_PROG_LIBTOOL],[
7468         # missing_content_AC_PROG_LIBTOOL{{
7469         AC_PROG_LIBTOOL
7470         # missing_content_AC_PROG_LIBTOOL}}
7471 ],[
7472         if test "$with_libtool" != "yes" ; then
7473                 CF_PATH_SYNTAX(with_libtool)
7474                 LIBTOOL=$with_libtool
7475         else
7476                 AC_CHECK_TOOLS(LIBTOOL,[libtool glibtool],none)
7477                 CF_LIBTOOL_VERSION
7478                 if test -z "$cf_cv_libtool_version" && test "$LIBTOOL" = libtool
7479                 then
7480                         CF_FORGET_TOOL(LIBTOOL)
7481                         AC_CHECK_TOOLS(LIBTOOL,[glibtool],none)
7482                         CF_LIBTOOL_VERSION
7483                 fi
7484         fi
7485         if test -z "$LIBTOOL" ; then
7486                 AC_MSG_ERROR(Cannot find libtool)
7487         fi
7488 ])dnl
7489         LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${libdir} ${LIBTOOL_VERSION} `cut -f1 ${top_srcdir}/VERSION` ${LIBTOOL_OPTS} ${LT_UNDEF} $(LIBS) -o'
7490         LIB_OBJECT='${OBJECTS:.o=.lo}'
7491         LIB_SUFFIX=.la
7492         LIB_CLEAN='${LIBTOOL} --mode=clean'
7493         LIB_COMPILE='${LIBTOOL} --mode=compile'
7494         LIB_LINK='${LIBTOOL} --mode=link ${CC} ${LIBTOOL_OPTS}'
7495         LIB_INSTALL='${LIBTOOL} --mode=install'
7496         LIB_UNINSTALL='${LIBTOOL} --mode=uninstall'
7497         LIB_PREP=:
7498
7499         CF_CHECK_LIBTOOL_VERSION
7500
7501         # special hack to add -no-undefined (which libtool should do for itself)
7502         LT_UNDEF=
7503         case "$cf_cv_system_name" in
7504         (cygwin*|msys*|mingw32*|os2*|uwin*|aix[[4-7]])
7505                 LT_UNDEF=-no-undefined
7506                 ;;
7507         esac
7508         AC_SUBST([LT_UNDEF])
7509
7510         # special hack to add --tag option for C++ compiler
7511         case $cf_cv_libtool_version in
7512         (1.[[5-9]]*|[[2-9]].[[0-9.a-z]]*)
7513                 LIBTOOL_CXX="$LIBTOOL --tag=CXX"
7514                 LIBTOOL="$LIBTOOL --tag=CC"
7515                 ;;
7516         (*)
7517                 LIBTOOL_CXX="$LIBTOOL"
7518                 ;;
7519         esac
7520 else
7521         LIBTOOL=""
7522         LIBTOOL_CXX=""
7523 fi
7524
7525 test -z "$LIBTOOL" && ECHO_LT=
7526
7527 AC_SUBST(LIBTOOL)
7528 AC_SUBST(LIBTOOL_CXX)
7529 AC_SUBST(LIBTOOL_OPTS)
7530
7531 AC_SUBST(LIB_CREATE)
7532 AC_SUBST(LIB_OBJECT)
7533 AC_SUBST(LIB_SUFFIX)
7534 AC_SUBST(LIB_PREP)
7535
7536 AC_SUBST(LIB_CLEAN)
7537 AC_SUBST(LIB_COMPILE)
7538 AC_SUBST(LIB_LINK)
7539 AC_SUBST(LIB_INSTALL)
7540 AC_SUBST(LIB_UNINSTALL)
7541
7542 ])dnl
7543 dnl ---------------------------------------------------------------------------
7544 dnl CF_WITH_LIBTOOL_OPTS version: 4 updated: 2015/04/17 21:13:04
7545 dnl --------------------
7546 dnl Allow user to pass additional libtool options into the library creation
7547 dnl and link steps.  The main use for this is to do something like
7548 dnl     ./configure --with-libtool-opts=-static
7549 dnl to get the same behavior as automake-flavored
7550 dnl     ./configure --enable-static
7551 AC_DEFUN([CF_WITH_LIBTOOL_OPTS],[
7552 AC_MSG_CHECKING(for additional libtool options)
7553 AC_ARG_WITH(libtool-opts,
7554         [  --with-libtool-opts=XXX specify additional libtool options],
7555         [with_libtool_opts=$withval],
7556         [with_libtool_opts=no])
7557 AC_MSG_RESULT($with_libtool_opts)
7558
7559 case .$with_libtool_opts in
7560 (.yes|.no|.)
7561         ;;
7562 (*)
7563         LIBTOOL_OPTS="$LIBTOOL_OPTS $with_libtool_opts"
7564         ;;
7565 esac
7566
7567 AC_SUBST(LIBTOOL_OPTS)
7568 ])dnl
7569 dnl ---------------------------------------------------------------------------
7570 dnl CF_WITH_LIB_PREFIX version: 1 updated: 2012/01/21 19:28:10
7571 dnl ------------------
7572 dnl Allow the library-prefix to be overridden.  OS/2 EMX originally had no
7573 dnl "lib" prefix, e.g., because it used the dll naming convention.
7574 dnl
7575 dnl $1 = variable to set
7576 AC_DEFUN([CF_WITH_LIB_PREFIX],
7577 [
7578 AC_MSG_CHECKING(if you want to have a library-prefix)
7579 AC_ARG_WITH(lib-prefix,
7580         [  --with-lib-prefix       override library-prefix],
7581         [with_lib_prefix=$withval],
7582         [with_lib_prefix=auto])
7583 AC_MSG_RESULT($with_lib_prefix)
7584
7585 if test $with_lib_prefix = auto
7586 then
7587         CF_LIB_PREFIX($1)
7588 elif test $with_lib_prefix = no
7589 then
7590         LIB_PREFIX=
7591 else
7592         LIB_PREFIX=$with_lib_prefix
7593 fi
7594 ])dnl
7595 dnl ---------------------------------------------------------------------------
7596 dnl CF_WITH_PATH version: 11 updated: 2012/09/29 15:04:19
7597 dnl ------------
7598 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
7599 dnl defaulting to yes/no.
7600 dnl
7601 dnl $1 = option name
7602 dnl $2 = help-text
7603 dnl $3 = environment variable to set
7604 dnl $4 = default value, shown in the help-message, must be a constant
7605 dnl $5 = default value, if it's an expression & cannot be in the help-message
7606 dnl
7607 AC_DEFUN([CF_WITH_PATH],
7608 [AC_ARG_WITH($1,[$2 ](default: ifelse([$4],,empty,[$4])),,
7609 ifelse([$4],,[withval="${$3}"],[withval="${$3:-ifelse([$5],,[$4],[$5])}"]))dnl
7610 if ifelse([$5],,true,[test -n "$5"]) ; then
7611 CF_PATH_SYNTAX(withval)
7612 fi
7613 eval $3="$withval"
7614 AC_SUBST($3)dnl
7615 ])dnl
7616 dnl ---------------------------------------------------------------------------
7617 dnl CF_WITH_PATHLIST version: 10 updated: 2015/04/17 21:13:04
7618 dnl ----------------
7619 dnl Process an option specifying a list of colon-separated paths.
7620 dnl
7621 dnl $1 = option name
7622 dnl $2 = help-text
7623 dnl $3 = environment variable to set
7624 dnl $4 = default value, shown in the help-message, must be a constant
7625 dnl $5 = default value, if it's an expression & cannot be in the help-message
7626 dnl $6 = flag to tell if we want to define or substitute
7627 dnl
7628 AC_DEFUN([CF_WITH_PATHLIST],[
7629 AC_REQUIRE([CF_PATHSEP])
7630 AC_ARG_WITH($1,[$2 ](default: ifelse($4,,empty,$4)),,
7631 ifelse($4,,[withval=${$3}],[withval=${$3:-ifelse($5,,$4,$5)}]))dnl
7632
7633 IFS="${IFS:-    }"; ac_save_ifs="$IFS"; IFS="${PATH_SEPARATOR}"
7634 cf_dst_path=
7635 for cf_src_path in $withval
7636 do
7637   CF_PATH_SYNTAX(cf_src_path)
7638   test -n "$cf_dst_path" && cf_dst_path="${cf_dst_path}$PATH_SEPARATOR"
7639   cf_dst_path="${cf_dst_path}${cf_src_path}"
7640 done
7641 IFS="$ac_save_ifs"
7642
7643 ifelse($6,define,[
7644 # Strip single quotes from the value, e.g., when it was supplied as a literal
7645 # for $4 or $5.
7646 case $cf_dst_path in
7647 (\'*)
7648   cf_dst_path=`echo $cf_dst_path |sed -e s/\'// -e s/\'\$//`
7649   ;;
7650 esac
7651 cf_dst_path=`echo "$cf_dst_path" | sed -e 's/\\\\/\\\\\\\\/g'`
7652 ])
7653
7654 # This may use the prefix/exec_prefix symbols which will only yield "NONE"
7655 # so we have to check/work around.  We do prefer the result of "eval"...
7656 eval cf_dst_eval="$cf_dst_path"
7657 case "x$cf_dst_eval" in
7658 (xNONE*)
7659         $3=$cf_dst_path
7660         ;;
7661 (*)
7662         $3="$cf_dst_eval"
7663         ;;
7664 esac
7665 AC_SUBST($3)dnl
7666
7667 ])dnl
7668 dnl ---------------------------------------------------------------------------
7669 dnl CF_WITH_PKG_CONFIG_LIBDIR version: 10 updated: 2015/08/22 17:10:56
7670 dnl -------------------------
7671 dnl Allow the choice of the pkg-config library directory to be overridden.
7672 AC_DEFUN([CF_WITH_PKG_CONFIG_LIBDIR],[
7673
7674 case $PKG_CONFIG in
7675 (no|none|yes)
7676         AC_MSG_CHECKING(for pkg-config library directory)
7677         ;;
7678 (*)
7679         AC_MSG_CHECKING(for $PKG_CONFIG library directory)
7680         ;;
7681 esac
7682
7683 PKG_CONFIG_LIBDIR=no
7684 AC_ARG_WITH(pkg-config-libdir,
7685         [  --with-pkg-config-libdir=XXX use given directory for installing pc-files],
7686         [PKG_CONFIG_LIBDIR=$withval],
7687         [test "x$PKG_CONFIG" != xnone && PKG_CONFIG_LIBDIR=yes])
7688
7689 case x$PKG_CONFIG_LIBDIR in
7690 (x/*)
7691         ;;
7692 (xyes)
7693         # Look for the library directory using the same prefix as the executable
7694         if test "x$PKG_CONFIG" = xnone
7695         then
7696                 cf_path=$prefix
7697         else
7698                 cf_path=`echo "$PKG_CONFIG" | sed -e 's,/[[^/]]*/[[^/]]*$,,'`
7699         fi
7700
7701         # If you don't like using the default architecture, you have to specify the
7702         # intended library directory and corresponding compiler/linker options.
7703         #
7704         # This case allows for Debian's 2014-flavor of multiarch, along with the
7705         # most common variations before that point.  Some other variants spell the
7706         # directory differently, e.g., "pkg-config", and put it in unusual places.
7707         # pkg-config has always been poorly standardized, which is ironic...
7708         case x`(arch) 2>/dev/null` in
7709         (*64)
7710                 cf_search_path="\
7711                         $cf_path/lib/*64-linux-gnu \
7712                         $cf_path/share \
7713                         $cf_path/lib64 \
7714                         $cf_path/lib32 \
7715                         $cf_path/lib"
7716                 ;;
7717         (*)
7718                 cf_search_path="\
7719                         $cf_path/lib/*-linux-gnu \
7720                         $cf_path/share \
7721                         $cf_path/lib32 \
7722                         $cf_path/lib \
7723                         $cf_path/libdata"
7724                 ;;
7725         esac
7726
7727         CF_VERBOSE(list...)
7728         for cf_config in $cf_search_path
7729         do
7730                 CF_VERBOSE(checking $cf_config/pkgconfig)
7731                 if test -d $cf_config/pkgconfig
7732                 then
7733                         PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
7734                         AC_MSG_CHECKING(done)
7735                         break
7736                 fi
7737         done
7738         ;;
7739 (*)
7740         ;;
7741 esac
7742
7743 if test "x$PKG_CONFIG_LIBDIR" != xno ; then
7744         AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
7745 fi
7746
7747 AC_SUBST(PKG_CONFIG_LIBDIR)
7748 ])dnl
7749 dnl ---------------------------------------------------------------------------
7750 dnl CF_WITH_PTHREAD version: 7 updated: 2015/04/18 08:56:57
7751 dnl ---------------
7752 dnl Check for POSIX thread library.
7753 AC_DEFUN([CF_WITH_PTHREAD],
7754 [
7755 AC_MSG_CHECKING(if you want to link with the pthread library)
7756 AC_ARG_WITH(pthread,
7757         [  --with-pthread          use POSIX thread library],
7758         [with_pthread=$withval],
7759         [with_pthread=no])
7760 AC_MSG_RESULT($with_pthread)
7761
7762 if test "$with_pthread" != no ; then
7763         AC_CHECK_HEADER(pthread.h,[
7764         AC_DEFINE(HAVE_PTHREADS_H,1,[Define to 1 if we have pthreads.h header])
7765
7766         for cf_lib_pthread in pthread c_r
7767         do
7768             AC_MSG_CHECKING(if we can link with the $cf_lib_pthread library)
7769             cf_save_LIBS="$LIBS"
7770             CF_ADD_LIB($cf_lib_pthread)
7771             AC_TRY_LINK([
7772 #include <pthread.h>
7773 ],[
7774                 int rc = pthread_create(0,0,0,0);
7775                 int r2 = pthread_mutexattr_settype(0, 0);
7776 ],[with_pthread=yes],[with_pthread=no])
7777             LIBS="$cf_save_LIBS"
7778             AC_MSG_RESULT($with_pthread)
7779             test "$with_pthread" = yes && break
7780         done
7781
7782         if test "$with_pthread" = yes ; then
7783             CF_ADD_LIB($cf_lib_pthread)
7784             AC_DEFINE(HAVE_LIBPTHREADS,1,[Define to 1 if we have pthreads library])
7785         else
7786             AC_MSG_ERROR(Cannot link with pthread library)
7787         fi
7788         ])
7789 fi
7790 ])
7791 dnl ---------------------------------------------------------------------------
7792 dnl CF_WITH_REL_VERSION version: 1 updated: 2003/09/20 18:12:49
7793 dnl -------------------
7794 dnl Allow library's release-version to be overridden.  Generally this happens when a
7795 dnl packager has incremented the release-version past that used in the original package,
7796 dnl and wishes to keep doing this.
7797 dnl
7798 dnl $1 is the package name, if any, to derive corresponding {package}_MAJOR
7799 dnl and {package}_MINOR symbols
7800 dnl symbol.
7801 AC_DEFUN([CF_WITH_REL_VERSION],[
7802 test -z "$cf_cv_rel_version" && cf_cv_rel_version=0.0
7803 AC_ARG_WITH(rel-version,
7804 [  --with-rel-version=XXX  override derived release version],
7805 [AC_MSG_WARN(overriding release version $cf_cv_rel_version to $withval)
7806  cf_cv_rel_version=$withval])
7807 ifelse($1,,[
7808  CF_NUMBER_SYNTAX($cf_cv_rel_version,Release version)
7809 ],[
7810  $1_MAJOR=`echo "$cf_cv_rel_version" | sed -e 's/\..*//'`
7811  $1_MINOR=`echo "$cf_cv_rel_version" | sed -e 's/^[[^.]]*//' -e 's/^\.//' -e 's/\..*//'`
7812  CF_NUMBER_SYNTAX([$]$1_MAJOR,Release major-version)
7813  CF_NUMBER_SYNTAX([$]$1_MINOR,Release minor-version)
7814 ])
7815 ])dnl
7816 dnl ---------------------------------------------------------------------------
7817 dnl CF_WITH_SYSMOUSE version: 3 updated: 2012/10/06 17:56:13
7818 dnl ----------------
7819 dnl If we can compile with sysmouse, make it available unless it is not wanted.
7820 AC_DEFUN([CF_WITH_SYSMOUSE],[
7821 # not everyone has "test -c"
7822 if test -c /dev/sysmouse 2>/dev/null ; then
7823 AC_MSG_CHECKING(if you want to use sysmouse)
7824 AC_ARG_WITH(sysmouse,
7825         [  --with-sysmouse         use sysmouse (FreeBSD console)],
7826         [cf_with_sysmouse=$withval],
7827         [cf_with_sysmouse=maybe])
7828         if test "$cf_with_sysmouse" != no ; then
7829         AC_TRY_COMPILE([
7830 #include <osreldate.h>
7831 #if (__FreeBSD_version >= 400017)
7832 #include <sys/consio.h>
7833 #include <sys/fbio.h>
7834 #else
7835 #include <machine/console.h>
7836 #endif
7837 ],[
7838         struct mouse_info the_mouse;
7839         ioctl(0, CONS_MOUSECTL, &the_mouse);
7840 ],[cf_with_sysmouse=yes],[cf_with_sysmouse=no])
7841         fi
7842 AC_MSG_RESULT($cf_with_sysmouse)
7843 test "$cf_with_sysmouse" = yes && AC_DEFINE(USE_SYSMOUSE,1,[Define to 1 if we can/should use the sysmouse interface])
7844 fi
7845 ])dnl
7846 dnl ---------------------------------------------------------------------------
7847 dnl CF_WITH_SYSTYPE version: 1 updated: 2013/01/26 16:26:12
7848 dnl ---------------
7849 dnl For testing, override the derived host system-type which is used to decide
7850 dnl things such as the linker commands used to build shared libraries.  This is
7851 dnl normally chosen automatically based on the type of system which you are
7852 dnl building on.  We use it for testing the configure script.
7853 dnl
7854 dnl This is different from the --host option: it is used only for testing parts
7855 dnl of the configure script which would not be reachable with --host since that
7856 dnl relies on the build environment being real, rather than mocked up.
7857 AC_DEFUN([CF_WITH_SYSTYPE],[
7858 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
7859 AC_ARG_WITH(system-type,
7860         [  --with-system-type=XXX  test: override derived host system-type],
7861 [AC_MSG_WARN(overriding system type to $withval)
7862         cf_cv_system_name=$withval
7863         host_os=$withval
7864 ])
7865 ])dnl
7866 dnl ---------------------------------------------------------------------------
7867 dnl CF_WITH_VALGRIND version: 1 updated: 2006/12/14 18:00:21
7868 dnl ----------------
7869 AC_DEFUN([CF_WITH_VALGRIND],[
7870 CF_NO_LEAKS_OPTION(valgrind,
7871         [  --with-valgrind         test: use valgrind],
7872         [USE_VALGRIND])
7873 ])dnl
7874 dnl ---------------------------------------------------------------------------
7875 dnl CF_WITH_VERSIONED_SYMS version: 7 updated: 2015/10/24 20:50:26
7876 dnl ----------------------
7877 dnl Use this when building shared library with ELF, to markup symbols with the
7878 dnl version identifier from the given input file.  Generally that identifier is
7879 dnl the same as the SONAME at which the symbol was first introduced.
7880 dnl
7881 dnl $1 = basename of the ".map" file (default $PACKAGE)
7882 AC_DEFUN([CF_WITH_VERSIONED_SYMS],
7883 [
7884 AC_MSG_CHECKING(if versioned-symbols file should be used)
7885 AC_ARG_WITH(versioned-syms,
7886         [  --with-versioned-syms=X markup versioned symbols using ld],
7887         [with_versioned_syms=$withval],
7888         [with_versioned_syms=no])
7889 if test "x$with_versioned_syms" = xyes
7890 then
7891         with_versioned_syms='${top_srcdir}/package/ifelse($1,,${PACKAGE},[$1]).map'
7892         AC_SUBST(PACKAGE)
7893 fi
7894 AC_MSG_RESULT($with_versioned_syms)
7895
7896 RESULTING_SYMS=
7897 VERSIONED_SYMS=
7898 WILDCARD_SYMS=
7899
7900 if test "x$with_versioned_syms" != xno
7901 then
7902         RESULTING_SYMS=$with_versioned_syms
7903         case "x$MK_SHARED_LIB" in
7904         (*-Wl,*)
7905                 VERSIONED_SYMS="-Wl,--version-script,\${RESULTING_SYMS}"
7906                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-Wl,%\\[$]{VERSIONED_SYMS} -Wl,%"`
7907                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
7908                 ;;
7909         (*-dy\ *)
7910                 VERSIONED_SYMS="-Wl,-M,\${RESULTING_SYMS}"
7911                 MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-dy%\\[$]{VERSIONED_SYMS} -dy%"`
7912                 CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
7913                 ;;
7914         (*)
7915                 AC_MSG_WARN(this system does not support versioned-symbols)
7916                 ;;
7917         esac
7918
7919         # Linux ld can selectively override scope, e.g., of symbols beginning with
7920         # "_" by first declaring some as global, and then using a wildcard to
7921         # declare the others as local.  Some other loaders cannot do this.  Check
7922         # by constructing a (very) simple shared library and inspecting its
7923         # symbols.
7924         if test "x$VERSIONED_SYMS" != "x"
7925         then
7926                 AC_MSG_CHECKING(if wildcards can be used to selectively omit symbols)
7927                 WILDCARD_SYMS=no
7928
7929                 # make sources
7930                 rm -f conftest.*
7931
7932                 cat >conftest.ver <<EOF
7933 module_1.0 {
7934 global:
7935         globalf1;
7936 local:
7937         localf1;
7938 };
7939 module_2.0 {
7940 global:
7941         globalf2;
7942 local:
7943         localf2;
7944         _*;
7945 } module_1.0;
7946 submodule_1.0 {
7947 global:
7948         subglobalf1;
7949         _ismissing;
7950 local:
7951         sublocalf1;
7952 };
7953 submodule_2.0 {
7954 global:
7955         subglobalf2;
7956 local:
7957         sublocalf2;
7958         _*;
7959 } submodule_1.0;
7960 EOF
7961                 cat >conftest.$ac_ext <<EOF
7962 #line __oline__ "configure"
7963 int     _ismissing(void) { return 1; }
7964 int     _localf1(void) { return 1; }
7965 int     _localf2(void) { return 2; }
7966 int     globalf1(void) { return 1; }
7967 int     globalf2(void) { return 2; }
7968 int     _sublocalf1(void) { return 1; }
7969 int     _sublocalf2(void) { return 2; }
7970 int     subglobalf1(void) { return 1; }
7971 int     subglobalf2(void) { return 2; }
7972 EOF
7973                 cat >conftest.mk <<EOF
7974 CC=${CC}
7975 CFLAGS=${CFLAGS}
7976 CPPFLAGS=${CPPFLAGS}
7977 LDFLAGS=${LDFLAGS}
7978 LIBS=${LIBS}
7979 VERSIONED_SYMS=${VERSIONED_SYMS}
7980 RESULTING_SYMS=conftest.ver
7981 MK_SHARED_LIB=${MK_SHARED_LIB}
7982 conftest.so: conftest.$ac_cv_objext
7983                 \$(MK_SHARED_LIB) conftest.$ac_cv_objext
7984 EOF
7985
7986                 # compile source, make library
7987                 if make -f conftest.mk 2>&AC_FD_CC >/dev/null
7988                 then
7989                         # test for missing symbol in either Data or Text section
7990                         cf_missing=`nm -P conftest.so 2>&AC_FD_CC |fgrep _ismissing | egrep '[[         ]][[DT]][[      ]]'`
7991                         test -n "$cf_missing" && WILDCARD_SYMS=yes
7992                 fi
7993                 AC_MSG_RESULT($WILDCARD_SYMS)
7994                 rm -f conftest.*
7995         fi
7996 fi
7997 AC_SUBST(RESULTING_SYMS)
7998 AC_SUBST(VERSIONED_SYMS)
7999 AC_SUBST(WILDCARD_SYMS)
8000 ])dnl
8001 dnl ---------------------------------------------------------------------------
8002 dnl CF_WITH_X11_RGB version: 1 updated: 2017/11/25 17:32:16
8003 dnl ---------------
8004 dnl Handle configure option "--with-x11-rgb", setting these shell
8005 dnl variables:
8006 dnl
8007 dnl $RGB_PATH is the option value, used for finding the X11 rgb file.
8008 dnl $no_x11_rgb is a "#" (comment) if "--without-x11-rgb" is given.
8009 dnl
8010 dnl Most Linux's use this:
8011 dnl     /usr/share/X11/rgb.txt
8012 dnl Debian uses this:
8013 dnl     /etc/X11/rgb.txt
8014 dnl DragonFlyBSD ports uses this:
8015 dnl     /usr/pkg/lib/X11/rgb.txt
8016 dnl FreeBSD ports use these:
8017 dnl     /usr/local/lib/X11/rgb.txt
8018 dnl     /usr/local/share/X11/rgb.txt
8019 dnl Mandriva has these:
8020 dnl     /usr/lib/X11/rgb.txt
8021 dnl     /usr/lib64/X11/rgb.txt
8022 dnl NetBSD has these
8023 dnl     /usr/X11R7/lib/X11/rgb.txt
8024 dnl OpenSolaris uses
8025 dnl     32-bit:
8026 dnl     /usr/X11/etc/X11/rgb.txt
8027 dnl     /usr/X11/share/X11/rgb.txt
8028 dnl     /usr/X11/lib/X11/rgb.txt
8029 dnl OSX uses
8030 dnl             /opt/local/share/X11/rgb.txt (MacPorts)
8031 dnl             /opt/X11/share/X11/rgb.txt (non-ports)
8032 dnl     64-bit:
8033 dnl     /usr/X11/etc/X11/rgb.txt
8034 dnl     /usr/X11/share/X11/rgb.txt (perhaps)
8035 dnl     /usr/X11/lib/amd64/X11/rgb.txt
8036 dnl Solaris10 uses (in this order):
8037 dnl     /usr/openwin/lib/X11/rgb.txt
8038 dnl     /usr/X11/lib/X11/rgb.txt
8039 AC_DEFUN([CF_WITH_X11_RGB],[
8040 AC_MSG_CHECKING(for X11 rgb file)
8041 AC_ARG_WITH(x11-rgb,
8042         [  --with-x11-rgb=FILE   file containing X11 rgb information (EPREFIX/lib/X11/rgb.txt)],
8043         [RGB_PATH=$withval],
8044         [RGB_PATH=auto])
8045
8046 if test "x[$]RGB_PATH" = xauto
8047 then
8048         RGB_PATH='${exec_prefix}/lib/X11/rgb.txt'
8049         for cf_path in \
8050                 /opt/local/share/X11/rgb.txt \
8051                 /opt/X11/share/X11/rgb.txt \
8052                 /usr/share/X11/rgb.txt \
8053                 /usr/X11/share/X11/rgb.txt \
8054                 /usr/X11/lib/X11/rgb.txt \
8055                 /usr/lib/X11/rgb.txt \
8056                 /etc/X11/rgb.txt \
8057                 /usr/pkg/lib/X11/rgb.txt \
8058                 /usr/X11R7/lib/X11/rgb.txt \
8059                 /usr/X11R6/lib/X11/rgb.txt \
8060                 /usr/X11R5/lib/X11/rgb.txt \
8061                 /usr/X11R4/lib/X11/rgb.txt \
8062                 /usr/local/lib/X11/rgb.txt \
8063                 /usr/local/share/X11/rgb.txt \
8064                 /usr/lib64/X11/rgb.txt
8065         do
8066                 if test -f "$cf_path" ; then
8067                         RGB_PATH="$cf_path"
8068                         break
8069                 fi
8070         done
8071 else
8072         cf_path=$RGB_PATH
8073         CF_PATH_SYNTAX(cf_path)
8074 fi
8075
8076 AC_MSG_RESULT($RGB_PATH)
8077 AC_SUBST(RGB_PATH)
8078 AC_DEFINE_UNQUOTED(RGB_PATH,"$cf_path")
8079
8080 no_x11_rgb=
8081 if test "$RGB_PATH" = no
8082 then
8083         no_x11_rgb="#"
8084 fi
8085 AC_SUBST(no_x11_rgb)
8086 ])dnl
8087 dnl ---------------------------------------------------------------------------
8088 dnl CF_XOPEN_SOURCE version: 52 updated: 2016/08/27 12:21:42
8089 dnl ---------------
8090 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
8091 dnl or adapt to the vendor's definitions to get equivalent functionality,
8092 dnl without losing the common non-POSIX features.
8093 dnl
8094 dnl Parameters:
8095 dnl     $1 is the nominal value for _XOPEN_SOURCE
8096 dnl     $2 is the nominal value for _POSIX_C_SOURCE
8097 AC_DEFUN([CF_XOPEN_SOURCE],[
8098 AC_REQUIRE([AC_CANONICAL_HOST])
8099
8100 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
8101 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
8102 cf_xopen_source=
8103
8104 case $host_os in
8105 (aix[[4-7]]*)
8106         cf_xopen_source="-D_ALL_SOURCE"
8107         ;;
8108 (msys)
8109         cf_XOPEN_SOURCE=600
8110         ;;
8111 (darwin[[0-8]].*)
8112         cf_xopen_source="-D_APPLE_C_SOURCE"
8113         ;;
8114 (darwin*)
8115         cf_xopen_source="-D_DARWIN_C_SOURCE"
8116         cf_XOPEN_SOURCE=
8117         ;;
8118 (freebsd*|dragonfly*)
8119         # 5.x headers associate
8120         #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
8121         #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
8122         cf_POSIX_C_SOURCE=200112L
8123         cf_XOPEN_SOURCE=600
8124         cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
8125         ;;
8126 (hpux11*)
8127         cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
8128         ;;
8129 (hpux*)
8130         cf_xopen_source="-D_HPUX_SOURCE"
8131         ;;
8132 (irix[[56]].*)
8133         cf_xopen_source="-D_SGI_SOURCE"
8134         cf_XOPEN_SOURCE=
8135         ;;
8136 (linux*|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin)
8137         CF_GNU_SOURCE
8138         ;;
8139 (minix*)
8140         cf_xopen_source="-D_NETBSD_SOURCE" # POSIX.1-2001 features are ifdef'd with this...
8141         ;;
8142 (mirbsd*)
8143         # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types
8144         cf_XOPEN_SOURCE=
8145         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
8146         ;;
8147 (netbsd*)
8148         cf_xopen_source="-D_NETBSD_SOURCE" # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
8149         ;;
8150 (openbsd[[4-9]]*)
8151         # setting _XOPEN_SOURCE lower than 500 breaks g++ compile with wchar.h, needed for ncursesw
8152         cf_xopen_source="-D_BSD_SOURCE"
8153         cf_XOPEN_SOURCE=600
8154         ;;
8155 (openbsd*)
8156         # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
8157         ;;
8158 (osf[[45]]*)
8159         cf_xopen_source="-D_OSF_SOURCE"
8160         ;;
8161 (nto-qnx*)
8162         cf_xopen_source="-D_QNX_SOURCE"
8163         ;;
8164 (sco*)
8165         # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
8166         ;;
8167 (solaris2.*)
8168         cf_xopen_source="-D__EXTENSIONS__"
8169         cf_cv_xopen_source=broken
8170         ;;
8171 (sysv4.2uw2.*) # Novell/SCO UnixWare 2.x (tested on 2.1.2)
8172         cf_XOPEN_SOURCE=
8173         cf_POSIX_C_SOURCE=
8174         ;;
8175 (*)
8176         CF_TRY_XOPEN_SOURCE
8177         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
8178         ;;
8179 esac
8180
8181 if test -n "$cf_xopen_source" ; then
8182         CF_ADD_CFLAGS($cf_xopen_source,true)
8183 fi
8184
8185 dnl In anything but the default case, we may have system-specific setting
8186 dnl which is still not guaranteed to provide all of the entrypoints that
8187 dnl _XOPEN_SOURCE would yield.
8188 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
8189         AC_MSG_CHECKING(if _XOPEN_SOURCE really is set)
8190         AC_TRY_COMPILE([#include <stdlib.h>],[
8191 #ifndef _XOPEN_SOURCE
8192 make an error
8193 #endif],
8194         [cf_XOPEN_SOURCE_set=yes],
8195         [cf_XOPEN_SOURCE_set=no])
8196         AC_MSG_RESULT($cf_XOPEN_SOURCE_set)
8197         if test $cf_XOPEN_SOURCE_set = yes
8198         then
8199                 AC_TRY_COMPILE([#include <stdlib.h>],[
8200 #if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
8201 make an error
8202 #endif],
8203                 [cf_XOPEN_SOURCE_set_ok=yes],
8204                 [cf_XOPEN_SOURCE_set_ok=no])
8205                 if test $cf_XOPEN_SOURCE_set_ok = no
8206                 then
8207                         AC_MSG_WARN(_XOPEN_SOURCE is lower than requested)
8208                 fi
8209         else
8210                 CF_TRY_XOPEN_SOURCE
8211         fi
8212 fi
8213 ])