1 dnl***************************************************************************
2 dnl Copyright (c) 2003-2010,2011 Free Software Foundation, Inc. *
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: *
12 dnl The above copyright notice and this permission notice shall be included *
13 dnl in all copies or substantial portions of the Software. *
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. *
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 *
27 dnl***************************************************************************
29 dnl $Id: aclocal.m4,v 1.50 2011/03/24 08:28:07 tom Exp $
31 dnl Author: Thomas E. Dickey
33 dnl Macros used in NCURSES test programs auto-configuration script.
35 dnl These macros are maintained separately from NCURSES. The copyright on
36 dnl this file applies to the aggregation of macros and does not affect use of
37 dnl these macros in other applications.
39 dnl See http://invisible-island.net/autoconf/ for additional information.
41 dnl ---------------------------------------------------------------------------
42 dnl ---------------------------------------------------------------------------
43 dnl CF_ADD_CFLAGS version: 10 updated: 2010/05/26 05:38:42
45 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
46 dnl The second parameter if given makes this macro verbose.
48 dnl Put any preprocessor definitions that use quoted strings in $EXTRA_CPPFLAGS,
49 dnl to simplify use of $CPPFLAGS in compiler checks, etc., that are easily
50 dnl confused by the quotes (which require backslashes to keep them usable).
51 AC_DEFUN([CF_ADD_CFLAGS],
56 cf_new_extra_cppflags=
58 for cf_add_cflags in $1
60 case $cf_fix_cppflags in
62 case $cf_add_cflags in #(vi
63 -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
64 case $cf_add_cflags in
66 cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
68 test "${cf_add_cflags}" != "${cf_tst_cflags}" \
69 && test -z "${cf_tst_cflags}" \
70 && cf_fix_cppflags=yes
72 if test $cf_fix_cppflags = yes ; then
73 cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
75 elif test "${cf_tst_cflags}" = "\"'" ; then
76 cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
85 case $cf_add_cflags in #(vi
87 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
88 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
91 cf_new_cppflags="$cf_new_cppflags $cf_add_cflags"
96 cf_new_cflags="$cf_new_cflags $cf_add_cflags"
101 cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
103 cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[[^"]]*"'\''//'`
105 test "${cf_add_cflags}" != "${cf_tst_cflags}" \
106 && test -z "${cf_tst_cflags}" \
107 && cf_fix_cppflags=no
112 if test -n "$cf_new_cflags" ; then
113 ifelse([$2],,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])
114 CFLAGS="$CFLAGS $cf_new_cflags"
117 if test -n "$cf_new_cppflags" ; then
118 ifelse([$2],,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])
119 CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
122 if test -n "$cf_new_extra_cppflags" ; then
123 ifelse([$2],,,[CF_VERBOSE(add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags)])
124 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
127 AC_SUBST(EXTRA_CPPFLAGS)
130 dnl ---------------------------------------------------------------------------
131 dnl CF_ADD_INCDIR version: 13 updated: 2010/05/26 16:44:57
133 dnl Add an include-directory to $CPPFLAGS. Don't add /usr/include, since it's
134 dnl redundant. We don't normally need to add -I/usr/local/include for gcc,
135 dnl but old versions (and some misinstalled ones) need that. To make things
136 dnl worse, gcc 3.x may give error messages if -I/usr/local/include is added to
137 dnl the include-path).
138 AC_DEFUN([CF_ADD_INCDIR],
140 if test -n "$1" ; then
141 for cf_add_incdir in $1
143 while test $cf_add_incdir != /usr/include
145 if test -d $cf_add_incdir
148 if test -n "$CFLAGS$CPPFLAGS" ; then
149 # a loop is needed to ensure we can add subdirs of existing dirs
150 for cf_test_incdir in $CFLAGS $CPPFLAGS ; do
151 if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then
152 cf_have_incdir=yes; break
157 if test "$cf_have_incdir" = no ; then
158 if test "$cf_add_incdir" = /usr/local/include ; then
161 cf_save_CPPFLAGS=$CPPFLAGS
162 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
163 AC_TRY_COMPILE([#include <stdio.h>],
166 [cf_have_incdir=yes])
167 CPPFLAGS=$cf_save_CPPFLAGS
172 if test "$cf_have_incdir" = no ; then
173 CF_VERBOSE(adding $cf_add_incdir to include-path)
174 ifelse([$2],,CPPFLAGS,[$2])="$ifelse([$2],,CPPFLAGS,[$2]) -I$cf_add_incdir"
176 cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'`
177 test "$cf_top_incdir" = "$cf_add_incdir" && break
178 cf_add_incdir="$cf_top_incdir"
187 dnl ---------------------------------------------------------------------------
188 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
190 dnl Add a library, used to enforce consistency.
192 dnl $1 = library to add, without the "-l"
193 dnl $2 = variable to update (default $LIBS)
194 AC_DEFUN([CF_ADD_LIB],[CF_ADD_LIBS(-l$1,ifelse($2,,LIBS,[$2]))])dnl
195 dnl ---------------------------------------------------------------------------
196 dnl CF_ADD_LIBDIR version: 9 updated: 2010/05/26 16:44:57
198 dnl Adds to the library-path
200 dnl Some machines have trouble with multiple -L options.
202 dnl $1 is the (list of) directory(s) to add
203 dnl $2 is the optional name of the variable to update (default LDFLAGS)
205 AC_DEFUN([CF_ADD_LIBDIR],
207 if test -n "$1" ; then
208 for cf_add_libdir in $1
210 if test $cf_add_libdir = /usr/lib ; then
212 elif test -d $cf_add_libdir
215 if test -n "$LDFLAGS$LIBS" ; then
216 # a loop is needed to ensure we can add subdirs of existing dirs
217 for cf_test_libdir in $LDFLAGS $LIBS ; do
218 if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then
219 cf_have_libdir=yes; break
223 if test "$cf_have_libdir" = no ; then
224 CF_VERBOSE(adding $cf_add_libdir to library-path)
225 ifelse([$2],,LDFLAGS,[$2])="-L$cf_add_libdir $ifelse([$2],,LDFLAGS,[$2])"
231 dnl ---------------------------------------------------------------------------
232 dnl CF_ADD_LIBS version: 1 updated: 2010/06/02 05:03:05
234 dnl Add one or more libraries, used to enforce consistency.
236 dnl $1 = libraries to add, with the "-l", etc.
237 dnl $2 = variable to update (default $LIBS)
238 AC_DEFUN([CF_ADD_LIBS],[ifelse($2,,LIBS,[$2])="$1 [$]ifelse($2,,LIBS,[$2])"])dnl
239 dnl ---------------------------------------------------------------------------
240 dnl CF_ADD_LIB_AFTER version: 2 updated: 2010/11/08 20:33:46
242 dnl Add a given library after another, e.g., following the one it satisfies a
245 dnl $1 = the first library
246 dnl $2 = its dependency
247 AC_DEFUN([CF_ADD_LIB_AFTER],[
248 CF_VERBOSE(...before $LIBS)
249 LIBS=`echo "$LIBS" | sed -e "s/[[ ]][[ ]]*/ /g" -e "s,$1 ,$1 $2 ," -e 's/ / /g'`
250 CF_VERBOSE(...after $LIBS)
252 dnl ---------------------------------------------------------------------------
253 dnl CF_ADD_SUBDIR_PATH version: 3 updated: 2010/07/03 20:58:12
254 dnl ------------------
255 dnl Append to a search-list for a nonstandard header/lib-file
256 dnl $1 = the variable to return as result
257 dnl $2 = the package name
258 dnl $3 = the subdirectory, e.g., bin, include or lib
259 dnl $4 = the directory under which we will test for subdirectories
260 dnl $5 = a directory that we do not want $4 to match
261 AC_DEFUN([CF_ADD_SUBDIR_PATH],
263 test "$4" != "$5" && \
265 ifelse([$5],NONE,,[(test $5 = NONE || test "$4" != "$5") &&]) {
266 test -n "$verbose" && echo " ... testing for $3-directories under $4"
267 test -d $4/$3 && $1="[$]$1 $4/$3"
268 test -d $4/$3/$2 && $1="[$]$1 $4/$3/$2"
269 test -d $4/$3/$2/$3 && $1="[$]$1 $4/$3/$2/$3"
270 test -d $4/$2/$3 && $1="[$]$1 $4/$2/$3"
271 test -d $4/$2/$3/$2 && $1="[$]$1 $4/$2/$3/$2"
274 dnl ---------------------------------------------------------------------------
275 dnl CF_ANSI_CC_CHECK version: 10 updated: 2010/10/23 15:52:32
277 dnl This is adapted from the macros 'fp_PROG_CC_STDC' and 'fp_C_PROTOTYPES'
278 dnl in the sharutils 4.2 distribution.
279 AC_DEFUN([CF_ANSI_CC_CHECK],
281 AC_CACHE_CHECK(for ${CC:-cc} option to accept ANSI C, cf_cv_ansi_cc,[
283 cf_save_CFLAGS="$CFLAGS"
284 cf_save_CPPFLAGS="$CPPFLAGS"
285 # Don't try gcc -ansi; that turns off useful extensions and
286 # breaks some systems' header files.
288 # Ultrix and OSF/1 -std1
289 # HP-UX -Aa -D_HPUX_SOURCE
291 # UnixWare 1.2 (cannot use -Xc, since ANSI/POSIX clashes)
292 for cf_arg in "-DCC_HAS_PROTOS" \
297 "-Aa -D_HPUX_SOURCE" \
300 CF_ADD_CFLAGS($cf_arg)
303 #ifndef CC_HAS_PROTOS
304 #if !defined(__STDC__) || (__STDC__ != 1)
309 int test (int i, double x);
310 struct s1 {int (*f) (int a);};
311 struct s2 {int (*f) (double a);};],
312 [cf_cv_ansi_cc="$cf_arg"; break])
314 CFLAGS="$cf_save_CFLAGS"
315 CPPFLAGS="$cf_save_CPPFLAGS"
318 if test "$cf_cv_ansi_cc" != "no"; then
319 if test ".$cf_cv_ansi_cc" != ".-DCC_HAS_PROTOS"; then
320 CF_ADD_CFLAGS($cf_cv_ansi_cc)
322 AC_DEFINE(CC_HAS_PROTOS)
326 dnl ---------------------------------------------------------------------------
327 dnl CF_ANSI_CC_REQD version: 4 updated: 2008/03/23 14:48:54
329 dnl For programs that must use an ANSI compiler, obtain compiler options that
330 dnl will make it recognize prototypes. We'll do preprocessor checks in other
331 dnl macros, since tools such as unproto can fake prototypes, but only part of
332 dnl the preprocessor.
333 AC_DEFUN([CF_ANSI_CC_REQD],
334 [AC_REQUIRE([CF_ANSI_CC_CHECK])
335 if test "$cf_cv_ansi_cc" = "no"; then
337 [Your compiler does not appear to recognize prototypes.
338 You have the following choices:
339 a. adjust your compiler options
340 b. get an up-to-date compiler
341 c. use a wrapper such as unproto])
344 dnl ---------------------------------------------------------------------------
345 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
347 dnl Allow user to disable a normally-on option.
348 AC_DEFUN([CF_ARG_DISABLE],
349 [CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
350 dnl ---------------------------------------------------------------------------
351 dnl CF_ARG_ENABLE version: 3 updated: 1999/03/30 17:24:31
353 dnl Allow user to enable a normally-off option.
354 AC_DEFUN([CF_ARG_ENABLE],
355 [CF_ARG_OPTION($1,[$2],[$3],[$4],no)])dnl
356 dnl ---------------------------------------------------------------------------
357 dnl CF_ARG_OPTION version: 4 updated: 2010/05/26 05:38:42
359 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
365 dnl $3 = action to perform if option is not default
366 dnl $4 = action if perform if option is default
367 dnl $5 = default option value (either 'yes' or 'no')
368 AC_DEFUN([CF_ARG_OPTION],
369 [AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
370 if test "$enableval" != "$5" ; then
372 ,[ $3]) ifelse([$4],,,[
375 fi],[enableval=$5 ifelse([$4],,,[
379 dnl ---------------------------------------------------------------------------
380 dnl CF_CHECK_CACHE version: 11 updated: 2008/03/23 14:45:59
382 dnl Check if we're accidentally using a cache from a different machine.
383 dnl Derive the system name, as a check for reusing the autoconf cache.
385 dnl If we've packaged config.guess and config.sub, run that (since it does a
386 dnl better job than uname). Normally we'll use AC_CANONICAL_HOST, but allow
387 dnl an extra parameter that we may override, e.g., for AC_CANONICAL_SYSTEM
388 dnl which is useful in cross-compiles.
390 dnl Note: we would use $ac_config_sub, but that is one of the places where
391 dnl autoconf 2.5x broke compatibility with autoconf 2.13
392 AC_DEFUN([CF_CHECK_CACHE],
394 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
395 ifelse([$1],,[AC_CANONICAL_HOST],[$1])
396 system_name="$host_os"
398 system_name="`(uname -s -r) 2>/dev/null`"
399 if test -z "$system_name" ; then
400 system_name="`(hostname) 2>/dev/null`"
403 test -n "$system_name" && AC_DEFINE_UNQUOTED(SYSTEM_NAME,"$system_name")
404 AC_CACHE_VAL(cf_cv_system_name,[cf_cv_system_name="$system_name"])
406 test -z "$system_name" && system_name="$cf_cv_system_name"
407 test -n "$cf_cv_system_name" && AC_MSG_RESULT(Configuring for $cf_cv_system_name)
409 if test ".$system_name" != ".$cf_cv_system_name" ; then
410 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
411 AC_MSG_ERROR("Please remove config.cache and try again.")
414 dnl ---------------------------------------------------------------------------
415 dnl CF_CHECK_CFLAGS version: 2 updated: 2001/12/30 19:09:58
417 dnl Conditionally add to $CFLAGS and $CPPFLAGS values which are derived from
418 dnl a build-configuration such as imake. These have the pitfall that they
419 dnl often contain compiler-specific options which we cannot use, mixed with
420 dnl preprocessor options that we usually can.
421 AC_DEFUN([CF_CHECK_CFLAGS],
423 CF_VERBOSE(checking additions to CFLAGS)
424 cf_check_cflags="$CFLAGS"
425 cf_check_cppflags="$CPPFLAGS"
426 CF_ADD_CFLAGS($1,yes)
427 if test "$cf_check_cflags" != "$CFLAGS" ; then
428 AC_TRY_LINK([#include <stdio.h>],[printf("Hello world");],,
429 [CF_VERBOSE(test-compile failed. Undoing change to \$CFLAGS)
430 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then
431 CF_VERBOSE(but keeping change to \$CPPFLAGS)
433 CFLAGS="$cf_check_flags"])
436 dnl ---------------------------------------------------------------------------
437 dnl CF_CURSES_ACS_MAP version: 6 updated: 2010/10/23 15:54:49
438 dnl -----------------
439 dnl Check for likely values of acs_map[]:
440 AC_DEFUN([CF_CURSES_ACS_MAP],
442 AC_REQUIRE([CF_NCURSES_WRAP_PREFIX])dnl
443 AC_CACHE_CHECK(for alternate character set array, cf_cv_curses_acs_map,[
444 cf_cv_curses_acs_map=unknown
445 for name in acs_map _acs_map __acs_map ${NCURSES_WRAP_PREFIX}acs_map
448 #include <${cf_cv_ncurses_header:-curses.h}>
450 $name['k'] = ACS_PLUS
451 ],[cf_cv_curses_acs_map=$name; break])
455 test "$cf_cv_curses_acs_map" != unknown && AC_DEFINE_UNQUOTED(CURSES_ACS_ARRAY,$cf_cv_curses_acs_map)
457 dnl ---------------------------------------------------------------------------
458 dnl CF_CURSES_CHECK_DATA version: 4 updated: 2011/01/15 16:39:24
459 dnl --------------------
460 dnl Check if curses.h defines the given data/variable.
461 dnl Use this after CF_NCURSES_CONFIG or CF_CURSES_CONFIG.
462 AC_DEFUN([CF_CURSES_CHECK_DATA],
464 AC_MSG_CHECKING(for data $1 declaration in ${cf_cv_ncurses_header:-curses.h})
466 AC_TRY_COMPILE(CF__CURSES_HEAD,[
468 ],cf_result=yes,cf_result=no)
469 AC_MSG_RESULT($cf_result)
471 if test $cf_result = yes ; then
472 CF_UPPER(cf_result,have_curses_data_$1)
473 AC_DEFINE_UNQUOTED($cf_result)
475 AC_MSG_CHECKING(for data $1 in library)
476 # BSD linkers insist on making weak linkage, but resolve at runtime.
477 AC_TRY_RUN(CF__CURSES_HEAD
483 ${cf_cv_main_return:-return}(foo == 0);
484 }],[cf_result=yes],[cf_result=no],[
486 AC_TRY_LINK(CF__CURSES_HEAD
490 ${cf_cv_main_return:-return}(foo == 0);
492 ],[cf_result=yes],[cf_result=no])
494 AC_MSG_RESULT($cf_result)
495 if test $cf_result = yes ; then
496 CF_UPPER(cf_result,decl_curses_data_$1)
497 AC_DEFINE_UNQUOTED($cf_result)
501 dnl ---------------------------------------------------------------------------
502 dnl CF_CURSES_CHECK_TYPE version: 3 updated: 2010/10/23 15:54:49
503 dnl --------------------
504 dnl Check if curses.h defines the given type
505 AC_DEFUN([CF_CURSES_CHECK_TYPE],
507 AC_MSG_CHECKING(for type $1 in ${cf_cv_ncurses_header:-curses.h})
509 #ifndef _XOPEN_SOURCE_EXTENDED
510 #define _XOPEN_SOURCE_EXTENDED
512 #include <${cf_cv_ncurses_header:-curses.h}>],[
514 ],cf_result=yes,cf_result=no)
515 AC_MSG_RESULT($cf_result)
516 if test $cf_result = yes ; then
517 CF_UPPER(cf_result,have_type_$1)
518 AC_DEFINE_UNQUOTED($cf_result)
520 AC_DEFINE_UNQUOTED($1,$2)
523 dnl ---------------------------------------------------------------------------
524 dnl CF_CURSES_CONFIG version: 2 updated: 2006/10/29 11:06:27
526 dnl Tie together the configure-script macros for curses. It may be ncurses,
527 dnl but unless asked, we do not make a special search for ncurses. However,
528 dnl still check for the ncurses version number, for use in other macros.
529 AC_DEFUN([CF_CURSES_CONFIG],
535 dnl ---------------------------------------------------------------------------
536 dnl CF_CURSES_CPPFLAGS version: 10 updated: 2009/01/06 19:34:11
537 dnl ------------------
538 dnl Look for the curses headers.
539 AC_DEFUN([CF_CURSES_CPPFLAGS],[
541 AC_CACHE_CHECK(for extra include directories,cf_cv_curses_incdir,[
542 cf_cv_curses_incdir=no
543 case $host_os in #(vi
545 test -d /usr/include/curses_colr && \
546 cf_cv_curses_incdir="-I/usr/include/curses_colr"
549 test -d /usr/5lib && \
550 test -d /usr/5include && \
551 cf_cv_curses_incdir="-I/usr/5include"
555 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir"
560 dnl ---------------------------------------------------------------------------
561 dnl CF_CURSES_FUNCS version: 15 updated: 2010/10/23 15:52:32
563 dnl Curses-functions are a little complicated, since a lot of them are macros.
564 AC_DEFUN([CF_CURSES_FUNCS],
566 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
567 AC_REQUIRE([CF_XOPEN_CURSES])
568 AC_REQUIRE([CF_CURSES_TERM_H])
571 CF_UPPER(cf_tr_func,$cf_func)
572 AC_MSG_CHECKING(for ${cf_func})
573 CF_MSG_LOG(${cf_func})
574 AC_CACHE_VAL(cf_cv_func_$cf_func,[
575 eval cf_result='$ac_cv_func_'$cf_func
576 if test ".$cf_result" != ".no"; then
577 AC_TRY_LINK(CF__CURSES_HEAD,
580 long foo = (long)(&${cf_func});
581 ${cf_cv_main_return:-return}(foo == 0);
587 eval 'cf_cv_func_'$cf_func'=$cf_result'
589 # use the computed/retrieved cache-value:
590 eval 'cf_result=$cf_cv_func_'$cf_func
591 AC_MSG_RESULT($cf_result)
592 if test $cf_result != no; then
593 AC_DEFINE_UNQUOTED(HAVE_${cf_tr_func})
597 dnl ---------------------------------------------------------------------------
598 dnl CF_CURSES_HEADER version: 2 updated: 2010/04/28 06:02:16
600 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
601 dnl variations of ncurses' installs.
603 dnl $1 = ncurses when looking for ncurses, or is empty
604 AC_DEFUN([CF_CURSES_HEADER],[
605 AC_CACHE_CHECK(if we have identified curses headers,cf_cv_ncurses_header,[
606 cf_cv_ncurses_header=none
607 for cf_header in ifelse($1,,,[ \
611 ncurses.h ifelse($1,,[ncurses/curses.h ncurses/ncurses.h])
613 AC_TRY_COMPILE([#include <${cf_header}>],
614 [initscr(); tgoto("?", 0,0)],
615 [cf_cv_ncurses_header=$cf_header; break],[])
619 if test "$cf_cv_ncurses_header" = none ; then
620 AC_MSG_ERROR(No curses header-files found)
623 # cheat, to get the right #define's for HAVE_NCURSES_H, etc.
624 AC_CHECK_HEADERS($cf_cv_ncurses_header)
626 dnl ---------------------------------------------------------------------------
627 dnl CF_CURSES_LIBS version: 33 updated: 2011/03/06 12:37:18
629 dnl Look for the curses libraries. Older curses implementations may require
630 dnl termcap/termlib to be linked as well. Call CF_CURSES_CPPFLAGS first.
631 AC_DEFUN([CF_CURSES_LIBS],[
633 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
634 AC_MSG_CHECKING(if we have identified curses libraries)
635 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
636 [initscr(); tgoto("?", 0,0)],
639 AC_MSG_RESULT($cf_result)
641 if test "$cf_result" = no ; then
642 case $host_os in #(vi
644 AC_CHECK_LIB(mytinfo,tgoto,[CF_ADD_LIBS(-lmytinfo)])
647 AC_CHECK_LIB(cur_colr,initscr,[
648 CF_ADD_LIBS(-lcur_colr)
649 ac_cv_func_initscr=yes
651 AC_CHECK_LIB(Hcurses,initscr,[
652 # HP's header uses __HP_CURSES, but user claims _HP_CURSES.
653 CF_ADD_LIBS(-lHcurses)
654 CPPFLAGS="$CPPFLAGS -D__HP_CURSES -D_HP_CURSES"
655 ac_cv_func_initscr=yes
659 case `arch 2>/dev/null` in
663 CF_ADD_LIBDIR(/lib64)
674 if test -d /usr/5lib ; then
675 CF_ADD_LIBDIR(/usr/5lib)
676 CF_ADD_LIBS(-lcurses -ltermcap)
678 ac_cv_func_initscr=yes
682 if test ".$ac_cv_func_initscr" != .yes ; then
687 if test ".${cf_cv_ncurses_version:-no}" != .no
689 cf_check_list="ncurses curses cursesX"
691 cf_check_list="cursesX curses ncurses"
694 # Check for library containing tgoto. Do this before curses library
695 # because it may be needed to link the test-case for initscr.
696 AC_CHECK_FUNC(tgoto,[cf_term_lib=predefined],[
697 for cf_term_lib in $cf_check_list termcap termlib unknown
699 AC_CHECK_LIB($cf_term_lib,tgoto,[break])
703 # Check for library containing initscr
704 test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS"
705 for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown
707 AC_CHECK_LIB($cf_curs_lib,initscr,[break])
709 test $cf_curs_lib = unknown && AC_MSG_ERROR(no curses library found)
711 LIBS="-l$cf_curs_lib $cf_save_LIBS"
712 if test "$cf_term_lib" = unknown ; then
713 AC_MSG_CHECKING(if we can link with $cf_curs_lib library)
714 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
718 AC_MSG_RESULT($cf_result)
719 test $cf_result = no && AC_MSG_ERROR(Cannot link curses library)
720 elif test "$cf_curs_lib" = "$cf_term_lib" ; then
722 elif test "$cf_term_lib" != predefined ; then
723 AC_MSG_CHECKING(if we need both $cf_curs_lib and $cf_term_lib libraries)
724 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
725 [initscr(); tgoto((char *)0, 0, 0);],
728 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
729 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
734 AC_MSG_RESULT($cf_result)
740 dnl ---------------------------------------------------------------------------
741 dnl CF_CURSES_TERM_H version: 8 updated: 2010/10/23 15:54:49
743 dnl SVr4 curses should have term.h as well (where it puts the definitions of
744 dnl the low-level interface). This may not be true in old/broken implementations,
745 dnl as well as in misconfigured systems (e.g., gcc configured for Solaris 2.4
746 dnl running with Solaris 2.5.1).
747 AC_DEFUN([CF_CURSES_TERM_H],
749 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
751 AC_CACHE_CHECK(for term.h, cf_cv_term_header,[
753 # If we found <ncurses/curses.h>, look for <ncurses/term.h>, but always look
754 # for <term.h> if we do not find the variant.
756 `echo ${cf_cv_ncurses_header:-curses.h} | sed -e 's%/.*%/%'`term.h \
760 #include <${cf_cv_ncurses_header:-curses.h}>
761 #include <${cf_header}>],
763 [cf_cv_term_header=$cf_header
765 [cf_cv_term_header=no])
768 case $cf_cv_term_header in #(vi
770 # If curses is ncurses, some packagers still mess it up by trying to make
771 # us use GNU termcap. This handles the most common case.
772 for cf_header in ncurses/term.h ncursesw/term.h
775 #include <${cf_cv_ncurses_header:-curses.h}>
776 #ifdef NCURSES_VERSION
777 #include <${cf_header}>
782 [cf_cv_term_header=$cf_header
784 [cf_cv_term_header=no])
790 case $cf_cv_term_header in #(vi
792 AC_DEFINE(HAVE_TERM_H)
795 AC_DEFINE(HAVE_NCURSES_TERM_H)
798 AC_DEFINE(HAVE_NCURSESW_TERM_H)
802 dnl ---------------------------------------------------------------------------
803 dnl CF_CURSES_WACS_MAP version: 5 updated: 2011/01/15 11:28:59
804 dnl ------------------
805 dnl Check for likely values of wacs_map[].
806 AC_DEFUN([CF_CURSES_WACS_MAP],
808 AC_CACHE_CHECK(for wide alternate character set array, cf_cv_curses_wacs_map,[
809 cf_cv_curses_wacs_map=unknown
810 for name in wacs_map _wacs_map __wacs_map _nc_wacs _wacs_char
813 #ifndef _XOPEN_SOURCE_EXTENDED
814 #define _XOPEN_SOURCE_EXTENDED
816 #include <${cf_cv_ncurses_header:-curses.h}>],
817 [void *foo = &($name['k'])],
818 [cf_cv_curses_wacs_map=$name
822 test "$cf_cv_curses_wacs_map" != unknown && AC_DEFINE_UNQUOTED(CURSES_WACS_ARRAY,$cf_cv_curses_wacs_map)
824 dnl ---------------------------------------------------------------------------
825 dnl CF_CURSES_WACS_SYMBOLS version: 1 updated: 2011/01/15 11:28:59
826 dnl ----------------------
827 dnl Do a check to see if the WACS_xxx constants are defined compatibly with
828 dnl X/Open Curses. In particular, NetBSD's implementation of the WACS_xxx
829 dnl constants is broken since those constants do not point to cchar_t's.
830 AC_DEFUN([CF_CURSES_WACS_SYMBOLS],
832 AC_REQUIRE([CF_CURSES_WACS_MAP])
834 AC_CACHE_CHECK(for wide alternate character constants, cf_cv_curses_wacs_symbols,[
835 cf_cv_curses_wacs_symbols=no
836 if test "$cf_cv_curses_wacs_map" != unknown
839 #ifndef _XOPEN_SOURCE_EXTENDED
840 #define _XOPEN_SOURCE_EXTENDED
842 #include <${cf_cv_ncurses_header:-curses.h}>],
843 [cchar_t *foo = WACS_PLUS;
844 $cf_cv_curses_wacs_map['k'] = *WACS_PLUS],
845 [cf_cv_curses_wacs_symbols=yes])
848 #ifndef _XOPEN_SOURCE_EXTENDED
849 #define _XOPEN_SOURCE_EXTENDED
851 #include <${cf_cv_ncurses_header:-curses.h}>],
852 [cchar_t *foo = WACS_PLUS],
853 [cf_cv_curses_wacs_symbols=yes])
857 test "$cf_cv_curses_wacs_symbols" != no && AC_DEFINE(CURSES_WACS_SYMBOLS)
859 dnl ---------------------------------------------------------------------------
860 dnl CF_DIRNAME version: 4 updated: 2002/12/21 19:25:52
862 dnl "dirname" is not portable, so we fake it with a shell script.
863 AC_DEFUN([CF_DIRNAME],[$1=`echo $2 | sed -e 's%/[[^/]]*$%%'`])dnl
864 dnl ---------------------------------------------------------------------------
865 dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57
867 dnl You can always use "make -n" to see the actual options, but it's hard to
868 dnl pick out/analyze warning messages when the compile-line is long.
871 dnl ECHO_LT - symbol to control if libtool is verbose
872 dnl ECHO_LD - symbol to prefix "cc -o" lines
873 dnl RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
874 dnl SHOW_CC - symbol to put before explicit "cc -c" lines
875 dnl ECHO_CC - symbol to put before any "cc" line
877 AC_DEFUN([CF_DISABLE_ECHO],[
878 AC_MSG_CHECKING(if you want to see long compiling messages)
880 [ --disable-echo display "compiling" commands],
883 ECHO_LD='@echo linking [$]@;'
884 RULE_CC='@echo compiling [$]<'
885 SHOW_CC='@echo compiling [$]@'
894 AC_MSG_RESULT($enableval)
901 dnl ---------------------------------------------------------------------------
902 dnl CF_DISABLE_LEAKS version: 6 updated: 2010/07/23 04:14:32
904 dnl Combine no-leak checks with the libraries or tools that are used for the
906 AC_DEFUN([CF_DISABLE_LEAKS],[
908 AC_REQUIRE([CF_WITH_DMALLOC])
909 AC_REQUIRE([CF_WITH_DBMALLOC])
910 AC_REQUIRE([CF_WITH_VALGRIND])
912 AC_MSG_CHECKING(if you want to perform memory-leak testing)
914 [ --disable-leaks test: free permanent memory, analyze leaks],
915 [if test "x$enableval" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi],
916 : ${with_no_leaks:=no})
917 AC_MSG_RESULT($with_no_leaks)
919 if test "$with_no_leaks" = yes ; then
921 AC_DEFINE(YY_NO_LEAKS)
924 dnl ---------------------------------------------------------------------------
925 dnl CF_ENABLE_WARNINGS version: 4 updated: 2009/07/26 17:53:03
926 dnl ------------------
927 dnl Configure-option to enable gcc warnings
928 AC_DEFUN([CF_ENABLE_WARNINGS],[
929 if ( test "$GCC" = yes || test "$GXX" = yes )
931 AC_MSG_CHECKING(if you want to turn on gcc warnings)
932 CF_ARG_ENABLE(warnings,
933 [ --enable-warnings test: turn on gcc compiler warnings],
936 AC_MSG_RESULT($with_warnings)
937 if test "$with_warnings" = "yes"
944 dnl ---------------------------------------------------------------------------
945 dnl CF_FIND_LIBRARY version: 9 updated: 2008/03/23 14:48:54
947 dnl Look for a non-standard library, given parameters for AC_TRY_LINK. We
948 dnl prefer a standard location, and use -L options only if we do not find the
949 dnl library in the standard library location(s).
950 dnl $1 = library name
951 dnl $2 = library class, usually the same as library name
953 dnl $4 = code fragment to compile/link
954 dnl $5 = corresponding function-name
955 dnl $6 = flag, nonnull if failure should not cause an error-exit
957 dnl Sets the variable "$cf_libdir" as a side-effect, so we can see if we had
958 dnl to use a -L option.
959 AC_DEFUN([CF_FIND_LIBRARY],
961 eval 'cf_cv_have_lib_'$1'=no'
964 eval 'cf_cv_have_lib_'$1'=yes',[
966 AC_MSG_CHECKING(for $5 in -l$1)
968 AC_TRY_LINK([$3],[$4],
970 eval 'cf_cv_have_lib_'$1'=yes'
973 CF_LIBRARY_PATH(cf_search,$2)
974 for cf_libdir in $cf_search
976 AC_MSG_CHECKING(for -l$1 in $cf_libdir)
977 LIBS="-L$cf_libdir -l$1 $cf_save_LIBS"
978 AC_TRY_LINK([$3],[$4],
980 eval 'cf_cv_have_lib_'$1'=yes'
983 LIBS="$cf_save_LIBS"])
987 eval 'cf_found_library=[$]cf_cv_have_lib_'$1
989 if test $cf_found_library = no ; then
990 AC_MSG_ERROR(Cannot link $1 library)
994 dnl ---------------------------------------------------------------------------
995 dnl CF_FIND_LINKAGE version: 19 updated: 2010/05/29 16:31:02
997 dnl Find a library (specifically the linkage used in the code fragment),
998 dnl searching for it if it is not already in the library path.
999 dnl See also CF_ADD_SEARCHPATH.
1001 dnl Parameters (4-on are optional):
1002 dnl $1 = headers for library entrypoint
1003 dnl $2 = code fragment for library entrypoint
1004 dnl $3 = the library name without the "-l" option or ".so" suffix.
1005 dnl $4 = action to perform if successful (default: update CPPFLAGS, etc)
1006 dnl $5 = action to perform if not successful
1007 dnl $6 = module name, if not the same as the library name
1008 dnl $7 = extra libraries
1010 dnl Sets these variables:
1011 dnl $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
1012 dnl $cf_cv_header_path_$3 - include-directory if needed
1013 dnl $cf_cv_library_path_$3 - library-directory if needed
1014 dnl $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
1015 AC_DEFUN([CF_FIND_LINKAGE],[
1017 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
1018 # will be set on completion of the AC_TRY_LINK below.
1019 cf_cv_header_path_$3=
1020 cf_cv_library_path_$3=
1022 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
1024 cf_save_LIBS="$LIBS"
1026 AC_TRY_LINK([$1],[$2],[
1027 cf_cv_find_linkage_$3=yes
1028 cf_cv_header_path_$3=/usr/include
1029 cf_cv_library_path_$3=/usr/lib
1032 LIBS="-l$3 $7 $cf_save_LIBS"
1034 AC_TRY_LINK([$1],[$2],[
1035 cf_cv_find_linkage_$3=yes
1036 cf_cv_header_path_$3=/usr/include
1037 cf_cv_library_path_$3=/usr/lib
1038 cf_cv_library_file_$3="-l$3"
1040 cf_cv_find_linkage_$3=no
1041 LIBS="$cf_save_LIBS"
1043 CF_VERBOSE(find linkage for $3 library)
1044 CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
1046 cf_save_CPPFLAGS="$CPPFLAGS"
1047 cf_test_CPPFLAGS="$CPPFLAGS"
1049 CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
1050 for cf_cv_header_path_$3 in $cf_search
1052 if test -d $cf_cv_header_path_$3 ; then
1053 CF_VERBOSE(... testing $cf_cv_header_path_$3)
1054 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_$3"
1055 AC_TRY_COMPILE([$1],[$2],[
1056 CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
1057 cf_cv_find_linkage_$3=maybe
1058 cf_test_CPPFLAGS="$CPPFLAGS"
1060 CPPFLAGS="$cf_save_CPPFLAGS"
1065 if test "$cf_cv_find_linkage_$3" = maybe ; then
1067 CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
1069 cf_save_LIBS="$LIBS"
1070 cf_save_LDFLAGS="$LDFLAGS"
1073 CPPFLAGS="$cf_test_CPPFLAGS"
1074 LIBS="-l$3 $7 $cf_save_LIBS"
1075 AC_TRY_LINK([$1],[$2],[
1076 CF_VERBOSE(... found $3 library in system)
1077 cf_cv_find_linkage_$3=yes])
1078 CPPFLAGS="$cf_save_CPPFLAGS"
1079 LIBS="$cf_save_LIBS"
1082 if test "$cf_cv_find_linkage_$3" != yes ; then
1083 CF_LIBRARY_PATH(cf_search,$3)
1084 for cf_cv_library_path_$3 in $cf_search
1086 if test -d $cf_cv_library_path_$3 ; then
1087 CF_VERBOSE(... testing $cf_cv_library_path_$3)
1088 CPPFLAGS="$cf_test_CPPFLAGS"
1089 LIBS="-l$3 $7 $cf_save_LIBS"
1090 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
1091 AC_TRY_LINK([$1],[$2],[
1092 CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
1093 cf_cv_find_linkage_$3=yes
1094 cf_cv_library_file_$3="-l$3"
1096 CPPFLAGS="$cf_save_CPPFLAGS"
1097 LIBS="$cf_save_LIBS"
1098 LDFLAGS="$cf_save_LDFLAGS"
1102 CPPFLAGS="$cf_save_CPPFLAGS"
1103 LDFLAGS="$cf_save_LDFLAGS"
1107 cf_cv_find_linkage_$3=no
1112 LIBS="$cf_save_LIBS"
1114 if test "$cf_cv_find_linkage_$3" = yes ; then
1116 CF_ADD_INCDIR($cf_cv_header_path_$3)
1117 CF_ADD_LIBDIR($cf_cv_library_path_$3)
1121 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
1124 dnl ---------------------------------------------------------------------------
1125 dnl CF_FUNC_CURSES_VERSION version: 5 updated: 2010/10/23 15:54:49
1126 dnl ----------------------
1127 dnl Solaris has a data item 'curses_version', which confuses AC_CHECK_FUNCS.
1128 dnl It's a character string "SVR4", not documented.
1129 AC_DEFUN([CF_FUNC_CURSES_VERSION],
1131 AC_CACHE_CHECK(for function curses_version, cf_cv_func_curses_version,[
1133 #include <${cf_cv_ncurses_header:-curses.h}>
1137 sprintf(temp, "%s\n", curses_version());
1138 ${cf_cv_main_return:-return}(0);
1140 ,[cf_cv_func_curses_version=yes]
1141 ,[cf_cv_func_curses_version=no]
1142 ,[cf_cv_func_curses_version=unknown])
1144 test "$cf_cv_func_curses_version" = yes && AC_DEFINE(HAVE_CURSES_VERSION)
1146 dnl ---------------------------------------------------------------------------
1147 dnl CF_GCC_ATTRIBUTES version: 14 updated: 2010/10/23 15:52:32
1148 dnl -----------------
1149 dnl Test for availability of useful gcc __attribute__ directives to quiet
1150 dnl compiler warnings. Though useful, not all are supported -- and contrary
1151 dnl to documentation, unrecognized directives cause older compilers to barf.
1152 AC_DEFUN([CF_GCC_ATTRIBUTES],
1154 if test "$GCC" = yes
1156 cat > conftest.i <<EOF
1158 #define GCC_PRINTF 0
1163 #ifndef GCC_NORETURN
1164 #define GCC_NORETURN /* nothing */
1167 #define GCC_UNUSED /* nothing */
1170 if test "$GCC" = yes
1172 AC_CHECKING([for $CC __attribute__ directives])
1173 cat > conftest.$ac_ext <<EOF
1174 #line __oline__ "${as_me:-configure}"
1175 #include "confdefs.h"
1176 #include "conftest.h"
1177 #include "conftest.i"
1179 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
1181 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
1184 #define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
1186 #define GCC_SCANFLIKE(fmt,var) /*nothing*/
1188 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
1189 extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
1190 extern void foo(void) GCC_NORETURN;
1191 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { return 0; }
1193 cf_printf_attribute=no
1194 cf_scanf_attribute=no
1195 for cf_attribute in scanf printf unused noreturn
1197 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
1198 cf_directive="__attribute__(($cf_attribute))"
1199 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
1201 case $cf_attribute in #(vi
1203 cf_printf_attribute=yes
1204 cat >conftest.h <<EOF
1205 #define GCC_$cf_ATTRIBUTE 1
1209 cf_scanf_attribute=yes
1210 cat >conftest.h <<EOF
1211 #define GCC_$cf_ATTRIBUTE 1
1215 cat >conftest.h <<EOF
1216 #define GCC_$cf_ATTRIBUTE $cf_directive
1221 if AC_TRY_EVAL(ac_compile); then
1222 test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
1223 cat conftest.h >>confdefs.h
1224 case $cf_attribute in #(vi
1226 if test "$cf_printf_attribute" = no ; then
1227 cat >>confdefs.h <<EOF
1228 #define GCC_PRINTFLIKE(fmt,var) /* nothing */
1231 cat >>confdefs.h <<EOF
1232 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
1237 if test "$cf_scanf_attribute" = no ; then
1238 cat >>confdefs.h <<EOF
1239 #define GCC_SCANFLIKE(fmt,var) /* nothing */
1242 cat >>confdefs.h <<EOF
1243 #define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
1251 fgrep define conftest.i >>confdefs.h
1256 dnl ---------------------------------------------------------------------------
1257 dnl CF_GCC_VERSION version: 5 updated: 2010/04/24 11:02:31
1259 dnl Find version of gcc
1260 AC_DEFUN([CF_GCC_VERSION],[
1261 AC_REQUIRE([AC_PROG_CC])
1263 if test "$GCC" = yes ; then
1264 AC_MSG_CHECKING(version of $CC)
1265 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
1266 test -z "$GCC_VERSION" && GCC_VERSION=unknown
1267 AC_MSG_RESULT($GCC_VERSION)
1270 dnl ---------------------------------------------------------------------------
1271 dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
1273 dnl Check if the compiler supports useful warning options. There's a few that
1274 dnl we don't use, simply because they're too noisy:
1276 dnl -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
1277 dnl -Wredundant-decls (system headers make this too noisy)
1278 dnl -Wtraditional (combines too many unrelated messages, only a few useful)
1279 dnl -Wwrite-strings (too noisy, but should review occasionally). This
1280 dnl is enabled for ncurses using "--enable-const".
1284 dnl $1 is an optional list of gcc warning flags that a particular
1285 dnl application might want to use, e.g., "no-unused" for
1288 dnl If $with_ext_const is "yes", add a check for -Wwrite-strings
1290 AC_DEFUN([CF_GCC_WARNINGS],
1292 AC_REQUIRE([CF_GCC_VERSION])
1293 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
1295 cat > conftest.$ac_ext <<EOF
1296 #line __oline__ "${as_me:-configure}"
1297 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
1300 if test "$INTEL_COMPILER" = yes
1302 # The "-wdXXX" options suppress warnings:
1303 # remark #1419: external declaration in primary source file
1304 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
1305 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
1306 # remark #193: zero used for undefined preprocessing identifier
1307 # remark #593: variable "curs_sb_left_arrow" was set but never used
1308 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
1309 # remark #869: parameter "tw" was never referenced
1310 # remark #981: operands are evaluated in unspecified order
1311 # warning #279: controlling expression is constant
1313 AC_CHECKING([for $CC warning options])
1314 cf_save_CFLAGS="$CFLAGS"
1315 EXTRA_CFLAGS="-Wall"
1327 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1328 if AC_TRY_EVAL(ac_compile); then
1329 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1330 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1333 CFLAGS="$cf_save_CFLAGS"
1335 elif test "$GCC" = yes
1337 AC_CHECKING([for $CC warning options])
1338 cf_save_CFLAGS="$CFLAGS"
1341 test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
1342 for cf_opt in W Wall \
1343 Wbad-function-cast \
1347 Wmissing-declarations \
1348 Wmissing-prototypes \
1352 Wstrict-prototypes \
1353 Wundef $cf_warn_CONST $1
1355 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1356 if AC_TRY_EVAL(ac_compile); then
1357 test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1358 case $cf_opt in #(vi
1360 CPPFLAGS="$CPPFLAGS -DXTSTRINGDEFINES"
1363 case $GCC_VERSION in
1365 CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
1370 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1373 CFLAGS="$cf_save_CFLAGS"
1377 AC_SUBST(EXTRA_CFLAGS)
1379 dnl ---------------------------------------------------------------------------
1380 dnl CF_GNU_SOURCE version: 6 updated: 2005/07/09 13:23:07
1382 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
1383 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend. This is a defect
1384 dnl (or misfeature) of glibc2, which breaks portability of many applications,
1385 dnl since it is interwoven with GNU extensions.
1387 dnl Well, yes we could work around it...
1388 AC_DEFUN([CF_GNU_SOURCE],
1390 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
1391 AC_TRY_COMPILE([#include <sys/types.h>],[
1392 #ifndef _XOPEN_SOURCE
1395 [cf_cv_gnu_source=no],
1396 [cf_save="$CPPFLAGS"
1397 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
1398 AC_TRY_COMPILE([#include <sys/types.h>],[
1399 #ifdef _XOPEN_SOURCE
1402 [cf_cv_gnu_source=no],
1403 [cf_cv_gnu_source=yes])
1407 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
1409 dnl ---------------------------------------------------------------------------
1410 dnl CF_HEADER_PATH version: 12 updated: 2010/05/05 05:22:40
1412 dnl Construct a search-list of directories for a nonstandard header-file
1415 dnl $1 = the variable to return as result
1416 dnl $2 = the package name
1417 AC_DEFUN([CF_HEADER_PATH],
1421 # collect the current set of include-directories from compiler flags
1422 cf_header_path_list=""
1423 if test -n "${CFLAGS}${CPPFLAGS}" ; then
1424 for cf_header_path in $CPPFLAGS $CFLAGS
1426 case $cf_header_path in #(vi
1428 cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
1429 CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
1430 cf_header_path_list="$cf_header_path_list [$]$1"
1436 # add the variations for the package we are looking for
1437 CF_SUBDIR_PATH($1,$2,include)
1439 test "$includedir" != NONE && \
1440 test "$includedir" != "/usr/include" && \
1441 test -d "$includedir" && {
1442 test -d $includedir && $1="[$]$1 $includedir"
1443 test -d $includedir/$2 && $1="[$]$1 $includedir/$2"
1446 test "$oldincludedir" != NONE && \
1447 test "$oldincludedir" != "/usr/include" && \
1448 test -d "$oldincludedir" && {
1449 test -d $oldincludedir && $1="[$]$1 $oldincludedir"
1450 test -d $oldincludedir/$2 && $1="[$]$1 $oldincludedir/$2"
1453 $1="[$]$1 $cf_header_path_list"
1455 dnl ---------------------------------------------------------------------------
1456 dnl CF_INHERIT_SCRIPT version: 2 updated: 2003/03/01 23:50:42
1457 dnl -----------------
1458 dnl If we do not have a given script, look for it in the parent directory.
1459 AC_DEFUN([CF_INHERIT_SCRIPT],
1461 test -f $1 || ( test -f ../$1 && cp ../$1 ./ )
1463 dnl ---------------------------------------------------------------------------
1464 dnl CF_INTEL_COMPILER version: 4 updated: 2010/05/26 05:38:42
1465 dnl -----------------
1466 dnl Check if the given compiler is really the Intel compiler for Linux. It
1467 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
1468 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
1470 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
1471 dnl ensure that it is not mistaken for gcc/g++. It is normally invoked from
1472 dnl the wrappers for gcc and g++ warnings.
1474 dnl $1 = GCC (default) or GXX
1475 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
1476 dnl $3 = CFLAGS (default) or CXXFLAGS
1477 AC_DEFUN([CF_INTEL_COMPILER],[
1478 ifelse([$2],,INTEL_COMPILER,[$2])=no
1480 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
1483 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
1484 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
1485 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
1487 #ifdef __INTEL_COMPILER
1491 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
1492 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
1494 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
1495 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
1500 dnl ---------------------------------------------------------------------------
1501 dnl CF_LIBRARY_PATH version: 9 updated: 2010/03/28 12:52:50
1503 dnl Construct a search-list of directories for a nonstandard library-file
1506 dnl $1 = the variable to return as result
1507 dnl $2 = the package name
1508 AC_DEFUN([CF_LIBRARY_PATH],
1511 cf_library_path_list=""
1512 if test -n "${LDFLAGS}${LIBS}" ; then
1513 for cf_library_path in $LDFLAGS $LIBS
1515 case $cf_library_path in #(vi
1517 cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
1518 CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
1519 cf_library_path_list="$cf_library_path_list [$]$1"
1525 CF_SUBDIR_PATH($1,$2,lib)
1527 $1="$cf_library_path_list [$]$1"
1529 dnl ---------------------------------------------------------------------------
1530 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
1532 dnl Generate tags/TAGS targets for makefiles. Do not generate TAGS if we have
1533 dnl a monocase filesystem.
1534 AC_DEFUN([CF_MAKE_TAGS],[
1535 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
1537 AC_CHECK_PROGS(CTAGS, exctags ctags)
1538 AC_CHECK_PROGS(ETAGS, exetags etags)
1540 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
1542 if test "$cf_cv_mixedcase" = yes ; then
1543 AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
1548 if test "$MAKE_UPPER_TAGS" = yes ; then
1554 if test "$MAKE_LOWER_TAGS" = yes ; then
1563 AC_SUBST(MAKE_UPPER_TAGS)
1564 AC_SUBST(MAKE_LOWER_TAGS)
1566 dnl ---------------------------------------------------------------------------
1567 dnl CF_MATH_LIB version: 8 updated: 2010/05/29 16:31:02
1569 dnl Checks for libraries. At least one UNIX system, Apple Macintosh
1570 dnl Rhapsody 5.5, does not have -lm. We cannot use the simpler
1571 dnl AC_CHECK_LIB(m,sin), because that fails for C++.
1572 AC_DEFUN([CF_MATH_LIB],
1574 AC_CACHE_CHECK(if -lm needed for math functions,
1580 [double x = rand(); printf("result = %g\n", ]ifelse([$2],,sin(x),$2)[)],
1581 [cf_cv_need_libm=no],
1582 [cf_cv_need_libm=yes])])
1583 if test "$cf_cv_need_libm" = yes
1590 dnl ---------------------------------------------------------------------------
1591 dnl CF_MIN_GETCCHAR version: 3 updated: 2010/10/23 15:54:49
1594 dnl Check whether getcchar's return value counts the trailing null in a wchar_t
1595 dnl string, or not. X/Open says it does, but Tru64 and Solaris do not do this.
1596 AC_DEFUN([CF_MIN_GETCCHAR],[
1597 AC_CACHE_CHECK(if getcchar counts trailing null,cf_cv_min_getcchar,[
1601 #include <${cf_cv_ncurses_header:-curses.h}>
1609 setcchar(temp, data, 0, 0, (void *)0);
1610 count = getcchar(temp, (wchar_t *)0, (attr_t *)0, (short *)0, (void *)0);
1611 ${cf_cv_main_return:-return}(count != 0);
1613 [cf_cv_min_getcchar=no],
1614 [cf_cv_min_getcchar=yes],
1615 [cf_cv_min_getcchar=yes])
1617 if test "$cf_cv_min_getcchar" = yes ; then
1618 AC_DEFINE(MIN_GETCCHAR,1)
1621 dnl ---------------------------------------------------------------------------
1622 dnl CF_MIXEDCASE_FILENAMES version: 3 updated: 2003/09/20 17:07:55
1623 dnl ----------------------
1624 dnl Check if the file-system supports mixed-case filenames. If we're able to
1625 dnl create a lowercase name and see it as uppercase, it doesn't support that.
1626 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
1628 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
1629 if test "$cross_compiling" = yes ; then
1630 case $target_alias in #(vi
1631 *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-mingw32*|*-uwin*) #(vi
1639 rm -f conftest CONFTEST
1641 if test -f CONFTEST ; then
1646 rm -f conftest CONFTEST
1649 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES)
1651 dnl ---------------------------------------------------------------------------
1652 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
1654 dnl Write a debug message to config.log, along with the line number in the
1655 dnl configure script.
1656 AC_DEFUN([CF_MSG_LOG],[
1657 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
1659 dnl ---------------------------------------------------------------------------
1660 dnl CF_NCURSES_CC_CHECK version: 4 updated: 2007/07/29 10:39:05
1661 dnl -------------------
1662 dnl Check if we can compile with ncurses' header file
1663 dnl $1 is the cache variable to set
1664 dnl $2 is the header-file to include
1665 dnl $3 is the root name (ncurses or ncursesw)
1666 AC_DEFUN([CF_NCURSES_CC_CHECK],[
1668 ]ifelse($3,ncursesw,[
1669 #define _XOPEN_SOURCE_EXTENDED
1670 #undef HAVE_LIBUTF8_H /* in case we used CF_UTF8_LIB */
1671 #define HAVE_LIBUTF8_H /* to force ncurses' header file to use cchar_t */
1674 #ifdef NCURSES_VERSION
1675 ]ifelse($3,ncursesw,[
1680 printf("%s\n", NCURSES_VERSION);
1692 dnl ---------------------------------------------------------------------------
1693 dnl CF_NCURSES_CONFIG version: 8 updated: 2010/07/08 05:17:30
1694 dnl -----------------
1695 dnl Tie together the configure-script macros for ncurses.
1696 dnl Prefer the "-config" script from ncurses 6.x, to simplify analysis.
1697 dnl Allow that to be overridden using the $NCURSES_CONFIG environment variable.
1699 dnl $1 is the root library name (default: "ncurses")
1700 AC_DEFUN([CF_NCURSES_CONFIG],
1702 cf_ncuconfig_root=ifelse($1,,ncurses,$1)
1704 echo "Looking for ${cf_ncuconfig_root}-config"
1705 AC_PATH_PROGS(NCURSES_CONFIG,${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config,none)
1707 if test "$NCURSES_CONFIG" != none ; then
1709 CPPFLAGS="$CPPFLAGS `$NCURSES_CONFIG --cflags`"
1710 CF_ADD_LIBS(`$NCURSES_CONFIG --libs`)
1712 # even with config script, some packages use no-override for curses.h
1713 CF_CURSES_HEADER(ifelse($1,,ncurses,$1))
1715 dnl like CF_NCURSES_CPPFLAGS
1718 dnl like CF_NCURSES_LIBS
1719 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_ncuconfig_root)
1720 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
1722 dnl like CF_NCURSES_VERSION
1723 cf_cv_ncurses_version=`$NCURSES_CONFIG --version`
1727 CF_NCURSES_CPPFLAGS(ifelse($1,,ncurses,$1))
1728 CF_NCURSES_LIBS(ifelse($1,,ncurses,$1))
1732 dnl ---------------------------------------------------------------------------
1733 dnl CF_NCURSES_CPPFLAGS version: 20 updated: 2010/11/20 17:02:38
1734 dnl -------------------
1735 dnl Look for the SVr4 curses clone 'ncurses' in the standard places, adjusting
1736 dnl the CPPFLAGS variable so we can include its header.
1738 dnl The header files may be installed as either curses.h, or ncurses.h (would
1739 dnl be obsolete, except that some packagers prefer this name to distinguish it
1740 dnl from a "native" curses implementation). If not installed for overwrite,
1741 dnl the curses.h file would be in an ncurses subdirectory (e.g.,
1742 dnl /usr/include/ncurses), but someone may have installed overwriting the
1743 dnl vendor's curses. Only very old versions (pre-1.9.2d, the first autoconf'd
1744 dnl version) of ncurses don't define either __NCURSES_H or NCURSES_VERSION in
1747 dnl If the installer has set $CFLAGS or $CPPFLAGS so that the ncurses header
1748 dnl is already in the include-path, don't even bother with this, since we cannot
1749 dnl easily determine which file it is. In this case, it has to be <curses.h>.
1751 dnl The optional parameter gives the root name of the library, in case it is
1752 dnl not installed as the default curses library. That is how the
1753 dnl wide-character version of ncurses is installed.
1754 AC_DEFUN([CF_NCURSES_CPPFLAGS],
1755 [AC_REQUIRE([CF_WITH_CURSES_DIR])
1757 AC_PROVIDE([CF_CURSES_CPPFLAGS])dnl
1758 cf_ncuhdr_root=ifelse($1,,ncurses,$1)
1760 test -n "$cf_cv_curses_dir" && \
1761 test "$cf_cv_curses_dir" != "no" && { \
1762 CF_ADD_INCDIR($cf_cv_curses_dir/include/$cf_ncuhdr_root)
1765 AC_CACHE_CHECK(for $cf_ncuhdr_root header in include-path, cf_cv_ncurses_h,[
1766 cf_header_list="$cf_ncuhdr_root/curses.h $cf_ncuhdr_root/ncurses.h"
1767 ( test "$cf_ncuhdr_root" = ncurses || test "$cf_ncuhdr_root" = ncursesw ) && cf_header_list="$cf_header_list curses.h ncurses.h"
1768 for cf_header in $cf_header_list
1770 CF_NCURSES_CC_CHECK(cf_cv_ncurses_h,$cf_header,$1)
1771 test "$cf_cv_ncurses_h" != no && break
1778 # some applications need this, but should check for NCURSES_VERSION
1783 dnl ---------------------------------------------------------------------------
1784 dnl CF_NCURSES_EXT_FUNCS version: 3 updated: 2010/11/13 19:43:23
1785 dnl --------------------
1786 dnl Since 2007/11/17, ncurses has defined NCURSES_EXT_FUNCS; earlier versions
1787 dnl may provide these functions. Define the symbol if it is not defined, and
1789 AC_DEFUN([CF_NCURSES_EXT_FUNCS],
1791 AC_CACHE_CHECK(for ncurses extended functions,cf_cv_ncurses_ext_funcs,[
1793 #include <${cf_cv_ncurses_header:-curses.h}>],
1795 int x = NCURSES_EXT_FUNCS
1796 ],[cf_cv_ncurses_ext_funcs=defined],[
1798 #include <${cf_cv_ncurses_header:-curses.h}>],
1800 (void) assume_default_colors (0, 0);
1801 (void) curses_version ();
1802 (void) define_key (0, 0);
1803 (void) is_term_resized (0, 0);
1804 (void) key_defined (0);
1805 (void) keybound (0, 0);
1806 (void) keyok (0, 0);
1807 (void) resize_term (0, 0);
1808 (void) resizeterm (0, 0);
1809 (void) use_default_colors ();
1810 (void) use_extended_names (0);
1811 (void) wresize (0, 0, 0);],
1812 [cf_cv_ncurses_ext_funcs=yes],
1813 [cf_cv_ncurses_ext_funcs=no])
1816 test "$cf_cv_ncurses_ext_funcs" = yes && AC_DEFINE(NCURSES_EXT_FUNCS)
1818 dnl ---------------------------------------------------------------------------
1819 dnl CF_NCURSES_HEADER version: 2 updated: 2008/03/23 14:48:54
1820 dnl -----------------
1821 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
1822 dnl variations of ncurses' installs.
1824 dnl See also CF_CURSES_HEADER, which sets the same cache variable.
1825 AC_DEFUN([CF_NCURSES_HEADER],[
1827 if test "$cf_cv_ncurses_h" != no ; then
1828 cf_cv_ncurses_header=$cf_cv_ncurses_h
1831 AC_CACHE_CHECK(for $cf_ncuhdr_root include-path, cf_cv_ncurses_h2,[
1832 test -n "$verbose" && echo
1833 CF_HEADER_PATH(cf_search,$cf_ncuhdr_root)
1834 test -n "$verbose" && echo search path $cf_search
1835 cf_save2_CPPFLAGS="$CPPFLAGS"
1836 for cf_incdir in $cf_search
1838 CF_ADD_INCDIR($cf_incdir)
1843 CF_NCURSES_CC_CHECK(cf_cv_ncurses_h2,$cf_header,$1)
1844 if test "$cf_cv_ncurses_h2" != no ; then
1845 cf_cv_ncurses_h2=$cf_incdir/$cf_header
1846 test -n "$verbose" && echo $ac_n " ... found $ac_c" 1>&AC_FD_MSG
1849 test -n "$verbose" && echo " ... tested $cf_incdir/$cf_header" 1>&AC_FD_MSG
1851 CPPFLAGS="$cf_save2_CPPFLAGS"
1852 test "$cf_cv_ncurses_h2" != no && break
1854 test "$cf_cv_ncurses_h2" = no && AC_MSG_ERROR(not found)
1857 CF_DIRNAME(cf_1st_incdir,$cf_cv_ncurses_h2)
1858 cf_cv_ncurses_header=`basename $cf_cv_ncurses_h2`
1859 if test `basename $cf_1st_incdir` = $cf_ncuhdr_root ; then
1860 cf_cv_ncurses_header=$cf_ncuhdr_root/$cf_cv_ncurses_header
1862 CF_ADD_INCDIR($cf_1st_incdir)
1866 # Set definitions to allow ifdef'ing for ncurses.h
1868 case $cf_cv_ncurses_header in # (vi
1870 AC_DEFINE(HAVE_NCURSES_H)
1874 case $cf_cv_ncurses_header in # (vi
1875 ncurses/curses.h|ncurses/ncurses.h)
1876 AC_DEFINE(HAVE_NCURSES_NCURSES_H)
1878 ncursesw/curses.h|ncursesw/ncurses.h)
1879 AC_DEFINE(HAVE_NCURSESW_NCURSES_H)
1884 dnl ---------------------------------------------------------------------------
1885 dnl CF_NCURSES_LIBS version: 16 updated: 2010/11/20 17:02:38
1887 dnl Look for the ncurses library. This is a little complicated on Linux,
1888 dnl because it may be linked with the gpm (general purpose mouse) library.
1889 dnl Some distributions have gpm linked with (bsd) curses, which makes it
1890 dnl unusable with ncurses. However, we don't want to link with gpm unless
1891 dnl ncurses has a dependency, since gpm is normally set up as a shared library,
1892 dnl and the linker will record a dependency.
1894 dnl The optional parameter gives the root name of the library, in case it is
1895 dnl not installed as the default curses library. That is how the
1896 dnl wide-character version of ncurses is installed.
1897 AC_DEFUN([CF_NCURSES_LIBS],
1898 [AC_REQUIRE([CF_NCURSES_CPPFLAGS])
1900 cf_nculib_root=ifelse($1,,ncurses,$1)
1901 # This works, except for the special case where we find gpm, but
1902 # ncurses is in a nonstandard location via $LIBS, and we really want
1905 cf_ncurses_SAVE="$LIBS"
1906 AC_CHECK_LIB(gpm,Gpm_Open,
1907 [AC_CHECK_LIB(gpm,initscr,
1908 [LIBS="$cf_ncurses_SAVE"],
1909 [cf_ncurses_LIBS="-lgpm"])])
1911 case $host_os in #(vi
1913 # This is only necessary if you are linking against an obsolete
1914 # version of ncurses (but it should do no harm, since it's static).
1915 if test "$cf_nculib_root" = ncurses ; then
1916 AC_CHECK_LIB(mytinfo,tgoto,[cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"])
1921 CF_ADD_LIBS($cf_ncurses_LIBS)
1923 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
1925 CF_ADD_LIBS(-l$cf_nculib_root)
1927 CF_FIND_LIBRARY($cf_nculib_root,$cf_nculib_root,
1928 [#include <${cf_cv_ncurses_header:-curses.h}>],
1933 if test -n "$cf_ncurses_LIBS" ; then
1934 AC_MSG_CHECKING(if we can link $cf_nculib_root without $cf_ncurses_LIBS)
1935 cf_ncurses_SAVE="$LIBS"
1936 for p in $cf_ncurses_LIBS ; do
1937 q=`echo $LIBS | sed -e "s%$p %%" -e "s%$p$%%"`
1938 if test "$q" != "$LIBS" ; then
1942 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
1943 [initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);],
1944 [AC_MSG_RESULT(yes)],
1946 LIBS="$cf_ncurses_SAVE"])
1949 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_nculib_root)
1950 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
1952 dnl ---------------------------------------------------------------------------
1953 dnl CF_NCURSES_VERSION version: 13 updated: 2010/10/23 15:54:49
1954 dnl ------------------
1955 dnl Check for the version of ncurses, to aid in reporting bugs, etc.
1956 dnl Call CF_CURSES_CPPFLAGS first, or CF_NCURSES_CPPFLAGS. We don't use
1957 dnl AC_REQUIRE since that does not work with the shell's if/then/else/fi.
1958 AC_DEFUN([CF_NCURSES_VERSION],
1960 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
1961 AC_CACHE_CHECK(for ncurses version, cf_cv_ncurses_version,[
1962 cf_cv_ncurses_version=no
1966 #include <${cf_cv_ncurses_header:-curses.h}>
1970 FILE *fp = fopen("$cf_tempfile", "w");
1971 #ifdef NCURSES_VERSION
1972 # ifdef NCURSES_VERSION_PATCH
1973 fprintf(fp, "%s.%d\n", NCURSES_VERSION, NCURSES_VERSION_PATCH);
1975 fprintf(fp, "%s\n", NCURSES_VERSION);
1979 fprintf(fp, "old\n");
1984 ${cf_cv_main_return:-return}(0);
1986 cf_cv_ncurses_version=`cat $cf_tempfile`],,[
1988 # This will not work if the preprocessor splits the line after the
1989 # Autoconf token. The 'unproto' program does that.
1990 cat > conftest.$ac_ext <<EOF
1991 #include <${cf_cv_ncurses_header:-curses.h}>
1993 #ifdef NCURSES_VERSION
1994 Autoconf NCURSES_VERSION
2002 cf_try="$ac_cpp conftest.$ac_ext 2>&AC_FD_CC | grep '^Autoconf ' >conftest.out"
2004 if test -f conftest.out ; then
2005 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[[^"]]*"%%' -e 's%".*%%'`
2006 test -n "$cf_out" && cf_cv_ncurses_version="$cf_out"
2012 test "$cf_cv_ncurses_version" = no || AC_DEFINE(NCURSES)
2014 dnl ---------------------------------------------------------------------------
2015 dnl CF_NCURSES_WRAP_PREFIX version: 1 updated: 2009/03/28 16:08:10
2016 dnl ----------------------
2017 dnl Check for ncurses "wrap-prefix" used for public variables which have been
2018 dnl wrapped with a function to help with concurrency control.
2019 AC_DEFUN([CF_NCURSES_WRAP_PREFIX],
2021 AC_MSG_CHECKING(for ncurses wrap-prefix)
2022 AC_ARG_WITH(ncurses-wrap-prefix,
2023 [ --with-ncurses-wrap-prefix naming-prefix for ncurses wrapped-variables],
2024 [NCURSES_WRAP_PREFIX=$withval],
2025 [NCURSES_WRAP_PREFIX=_nc_])
2026 AC_MSG_RESULT($NCURSES_WRAP_PREFIX)
2028 AC_SUBST(NCURSES_WRAP_PREFIX)
2030 dnl ---------------------------------------------------------------------------
2031 dnl CF_NETBSD_FORM_H version: 1 updated: 2011/01/15 14:59:18
2032 dnl ----------------
2033 dnl Check for NetBSD's form.h, which is incompatible with SVr4 and ncurses.
2034 dnl Some workarounds are needed in client programs to allow them to compile.
2035 AC_DEFUN([CF_NETBSD_FORM_H],[
2036 AC_CACHE_CHECK(for NetBSD form.h,cf_cv_netbsd_form_h,[
2038 #include <${cf_cv_ncurses_header:-curses.h}>
2042 int y = current_field(form)->cursor_ypos;
2043 int x = current_field(form)->cursor_xpos;
2044 ],[cf_cv_netbsd_form_h=yes
2045 ],[cf_cv_netbsd_form_h=no])
2048 test "$cf_cv_netbsd_form_h" = yes && AC_DEFINE(HAVE_NETBSD_FORM_H)
2050 dnl ---------------------------------------------------------------------------
2051 dnl CF_NETBSD_MENU_H version: 1 updated: 2011/01/15 14:59:18
2052 dnl ----------------
2053 dnl Check for NetBSD's menu.h, which is incompatible with SVr4 and ncurses.
2054 dnl Some workarounds are needed in client programs to allow them to compile.
2055 AC_DEFUN([CF_NETBSD_MENU_H],[
2056 AC_CACHE_CHECK(for NetBSD menu.h,cf_cv_netbsd_menu_h,[
2058 #include <${cf_cv_ncurses_header:-curses.h}>
2062 int y = menu->max_item_width;
2063 ],[cf_cv_netbsd_menu_h=yes
2064 ],[cf_cv_netbsd_menu_h=no])
2067 test "$cf_cv_netbsd_menu_h" = yes && AC_DEFINE(HAVE_NETBSD_MENU_H)
2069 dnl ---------------------------------------------------------------------------
2070 dnl CF_NO_LEAKS_OPTION version: 4 updated: 2006/12/16 14:24:05
2071 dnl ------------------
2072 dnl see CF_WITH_NO_LEAKS
2073 AC_DEFUN([CF_NO_LEAKS_OPTION],[
2074 AC_MSG_CHECKING(if you want to use $1 for testing)
2077 [AC_DEFINE($3)ifelse([$4],,[
2080 : ${with_cflags:=-g}
2081 : ${with_no_leaks:=yes}
2084 AC_MSG_RESULT(${with_$1:-no})
2086 case .$with_cflags in #(vi
2088 case .$CFLAGS in #(vi
2098 dnl ---------------------------------------------------------------------------
2099 dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42
2101 dnl Check the argument to see that it looks like a pathname. Rewrite it if it
2102 dnl begins with one of the prefix/exec_prefix variables, and then again if the
2103 dnl result begins with 'NONE'. This is necessary to work around autoconf's
2104 dnl delayed evaluation of those symbols.
2105 AC_DEFUN([CF_PATH_SYNTAX],[
2106 if test "x$prefix" != xNONE; then
2107 cf_path_syntax="$prefix"
2109 cf_path_syntax="$ac_default_prefix"
2112 case ".[$]$1" in #(vi
2113 .\[$]\(*\)*|.\'*\'*) #(vi
2117 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX
2119 .\[$]{*prefix}*) #(vi
2121 case ".[$]$1" in #(vi
2123 $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
2128 $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
2131 ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
2135 dnl ---------------------------------------------------------------------------
2136 dnl CF_PDCURSES_X11 version: 11 updated: 2011/01/15 18:45:38
2138 dnl Configure for PDCurses' X11 library
2139 AC_DEFUN([CF_PDCURSES_X11],[
2140 AC_REQUIRE([CF_X_ATHENA])
2142 AC_PATH_PROGS(XCURSES_CONFIG,xcurses-config,none)
2144 if test "$XCURSES_CONFIG" != none ; then
2146 CPPFLAGS="$CPPFLAGS `$XCURSES_CONFIG --cflags`"
2147 CF_ADD_LIBS(`$XCURSES_CONFIG --libs`)
2149 cf_cv_lib_XCurses=yes
2153 LDFLAGS="$LDFLAGS $X_LIBS"
2154 CF_CHECK_CFLAGS($X_CFLAGS)
2155 AC_CHECK_LIB(X11,XOpenDisplay,
2156 [CF_ADD_LIBS(-lX11)],,
2157 [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])
2158 AC_CACHE_CHECK(for XCurses library,cf_cv_lib_XCurses,[
2159 CF_ADD_LIBS(-lXCurses)
2161 #include <xcurses.h>
2162 char *XCursesProgramName = "test";
2164 [cf_cv_lib_XCurses=yes],
2165 [cf_cv_lib_XCurses=no])
2170 if test $cf_cv_lib_XCurses = yes ; then
2173 AC_CHECK_HEADER(xcurses.h, AC_DEFINE(HAVE_XCURSES))
2175 AC_MSG_ERROR(Cannot link with XCurses)
2178 dnl ---------------------------------------------------------------------------
2179 dnl CF_PKG_CONFIG version: 4 updated: 2011/02/18 20:26:24
2181 dnl Check for the package-config program, unless disabled by command-line.
2182 AC_DEFUN([CF_PKG_CONFIG],
2184 AC_MSG_CHECKING(if you want to use pkg-config)
2185 AC_ARG_WITH(pkg-config,
2186 [ --with-pkg-config{=path} enable/disable use of pkg-config],
2187 [cf_pkg_config=$withval],
2188 [cf_pkg_config=yes])
2189 AC_MSG_RESULT($cf_pkg_config)
2191 case $cf_pkg_config in #(vi
2196 AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)
2203 test -z "$PKG_CONFIG" && PKG_CONFIG=none
2204 if test "$PKG_CONFIG" != none ; then
2205 CF_PATH_SYNTAX(PKG_CONFIG)
2208 AC_SUBST(PKG_CONFIG)
2210 dnl ---------------------------------------------------------------------------
2211 dnl CF_POSIX_C_SOURCE version: 8 updated: 2010/05/26 05:38:42
2212 dnl -----------------
2213 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
2215 dnl POSIX.1-1990 _POSIX_SOURCE
2216 dnl POSIX.1-1990 and _POSIX_SOURCE and
2217 dnl POSIX.2-1992 C-Language _POSIX_C_SOURCE=2
2219 dnl POSIX.1b-1993 _POSIX_C_SOURCE=199309L
2220 dnl POSIX.1c-1996 _POSIX_C_SOURCE=199506L
2221 dnl X/Open 2000 _POSIX_C_SOURCE=200112L
2224 dnl $1 is the nominal value for _POSIX_C_SOURCE
2225 AC_DEFUN([CF_POSIX_C_SOURCE],
2227 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
2229 cf_save_CFLAGS="$CFLAGS"
2230 cf_save_CPPFLAGS="$CPPFLAGS"
2232 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
2233 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
2235 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
2236 CF_MSG_LOG(if the symbol is already defined go no further)
2237 AC_TRY_COMPILE([#include <sys/types.h>],[
2238 #ifndef _POSIX_C_SOURCE
2241 [cf_cv_posix_c_source=no],
2242 [cf_want_posix_source=no
2243 case .$cf_POSIX_C_SOURCE in #(vi
2245 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
2248 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
2249 cf_want_posix_source=yes
2252 cf_want_posix_source=yes
2255 if test "$cf_want_posix_source" = yes ; then
2256 AC_TRY_COMPILE([#include <sys/types.h>],[
2257 #ifdef _POSIX_SOURCE
2260 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
2262 CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
2263 CFLAGS="$cf_trim_CFLAGS"
2264 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
2265 CF_MSG_LOG(if the second compile does not leave our definition intact error)
2266 AC_TRY_COMPILE([#include <sys/types.h>],[
2267 #ifndef _POSIX_C_SOURCE
2270 [cf_cv_posix_c_source=no])
2271 CFLAGS="$cf_save_CFLAGS"
2272 CPPFLAGS="$cf_save_CPPFLAGS"
2276 if test "$cf_cv_posix_c_source" != no ; then
2277 CFLAGS="$cf_trim_CFLAGS"
2278 CPPFLAGS="$cf_trim_CPPFLAGS"
2279 CF_ADD_CFLAGS($cf_cv_posix_c_source)
2283 dnl ---------------------------------------------------------------------------
2284 dnl CF_PRG_RULES version: 1 updated: 2006/06/03 11:45:08
2286 dnl Append definitions and rules for the given programs to the subdirectory
2287 dnl Makefiles, and the recursion rule for the top-level Makefile.
2290 dnl $1 = script to run
2291 dnl $2 = list of subdirectories
2295 AC_DEFUN([CF_PRG_RULES],
2299 if test ! -d $srcdir/$cf_dir; then
2301 elif test -f $srcdir/$cf_dir/programs; then
2302 $AWK -f $1 $srcdir/$cf_dir/programs >>$cf_dir/Makefile
2307 dnl ---------------------------------------------------------------------------
2308 dnl CF_PROG_CC_U_D version: 1 updated: 2005/07/14 16:59:30
2310 dnl Check if C (preprocessor) -U and -D options are processed in the order
2311 dnl given rather than by type of option. Some compilers insist on apply all
2312 dnl of the -U options after all of the -D options. Others allow mixing them,
2313 dnl and may predefine symbols that conflict with those we define.
2314 AC_DEFUN([CF_PROG_CC_U_D],
2316 AC_CACHE_CHECK(if $CC -U and -D options work together,cf_cv_cc_u_d_options,[
2317 cf_save_CPPFLAGS="$CPPFLAGS"
2318 CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
2321 make an undefined-error
2324 make a defined-error
2327 cf_cv_cc_u_d_options=yes],[
2328 cf_cv_cc_u_d_options=no])
2329 CPPFLAGS="$cf_save_CPPFLAGS"
2332 dnl ---------------------------------------------------------------------------
2333 dnl CF_PROG_INSTALL version: 5 updated: 2002/12/21 22:46:07
2335 dnl Force $INSTALL to be an absolute-path. Otherwise, edit_man.sh and the
2336 dnl misc/tabset install won't work properly. Usually this happens only when
2337 dnl using the fallback mkinstalldirs script
2338 AC_DEFUN([CF_PROG_INSTALL],
2344 CF_DIRNAME(cf_dir,$INSTALL)
2345 test -z "$cf_dir" && cf_dir=.
2346 INSTALL=`cd $cf_dir && pwd`/`echo $INSTALL | sed -e 's%^.*/%%'`
2350 dnl ---------------------------------------------------------------------------
2351 dnl CF_PROG_LINT version: 2 updated: 2009/08/12 04:43:14
2353 AC_DEFUN([CF_PROG_LINT],
2355 AC_CHECK_PROGS(LINT, tdlint lint alint splint lclint)
2358 dnl ---------------------------------------------------------------------------
2359 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
2360 dnl ----------------
2361 dnl Remove all -U and -D options that refer to the given symbol from a list
2362 dnl of C compiler options. This works around the problem that not all
2363 dnl compilers process -U and -D options from left-to-right, so a -U option
2364 dnl cannot be used to cancel the effect of a preceding -D option.
2366 dnl $1 = target (which could be the same as the source variable)
2367 dnl $2 = source (including '$')
2368 dnl $3 = symbol to remove
2369 define([CF_REMOVE_DEFINE],
2372 sed -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[[ ]]/ /g' \
2373 -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'`
2375 dnl ---------------------------------------------------------------------------
2376 dnl CF_SIG_ATOMIC_T version: 2 updated: 2005/09/18 17:27:12
2378 dnl signal handler, but there are some gcc depedencies in that recommendation.
2380 AC_DEFUN([CF_SIG_ATOMIC_T],
2382 AC_MSG_CHECKING(for signal global datatype)
2383 AC_CACHE_VAL(cf_cv_sig_atomic_t,[
2385 "volatile sig_atomic_t" \
2390 #include <sys/types.h>
2396 static void handler(int sig)
2400 [signal(SIGINT, handler);
2402 [cf_cv_sig_atomic_t=$cf_type],
2403 [cf_cv_sig_atomic_t=no])
2404 test "$cf_cv_sig_atomic_t" != no && break
2407 AC_MSG_RESULT($cf_cv_sig_atomic_t)
2408 test "$cf_cv_sig_atomic_t" != no && AC_DEFINE_UNQUOTED(SIG_ATOMIC_T, $cf_cv_sig_atomic_t)
2410 dnl ---------------------------------------------------------------------------
2411 dnl CF_SUBDIR_PATH version: 6 updated: 2010/04/21 06:20:50
2413 dnl Construct a search-list for a nonstandard header/lib-file
2414 dnl $1 = the variable to return as result
2415 dnl $2 = the package name
2416 dnl $3 = the subdirectory, e.g., bin, include or lib
2417 AC_DEFUN([CF_SUBDIR_PATH],
2421 CF_ADD_SUBDIR_PATH($1,$2,$3,/usr,$prefix)
2422 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
2423 CF_ADD_SUBDIR_PATH($1,$2,$3,/usr/local,$prefix)
2424 CF_ADD_SUBDIR_PATH($1,$2,$3,/opt,$prefix)
2425 CF_ADD_SUBDIR_PATH($1,$2,$3,[$]HOME,$prefix)
2427 dnl ---------------------------------------------------------------------------
2428 dnl CF_SYS_TIME_SELECT version: 4 updated: 2000/10/04 09:18:40
2429 dnl ------------------
2430 dnl Check if we can include <sys/time.h> with <sys/select.h>; this breaks on
2431 dnl older SCO configurations.
2432 AC_DEFUN([CF_SYS_TIME_SELECT],
2434 AC_MSG_CHECKING(if sys/time.h works with sys/select.h)
2435 AC_CACHE_VAL(cf_cv_sys_time_select,[
2437 #include <sys/types.h>
2438 #ifdef HAVE_SYS_TIME_H
2439 #include <sys/time.h>
2441 #ifdef HAVE_SYS_SELECT_H
2442 #include <sys/select.h>
2444 ],[],[cf_cv_sys_time_select=yes],
2445 [cf_cv_sys_time_select=no])
2447 AC_MSG_RESULT($cf_cv_sys_time_select)
2448 test "$cf_cv_sys_time_select" = yes && AC_DEFINE(HAVE_SYS_TIME_SELECT)
2450 dnl ---------------------------------------------------------------------------
2451 dnl CF_TERM_HEADER version: 2 updated: 2010/10/23 15:54:49
2453 dnl Look for term.h, which is part of X/Open curses. It defines the interface
2454 dnl to terminfo database. Usually it is in the same include-path as curses.h,
2455 dnl but some packagers change this, breaking various applications.
2456 AC_DEFUN([CF_TERM_HEADER],[
2457 AC_CACHE_CHECK(for terminfo header, cf_cv_term_header,[
2458 case ${cf_cv_ncurses_header} in #(vi
2459 */ncurses.h|*/ncursesw.h) #(vi
2460 cf_term_header=`echo "$cf_cv_ncurses_header" | sed -e 's%ncurses[[^.]]*\.h$%term.h%'`
2463 cf_term_header=term.h
2467 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2469 AC_TRY_COMPILE([#include <stdio.h>
2470 #include <${cf_cv_ncurses_header:-curses.h}>
2472 ],[int x = auto_left_margin],[
2473 cf_cv_term_header="$cf_test"],[
2474 cf_cv_term_header=unknown
2476 test "$cf_cv_term_header" != unknown && break
2480 # Set definitions to allow ifdef'ing to accommodate subdirectories
2482 case $cf_cv_term_header in # (vi
2484 AC_DEFINE(HAVE_TERM_H)
2488 case $cf_cv_term_header in # (vi
2489 ncurses/term.h) #(vi
2490 AC_DEFINE(HAVE_NCURSES_TERM_H)
2493 AC_DEFINE(HAVE_NCURSESW_TERM_H)
2497 dnl ---------------------------------------------------------------------------
2498 dnl CF_TRY_PKG_CONFIG version: 4 updated: 2010/06/14 17:42:30
2499 dnl -----------------
2500 dnl This is a simple wrapper to use for pkg-config, for libraries which may be
2501 dnl available in that form.
2503 dnl $1 = package name
2504 dnl $2 = extra logic to use, if any, after updating CFLAGS and LIBS
2505 dnl $3 = logic to use if pkg-config does not have the package
2506 AC_DEFUN([CF_TRY_PKG_CONFIG],[
2507 AC_REQUIRE([CF_PKG_CONFIG])
2509 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $1; then
2510 CF_VERBOSE(found package $1)
2511 cf_pkgconfig_incs="`$PKG_CONFIG --cflags $1 2>/dev/null`"
2512 cf_pkgconfig_libs="`$PKG_CONFIG --libs $1 2>/dev/null`"
2513 CF_VERBOSE(package $1 CFLAGS: $cf_pkgconfig_incs)
2514 CF_VERBOSE(package $1 LIBS: $cf_pkgconfig_libs)
2515 CF_ADD_CFLAGS($cf_pkgconfig_incs)
2516 CF_ADD_LIBS($cf_pkgconfig_libs)
2517 ifelse([$2],,:,[$2])
2519 ifelse([$3],,:,[$3])
2522 dnl ---------------------------------------------------------------------------
2523 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
2525 dnl Make an uppercase version of a variable
2526 dnl $1=uppercase($2)
2527 AC_DEFUN([CF_UPPER],
2529 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2531 dnl ---------------------------------------------------------------------------
2532 dnl CF_UTF8_LIB version: 7 updated: 2010/06/20 09:24:28
2534 dnl Check for multibyte support, and if not found, utf8 compatibility library
2535 AC_DEFUN([CF_UTF8_LIB],
2537 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
2538 cf_save_LIBS="$LIBS"
2540 #include <stdlib.h>],[putwc(0,0);],
2541 [cf_cv_utf8_lib=yes],
2543 #include <libutf8.h>],[putwc(0,0);],utf8,
2544 [cf_cv_utf8_lib=add-on],
2545 [cf_cv_utf8_lib=no])
2548 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
2550 if test "$cf_cv_utf8_lib" = "add-on" ; then
2551 AC_DEFINE(HAVE_LIBUTF8_H)
2552 CF_ADD_INCDIR($cf_cv_header_path_utf8)
2553 CF_ADD_LIBDIR($cf_cv_library_path_utf8)
2554 CF_ADD_LIBS($cf_cv_library_file_utf8)
2557 dnl ---------------------------------------------------------------------------
2558 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
2560 dnl Use AC_VERBOSE w/o the warnings
2561 AC_DEFUN([CF_VERBOSE],
2562 [test -n "$verbose" && echo " $1" 1>&AC_FD_MSG
2565 dnl ---------------------------------------------------------------------------
2566 dnl CF_WCHAR_TYPE version: 3 updated: 2010/05/26 16:44:57
2568 dnl Check if type wide-character type $1 is declared, and if so, which header
2569 dnl file is needed. The second parameter is used to set a shell variable when
2570 dnl the type is not found. The first parameter sets a shell variable for the
2572 AC_DEFUN([CF_WCHAR_TYPE],
2574 # This is needed on Tru64 5.0 to declare $1
2575 AC_CACHE_CHECK(if we must include wchar.h to declare $1,cf_cv_$1,[
2580 #ifdef HAVE_LIBUTF8_H
2581 #include <libutf8.h>
2590 #ifdef HAVE_LIBUTF8_H
2591 #include <libutf8.h>
2595 [cf_cv_$1=unknown])])])
2597 if test "$cf_cv_$1" = yes ; then
2598 AC_DEFINE(NEED_WCHAR_H)
2603 # if we do not find $1 in either place, use substitution to provide a fallback.
2604 if test "$cf_cv_$1" = unknown ; then
2609 # if we find $1 in either place, use substitution to provide a fallback.
2610 if test "$cf_cv_$1" != unknown ; then
2615 dnl ---------------------------------------------------------------------------
2616 dnl CF_WITH_CURSES_DIR version: 3 updated: 2010/11/20 17:02:38
2617 dnl ------------------
2618 dnl Wrapper for AC_ARG_WITH to specify directory under which to look for curses
2620 AC_DEFUN([CF_WITH_CURSES_DIR],[
2622 AC_MSG_CHECKING(for specific curses-directory)
2623 AC_ARG_WITH(curses-dir,
2624 [ --with-curses-dir=DIR directory in which (n)curses is installed],
2625 [cf_cv_curses_dir=$withval],
2626 [cf_cv_curses_dir=no])
2627 AC_MSG_RESULT($cf_cv_curses_dir)
2629 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
2631 CF_PATH_SYNTAX(withval)
2632 if test -d "$cf_cv_curses_dir"
2634 CF_ADD_INCDIR($cf_cv_curses_dir/include)
2635 CF_ADD_LIBDIR($cf_cv_curses_dir/lib)
2639 dnl ---------------------------------------------------------------------------
2640 dnl CF_WITH_DBMALLOC version: 7 updated: 2010/06/21 17:26:47
2641 dnl ----------------
2642 dnl Configure-option for dbmalloc. The optional parameter is used to override
2643 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
2644 AC_DEFUN([CF_WITH_DBMALLOC],[
2645 CF_NO_LEAKS_OPTION(dbmalloc,
2646 [ --with-dbmalloc test: use Conor Cahill's dbmalloc library],
2649 if test "$with_dbmalloc" = yes ; then
2650 AC_CHECK_HEADER(dbmalloc.h,
2651 [AC_CHECK_LIB(dbmalloc,[debug_malloc]ifelse([$1],,[],[,$1]))])
2654 dnl ---------------------------------------------------------------------------
2655 dnl CF_WITH_DMALLOC version: 7 updated: 2010/06/21 17:26:47
2657 dnl Configure-option for dmalloc. The optional parameter is used to override
2658 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
2659 AC_DEFUN([CF_WITH_DMALLOC],[
2660 CF_NO_LEAKS_OPTION(dmalloc,
2661 [ --with-dmalloc test: use Gray Watson's dmalloc library],
2664 if test "$with_dmalloc" = yes ; then
2665 AC_CHECK_HEADER(dmalloc.h,
2666 [AC_CHECK_LIB(dmalloc,[dmalloc_debug]ifelse([$1],,[],[,$1]))])
2669 dnl ---------------------------------------------------------------------------
2670 dnl CF_WITH_VALGRIND version: 1 updated: 2006/12/14 18:00:21
2671 dnl ----------------
2672 AC_DEFUN([CF_WITH_VALGRIND],[
2673 CF_NO_LEAKS_OPTION(valgrind,
2674 [ --with-valgrind test: use valgrind],
2677 dnl ---------------------------------------------------------------------------
2678 dnl CF_XOPEN_CURSES version: 11 updated: 2011/01/18 18:15:30
2680 dnl Test if we should define X/Open source for curses, needed on Digital Unix
2681 dnl 4.x, to see the extended functions, but breaks on IRIX 6.x.
2683 dnl The getbegyx() check is needed for HPUX, which omits legacy macros such
2684 dnl as getbegy(). The latter is better design, but the former is standard.
2685 AC_DEFUN([CF_XOPEN_CURSES],
2687 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
2688 AC_CACHE_CHECK(if we must define _XOPEN_SOURCE_EXTENDED,cf_cv_need_xopen_extension,[
2691 #include <${cf_cv_ncurses_header:-curses.h}>],[
2692 #if defined(NCURSES_VERSION_PATCH)
2693 #if (NCURSES_VERSION_PATCH < 20100501) && (NCURSES_VERSION_PATCH >= 20100403)
2697 long x = winnstr(stdscr, "", 0);
2699 getbegyx(stdscr, y1, x1)],
2700 [cf_cv_need_xopen_extension=no],
2702 #define _XOPEN_SOURCE_EXTENDED
2704 #include <${cf_cv_ncurses_header:-curses.h}>],[
2705 #ifdef NCURSES_VERSION
2707 int check2 = curs_set((int)sizeof(check));
2709 long x = winnstr(stdscr, "", 0);
2711 getbegyx(stdscr, y1, x1)],
2712 [cf_cv_need_xopen_extension=yes],
2713 [cf_cv_need_xopen_extension=unknown])])])
2714 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
2716 dnl ---------------------------------------------------------------------------
2717 dnl CF_XOPEN_SOURCE version: 35 updated: 2011/02/20 20:37:37
2719 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
2720 dnl or adapt to the vendor's definitions to get equivalent functionality,
2721 dnl without losing the common non-POSIX features.
2724 dnl $1 is the nominal value for _XOPEN_SOURCE
2725 dnl $2 is the nominal value for _POSIX_C_SOURCE
2726 AC_DEFUN([CF_XOPEN_SOURCE],[
2728 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
2729 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
2732 case $host_os in #(vi
2734 cf_xopen_source="-D_ALL_SOURCE"
2739 darwin[[0-8]].*) #(vi
2740 cf_xopen_source="-D_APPLE_C_SOURCE"
2743 cf_xopen_source="-D_DARWIN_C_SOURCE"
2745 freebsd*|dragonfly*) #(vi
2746 # 5.x headers associate
2747 # _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
2748 # _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
2749 cf_POSIX_C_SOURCE=200112L
2751 cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2754 cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
2757 cf_xopen_source="-D_HPUX_SOURCE"
2760 cf_xopen_source="-D_SGI_SOURCE"
2762 linux*|gnu*|mint*|k*bsd*-gnu) #(vi
2766 # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <arpa/inet.h>
2769 # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
2772 # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
2775 cf_xopen_source="-D_OSF_SOURCE"
2778 cf_xopen_source="-D_QNX_SOURCE"
2781 # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
2783 solaris2.1[[0-9]]) #(vi
2784 cf_xopen_source="-D__EXTENSIONS__ -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2786 solaris2.[[1-9]]) #(vi
2787 cf_xopen_source="-D__EXTENSIONS__"
2790 AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
2791 AC_TRY_COMPILE([#include <sys/types.h>],[
2792 #ifndef _XOPEN_SOURCE
2795 [cf_cv_xopen_source=no],
2796 [cf_save="$CPPFLAGS"
2797 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2798 AC_TRY_COMPILE([#include <sys/types.h>],[
2799 #ifdef _XOPEN_SOURCE
2802 [cf_cv_xopen_source=no],
2803 [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
2807 if test "$cf_cv_xopen_source" != no ; then
2808 CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
2809 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
2810 cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
2811 CF_ADD_CFLAGS($cf_temp_xopen_source)
2813 CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
2817 if test -n "$cf_xopen_source" ; then
2818 CF_ADD_CFLAGS($cf_xopen_source)
2821 dnl ---------------------------------------------------------------------------
2822 dnl CF_X_ATHENA version: 20 updated: 2010/11/09 05:18:02
2824 dnl Check for Xaw (Athena) libraries
2826 dnl Sets $cf_x_athena according to the flavor of Xaw which is used.
2827 AC_DEFUN([CF_X_ATHENA],
2829 cf_x_athena=${cf_x_athena:-Xaw}
2831 AC_MSG_CHECKING(if you want to link with Xaw 3d library)
2834 [ --with-Xaw3d link with Xaw 3d library])
2835 if test "$withval" = yes ; then
2842 AC_MSG_CHECKING(if you want to link with neXT Athena library)
2845 [ --with-neXtaw link with neXT Athena library])
2846 if test "$withval" = yes ; then
2853 AC_MSG_CHECKING(if you want to link with Athena-Plus library)
2855 AC_ARG_WITH(XawPlus,
2856 [ --with-XawPlus link with Athena-Plus library])
2857 if test "$withval" = yes ; then
2866 if test "$PKG_CONFIG" != none ; then
2868 test "$cf_x_athena" = Xaw && cf_athena_list="xaw8 xaw7 xaw6"
2869 for cf_athena_pkg in \
2872 ${cf_x_athena}-devel \
2874 lib${cf_x_athena}-devel
2876 CF_TRY_PKG_CONFIG($cf_athena_pkg,[
2877 cf_x_athena_lib="$cf_pkgconfig_libs"
2878 CF_UPPER(cf_x_athena_LIBS,HAVE_LIB_$cf_x_athena)
2879 AC_DEFINE_UNQUOTED($cf_x_athena_LIBS)
2881 AC_CACHE_CHECK(for usable $cf_x_athena/Xmu package,cf_cv_xaw_compat,[
2883 #include <X11/Xmu/CharSet.h>
2885 int check = XmuCompareISOLatin1("big", "small")
2886 ],[cf_cv_xaw_compat=yes],[cf_cv_xaw_compat=no])])
2888 if test "$cf_cv_xaw_compat" = no
2890 # workaround for broken ".pc" files...
2891 case "$cf_x_athena_lib" in #(vi
2895 CF_VERBOSE(work around broken package)
2896 CF_TRY_PKG_CONFIG(xmu,,[CF_ADD_LIB_AFTER(-lXt,-lXmu)])
2905 if test -z "$cf_x_athena_lib" ; then
2908 CF_X_ATHENA_CPPFLAGS($cf_x_athena)
2909 CF_X_ATHENA_LIBS($cf_x_athena)
2912 dnl ---------------------------------------------------------------------------
2913 dnl CF_X_ATHENA_CPPFLAGS version: 5 updated: 2010/05/26 17:35:30
2914 dnl --------------------
2915 dnl Normally invoked by CF_X_ATHENA, with $1 set to the appropriate flavor of
2916 dnl the Athena widgets, e.g., Xaw, Xaw3d, neXtaw.
2917 AC_DEFUN([CF_X_ATHENA_CPPFLAGS],
2919 cf_x_athena_root=ifelse([$1],,Xaw,[$1])
2922 for cf_path in default \
2923 /usr/contrib/X11R6 \
2924 /usr/contrib/X11R5 \
2928 if test -z "$cf_x_athena_inc" ; then
2930 cf_test=X11/$cf_x_athena_root/SimpleMenu.h
2931 if test $cf_path != default ; then
2932 CPPFLAGS="$cf_save -I$cf_path/include"
2933 AC_MSG_CHECKING(for $cf_test in $cf_path)
2935 AC_MSG_CHECKING(for $cf_test)
2938 #include <X11/Intrinsic.h>
2939 #include <$cf_test>],[],
2942 AC_MSG_RESULT($cf_result)
2943 if test "$cf_result" = yes ; then
2944 cf_x_athena_inc=$cf_path
2952 if test -z "$cf_x_athena_inc" ; then
2954 [Unable to successfully find Athena header files with test program])
2955 elif test "$cf_x_athena_inc" != default ; then
2956 CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc"
2959 dnl ---------------------------------------------------------------------------
2960 dnl CF_X_ATHENA_LIBS version: 10 updated: 2011/02/13 13:31:33
2961 dnl ----------------
2962 dnl Normally invoked by CF_X_ATHENA, with $1 set to the appropriate flavor of
2963 dnl the Athena widgets, e.g., Xaw, Xaw3d, neXtaw.
2964 AC_DEFUN([CF_X_ATHENA_LIBS],
2965 [AC_REQUIRE([CF_X_TOOLKIT])
2966 cf_x_athena_root=ifelse([$1],,Xaw,[$1])
2969 for cf_path in default \
2970 /usr/contrib/X11R6 \
2971 /usr/contrib/X11R5 \
2976 "-l$cf_x_athena_root -lXmu" \
2977 "-l$cf_x_athena_root -lXpm -lXmu" \
2978 "-l${cf_x_athena_root}_s -lXmu_s"
2980 if test -z "$cf_x_athena_lib" ; then
2982 cf_test=XawSimpleMenuAddGlobalActions
2983 if test $cf_path != default ; then
2984 CF_ADD_LIBS(-L$cf_path/lib $cf_lib)
2985 AC_MSG_CHECKING(for $cf_lib in $cf_path)
2987 CF_ADD_LIBS($cf_lib)
2988 AC_MSG_CHECKING(for $cf_test in $cf_lib)
2991 #include <X11/Intrinsic.h>
2992 #include <X11/$cf_x_athena_root/SimpleMenu.h>
2994 $cf_test((XtAppContext) 0)],
2997 AC_MSG_RESULT($cf_result)
2998 if test "$cf_result" = yes ; then
2999 cf_x_athena_lib="$cf_lib"
3007 if test -z "$cf_x_athena_lib" ; then
3009 [Unable to successfully link Athena library (-l$cf_x_athena_root) with test program])
3012 CF_UPPER(cf_x_athena_LIBS,HAVE_LIB_$cf_x_athena)
3013 AC_DEFINE_UNQUOTED($cf_x_athena_LIBS)
3015 dnl ---------------------------------------------------------------------------
3016 dnl CF_X_EXT version: 3 updated: 2010/06/02 05:03:05
3018 AC_DEFUN([CF_X_EXT],[
3019 CF_TRY_PKG_CONFIG(Xext,,[
3020 AC_CHECK_LIB(Xext,XextCreateExtension,
3021 [CF_ADD_LIB(Xext)])])
3023 dnl ---------------------------------------------------------------------------
3024 dnl CF_X_TOOLKIT version: 20 updated: 2010/11/19 05:43:04
3026 dnl Check for X Toolkit libraries
3028 AC_DEFUN([CF_X_TOOLKIT],
3030 AC_REQUIRE([AC_PATH_XTRA])
3031 AC_REQUIRE([CF_CHECK_CACHE])
3035 CF_TRY_PKG_CONFIG(xt,[
3037 case "x$LIBS" in #(vi
3041 # we have an "xt" package, but it may omit Xt's dependency on X11
3042 AC_CACHE_CHECK(for usable X dependency,cf_cv_xt_x11_compat,[
3044 #include <X11/Xlib.h>
3046 int rc1 = XDrawLine((Display*) 0, (Drawable) 0, (GC) 0, 0, 0, 0, 0);
3047 int rc2 = XClearWindow((Display*) 0, (Window) 0);
3048 int rc3 = XMoveWindow((Display*) 0, (Window) 0, 0, 0);
3049 int rc4 = XMoveResizeWindow((Display*)0, (Window)0, 0, 0, 0, 0);
3050 ],[cf_cv_xt_x11_compat=yes],[cf_cv_xt_x11_compat=no])])
3051 if test "$cf_cv_xt_x11_compat" = no
3053 CF_VERBOSE(work around broken X11 dependency)
3054 # 2010/11/19 - good enough until a working Xt on Xcb is delivered.
3055 CF_TRY_PKG_CONFIG(x11,,[CF_ADD_LIB_AFTER(-lXt,-lX11)])
3060 AC_CACHE_CHECK(for usable X Toolkit package,cf_cv_xt_ice_compat,[
3062 #include <X11/Shell.h>
3063 ],[int num = IceConnectionNumber(0)
3064 ],[cf_cv_xt_ice_compat=yes],[cf_cv_xt_ice_compat=no])])
3066 if test "$cf_cv_xt_ice_compat" = no
3068 # workaround for broken ".pc" files used for X Toolkit.
3069 case "x$X_PRE_LIBS" in #(vi
3071 case "x$LIBS" in #(vi
3075 CF_VERBOSE(work around broken ICE dependency)
3076 CF_TRY_PKG_CONFIG(ice,
3077 [CF_TRY_PKG_CONFIG(sm)],
3078 [CF_ADD_LIB_AFTER(-lXt,$X_PRE_LIBS)])
3088 LDFLAGS="$X_LIBS $LDFLAGS"
3089 CF_CHECK_CFLAGS($X_CFLAGS)
3091 AC_CHECK_FUNC(XOpenDisplay,,[
3092 AC_CHECK_LIB(X11,XOpenDisplay,
3094 [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])])
3096 AC_CHECK_FUNC(XtAppInitialize,,[
3097 AC_CHECK_LIB(Xt, XtAppInitialize,
3098 [AC_DEFINE(HAVE_LIBXT)
3100 LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS"],,
3101 [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])])
3104 if test $cf_have_X_LIBS = no ; then
3106 [Unable to successfully link X Toolkit library (-lXt) with
3107 test program. You will have to check and add the proper libraries by hand
3111 dnl ---------------------------------------------------------------------------
3112 dnl CF__CURSES_HEAD version: 2 updated: 2010/10/23 15:54:49
3114 dnl Define a reusable chunk which includes <curses.h> and <term.h> when they
3115 dnl are both available.
3116 define([CF__CURSES_HEAD],[
3118 #include <xcurses.h>
3119 char * XCursesProgramName = "test";
3121 #include <${cf_cv_ncurses_header:-curses.h}>
3122 #if defined(NCURSES_VERSION) && defined(HAVE_NCURSESW_TERM_H)
3123 #include <ncursesw/term.h>
3124 #elif defined(NCURSES_VERSION) && defined(HAVE_NCURSES_TERM_H)
3125 #include <ncurses/term.h>
3126 #elif defined(HAVE_TERM_H)