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