]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/aclocal.m4
82f19c2bf84867a5ae5e6f5317723224445e4191
[ncurses.git] / test / aclocal.m4
1 dnl***************************************************************************
2 dnl Copyright (c) 2003-2010,2011 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 $Id: aclocal.m4,v 1.60 2011/05/07 15:34:44 tom Exp $
30 dnl
31 dnl Author: Thomas E. Dickey
32 dnl
33 dnl Macros used in NCURSES test programs auto-configuration script.
34 dnl
35 dnl These macros are maintained separately from NCURSES.  The copyright on
36 dnl this file applies to the aggregation of macros and does not affect use of
37 dnl these macros in other applications.
38 dnl
39 dnl See http://invisible-island.net/autoconf/ for additional information.
40 dnl
41 dnl ---------------------------------------------------------------------------
42 dnl ---------------------------------------------------------------------------
43 dnl CF_ADD_CFLAGS version: 10 updated: 2010/05/26 05:38:42
44 dnl -------------
45 dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS
46 dnl The second parameter if given makes this macro verbose.
47 dnl
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],
52 [
53 cf_fix_cppflags=no
54 cf_new_cflags=
55 cf_new_cppflags=
56 cf_new_extra_cppflags=
57
58 for cf_add_cflags in $1
59 do
60 case $cf_fix_cppflags in
61 no)
62         case $cf_add_cflags in #(vi
63         -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
64                 case $cf_add_cflags in
65                 -D*)
66                         cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[[^=]]*='\''\"[[^"]]*//'`
67
68                         test "${cf_add_cflags}" != "${cf_tst_cflags}" \
69                                 && test -z "${cf_tst_cflags}" \
70                                 && cf_fix_cppflags=yes
71
72                         if test $cf_fix_cppflags = yes ; then
73                                 cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
74                                 continue
75                         elif test "${cf_tst_cflags}" = "\"'" ; then
76                                 cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
77                                 continue
78                         fi
79                         ;;
80                 esac
81                 case "$CPPFLAGS" in
82                 *$cf_add_cflags) #(vi
83                         ;;
84                 *) #(vi
85                         case $cf_add_cflags in #(vi
86                         -D*)
87                                 cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
88                                 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,$cf_tst_cppflags)
89                                 ;;
90                         esac
91                         cf_new_cppflags="$cf_new_cppflags $cf_add_cflags"
92                         ;;
93                 esac
94                 ;;
95         *)
96                 cf_new_cflags="$cf_new_cflags $cf_add_cflags"
97                 ;;
98         esac
99         ;;
100 yes)
101         cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
102
103         cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[[^"]]*"'\''//'`
104
105         test "${cf_add_cflags}" != "${cf_tst_cflags}" \
106                 && test -z "${cf_tst_cflags}" \
107                 && cf_fix_cppflags=no
108         ;;
109 esac
110 done
111
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"
115 fi
116
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"
120 fi
121
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"
125 fi
126
127 AC_SUBST(EXTRA_CPPFLAGS)
128
129 ])dnl
130 dnl ---------------------------------------------------------------------------
131 dnl CF_ADD_INCDIR version: 13 updated: 2010/05/26 16:44:57
132 dnl -------------
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],
139 [
140 if test -n "$1" ; then
141   for cf_add_incdir in $1
142   do
143         while test $cf_add_incdir != /usr/include
144         do
145           if test -d $cf_add_incdir
146           then
147                 cf_have_incdir=no
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
153                         fi
154                   done
155                 fi
156
157                 if test "$cf_have_incdir" = no ; then
158                   if test "$cf_add_incdir" = /usr/local/include ; then
159                         if test "$GCC" = yes
160                         then
161                           cf_save_CPPFLAGS=$CPPFLAGS
162                           CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
163                           AC_TRY_COMPILE([#include <stdio.h>],
164                                   [printf("Hello")],
165                                   [],
166                                   [cf_have_incdir=yes])
167                           CPPFLAGS=$cf_save_CPPFLAGS
168                         fi
169                   fi
170                 fi
171
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"
175
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"
179                 else
180                   break
181                 fi
182           fi
183         done
184   done
185 fi
186 ])dnl
187 dnl ---------------------------------------------------------------------------
188 dnl CF_ADD_LIB version: 2 updated: 2010/06/02 05:03:05
189 dnl ----------
190 dnl Add a library, used to enforce consistency.
191 dnl
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
197 dnl -------------
198 dnl     Adds to the library-path
199 dnl
200 dnl     Some machines have trouble with multiple -L options.
201 dnl
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)
204 dnl
205 AC_DEFUN([CF_ADD_LIBDIR],
206 [
207 if test -n "$1" ; then
208   for cf_add_libdir in $1
209   do
210     if test $cf_add_libdir = /usr/lib ; then
211       :
212     elif test -d $cf_add_libdir
213     then
214       cf_have_libdir=no
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
220           fi
221         done
222       fi
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])"
226       fi
227     fi
228   done
229 fi
230 ])dnl
231 dnl ---------------------------------------------------------------------------
232 dnl CF_ADD_LIBS version: 1 updated: 2010/06/02 05:03:05
233 dnl -----------
234 dnl Add one or more libraries, used to enforce consistency.
235 dnl
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
241 dnl ----------------
242 dnl Add a given library after another, e.g., following the one it satisfies a
243 dnl dependency for.
244 dnl
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)
251 ])dnl
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],
262 [
263 test "$4" != "$5" && \
264 test -d "$4" && \
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"
272 }
273 ])dnl
274 dnl ---------------------------------------------------------------------------
275 dnl CF_ANSI_CC_CHECK version: 10 updated: 2010/10/23 15:52:32
276 dnl ----------------
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],
280 [
281 AC_CACHE_CHECK(for ${CC:-cc} option to accept ANSI C, cf_cv_ansi_cc,[
282 cf_cv_ansi_cc=no
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.
287 # AIX                   -qlanglvl=ansi
288 # Ultrix and OSF/1      -std1
289 # HP-UX                 -Aa -D_HPUX_SOURCE
290 # SVR4                  -Xc
291 # UnixWare 1.2          (cannot use -Xc, since ANSI/POSIX clashes)
292 for cf_arg in "-DCC_HAS_PROTOS" \
293         "" \
294         -qlanglvl=ansi \
295         -std1 \
296         -Ae \
297         "-Aa -D_HPUX_SOURCE" \
298         -Xc
299 do
300         CF_ADD_CFLAGS($cf_arg)
301         AC_TRY_COMPILE(
302 [
303 #ifndef CC_HAS_PROTOS
304 #if !defined(__STDC__) || (__STDC__ != 1)
305 choke me
306 #endif
307 #endif
308 ],[
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])
313 done
314 CFLAGS="$cf_save_CFLAGS"
315 CPPFLAGS="$cf_save_CPPFLAGS"
316 ])
317
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)
321 else
322         AC_DEFINE(CC_HAS_PROTOS)
323 fi
324 fi
325 ])dnl
326 dnl ---------------------------------------------------------------------------
327 dnl CF_ANSI_CC_REQD version: 4 updated: 2008/03/23 14:48:54
328 dnl ---------------
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
336         AC_MSG_ERROR(
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])
342 fi
343 ])dnl
344 dnl ---------------------------------------------------------------------------
345 dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
346 dnl --------------
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
352 dnl -------------
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
358 dnl -------------
359 dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
360 dnl values.
361 dnl
362 dnl Parameters:
363 dnl $1 = option name
364 dnl $2 = help-string
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
371 ifelse([$3],,[    :]dnl
372 ,[    $3]) ifelse([$4],,,[
373   else
374     $4])
375   fi],[enableval=$5 ifelse([$4],,,[
376   $4
377 ])dnl
378   ])])dnl
379 dnl ---------------------------------------------------------------------------
380 dnl CF_CHECK_CACHE version: 11 updated: 2008/03/23 14:45:59
381 dnl --------------
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.
384 dnl
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.
389 dnl
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],
393 [
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"
397 else
398         system_name="`(uname -s -r) 2>/dev/null`"
399         if test -z "$system_name" ; then
400                 system_name="`(hostname) 2>/dev/null`"
401         fi
402 fi
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"])
405
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)
408
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.")
412 fi
413 ])dnl
414 dnl ---------------------------------------------------------------------------
415 dnl CF_CHECK_CFLAGS version: 2 updated: 2001/12/30 19:09:58
416 dnl ---------------
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],
422 [
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)
432          fi
433          CFLAGS="$cf_check_flags"])
434 fi
435 ])dnl
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],
441 [
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
446 do
447 AC_TRY_LINK([
448 #include <${cf_cv_ncurses_header:-curses.h}>
449 ],[
450 $name['k'] = ACS_PLUS
451 ],[cf_cv_curses_acs_map=$name; break])
452 done
453 ])
454
455 test "$cf_cv_curses_acs_map" != unknown && AC_DEFINE_UNQUOTED(CURSES_ACS_ARRAY,$cf_cv_curses_acs_map)
456 ])
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],
463 [
464 AC_MSG_CHECKING(for data $1 declaration in ${cf_cv_ncurses_header:-curses.h})
465
466 AC_TRY_COMPILE(CF__CURSES_HEAD,[
467 void *foo = &($1)
468 ],cf_result=yes,cf_result=no)
469 AC_MSG_RESULT($cf_result)
470
471 if test $cf_result = yes ; then
472         CF_UPPER(cf_result,have_curses_data_$1)
473         AC_DEFINE_UNQUOTED($cf_result)
474 else
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
478 [
479 extern char $1;
480 int main(void)
481 {
482         void *foo = &($1);
483         ${cf_cv_main_return:-return}(foo == 0);
484 }],[cf_result=yes],[cf_result=no],[
485         # cross-compiling
486         AC_TRY_LINK(CF__CURSES_HEAD
487 [extern char $1;],[
488         do {
489                 void *foo = &($1);
490                 ${cf_cv_main_return:-return}(foo == 0);
491         } while (0)
492 ],[cf_result=yes],[cf_result=no])
493 ])
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)
498         fi
499 fi
500 ])dnl
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],
506 [
507 AC_MSG_CHECKING(for type $1 in ${cf_cv_ncurses_header:-curses.h})
508 AC_TRY_COMPILE([
509 #ifndef _XOPEN_SOURCE_EXTENDED
510 #define _XOPEN_SOURCE_EXTENDED
511 #endif
512 #include <${cf_cv_ncurses_header:-curses.h}>],[
513 $1 foo
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)
519 else
520         AC_DEFINE_UNQUOTED($1,$2)
521 fi
522 ])dnl
523 dnl ---------------------------------------------------------------------------
524 dnl CF_CURSES_CONFIG version: 2 updated: 2006/10/29 11:06:27
525 dnl ----------------
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],
530 [
531 CF_CURSES_CPPFLAGS
532 CF_NCURSES_VERSION
533 CF_CURSES_LIBS
534 ])dnl
535 dnl ---------------------------------------------------------------------------
536 dnl CF_CURSES_CPPFLAGS version: 11 updated: 2011/04/09 14:51:08
537 dnl ------------------
538 dnl Look for the curses headers.
539 AC_DEFUN([CF_CURSES_CPPFLAGS],[
540
541 AC_CACHE_CHECK(for extra include directories,cf_cv_curses_incdir,[
542 cf_cv_curses_incdir=no
543 case $host_os in #(vi
544 hpux10.*) #(vi
545         if test "x$cf_cv_screen" = "xcurses_colr"
546         then
547                 test -d /usr/include/curses_colr && \
548                 cf_cv_curses_incdir="-I/usr/include/curses_colr"
549         fi
550         ;;
551 sunos3*|sunos4*)
552         if test "x$cf_cv_screen" = "xcurses_5lib"
553         then
554                 test -d /usr/5lib && \
555                 test -d /usr/5include && \
556                 cf_cv_curses_incdir="-I/usr/5include"
557         fi
558         ;;
559 esac
560 ])
561 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir"
562
563 CF_CURSES_HEADER
564 CF_TERM_HEADER
565 ])dnl
566 dnl ---------------------------------------------------------------------------
567 dnl CF_CURSES_FUNCS version: 16 updated: 2011/04/09 18:19:55
568 dnl ---------------
569 dnl Curses-functions are a little complicated, since a lot of them are macros.
570 AC_DEFUN([CF_CURSES_FUNCS],
571 [
572 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
573 AC_REQUIRE([CF_XOPEN_CURSES])
574 AC_REQUIRE([CF_CURSES_TERM_H])
575 AC_REQUIRE([CF_CURSES_UNCTRL_H])
576 for cf_func in $1
577 do
578         CF_UPPER(cf_tr_func,$cf_func)
579         AC_MSG_CHECKING(for ${cf_func})
580         CF_MSG_LOG(${cf_func})
581         AC_CACHE_VAL(cf_cv_func_$cf_func,[
582                 eval cf_result='$ac_cv_func_'$cf_func
583                 if test ".$cf_result" != ".no"; then
584                         AC_TRY_LINK(CF__CURSES_HEAD,
585                         [
586 #ifndef ${cf_func}
587 long foo = (long)(&${cf_func});
588 ${cf_cv_main_return:-return}(foo == 0);
589 #endif
590                         ],
591                         [cf_result=yes],
592                         [cf_result=no])
593                 fi
594                 eval 'cf_cv_func_'$cf_func'=$cf_result'
595         ])
596         # use the computed/retrieved cache-value:
597         eval 'cf_result=$cf_cv_func_'$cf_func
598         AC_MSG_RESULT($cf_result)
599         if test $cf_result != no; then
600                 AC_DEFINE_UNQUOTED(HAVE_${cf_tr_func})
601         fi
602 done
603 ])dnl
604 dnl ---------------------------------------------------------------------------
605 dnl CF_CURSES_HEADER version: 3 updated: 2011/05/01 19:47:45
606 dnl ----------------
607 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
608 dnl variations of ncurses' installs.
609 dnl
610 dnl $1 = ncurses when looking for ncurses, or is empty
611 AC_DEFUN([CF_CURSES_HEADER],[
612 AC_CACHE_CHECK(if we have identified curses headers,cf_cv_ncurses_header,[
613 cf_cv_ncurses_header=none
614 for cf_header in ifelse($1,,,[ \
615     $1/ncurses.h \
616         $1/curses.h]) \
617         ncurses.h \
618         curses.h ifelse($1,,[ncurses/ncurses.h ncurses/curses.h])
619 do
620 AC_TRY_COMPILE([#include <${cf_header}>],
621         [initscr(); tgoto("?", 0,0)],
622         [cf_cv_ncurses_header=$cf_header; break],[])
623 done
624 ])
625
626 if test "$cf_cv_ncurses_header" = none ; then
627         AC_MSG_ERROR(No curses header-files found)
628 fi
629
630 # cheat, to get the right #define's for HAVE_NCURSES_H, etc.
631 AC_CHECK_HEADERS($cf_cv_ncurses_header)
632 ])dnl
633 dnl ---------------------------------------------------------------------------
634 dnl CF_CURSES_LIBS version: 34 updated: 2011/04/09 14:51:08
635 dnl --------------
636 dnl Look for the curses libraries.  Older curses implementations may require
637 dnl termcap/termlib to be linked as well.  Call CF_CURSES_CPPFLAGS first.
638 AC_DEFUN([CF_CURSES_LIBS],[
639
640 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
641 AC_MSG_CHECKING(if we have identified curses libraries)
642 AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
643     [initscr(); tgoto("?", 0,0)],
644     cf_result=yes,
645     cf_result=no)
646 AC_MSG_RESULT($cf_result)
647
648 if test "$cf_result" = no ; then
649 case $host_os in #(vi
650 freebsd*) #(vi
651     AC_CHECK_LIB(mytinfo,tgoto,[CF_ADD_LIBS(-lmytinfo)])
652     ;;
653 hpux10.*) #(vi
654         # Looking at HPUX 10.20, the Hcurses library is the oldest (1997), cur_colr
655         # next (1998), and xcurses "newer" (2000).  There is no header file for
656         # Hcurses; the subdirectory curses_colr has the headers (curses.h and
657         # term.h) for cur_colr
658         if test "x$cf_cv_screen" = "xcurses_colr"
659         then
660                 AC_CHECK_LIB(cur_colr,initscr,[
661                         CF_ADD_LIBS(-lcur_colr)
662                         ac_cv_func_initscr=yes
663                         ],[
664                 AC_CHECK_LIB(Hcurses,initscr,[
665                         # HP's header uses __HP_CURSES, but user claims _HP_CURSES.
666                         CF_ADD_LIBS(-lHcurses)
667                         CPPFLAGS="$CPPFLAGS -D__HP_CURSES -D_HP_CURSES"
668                         ac_cv_func_initscr=yes
669                         ])])
670         fi
671     ;;
672 linux*)
673         case `arch 2>/dev/null` in
674         x86_64)
675                 if test -d /lib64
676                 then
677                         CF_ADD_LIBDIR(/lib64)
678                 else
679                         CF_ADD_LIBDIR(/lib)
680                 fi
681                 ;;
682         *)
683                 CF_ADD_LIBDIR(/lib)
684                 ;;
685         esac
686     ;;
687 sunos3*|sunos4*)
688         if test "x$cf_cv_screen" = "xcurses_5lib"
689         then
690                 if test -d /usr/5lib ; then
691                         CF_ADD_LIBDIR(/usr/5lib)
692                         CF_ADD_LIBS(-lcurses -ltermcap)
693                 fi
694     fi
695     ac_cv_func_initscr=yes
696     ;;
697 esac
698
699 if test ".$ac_cv_func_initscr" != .yes ; then
700     cf_save_LIBS="$LIBS"
701     cf_term_lib=""
702     cf_curs_lib=""
703
704     if test ".${cf_cv_ncurses_version:-no}" != .no
705     then
706         cf_check_list="ncurses curses cursesX"
707     else
708         cf_check_list="cursesX curses ncurses"
709     fi
710
711     # Check for library containing tgoto.  Do this before curses library
712     # because it may be needed to link the test-case for initscr.
713     AC_CHECK_FUNC(tgoto,[cf_term_lib=predefined],[
714         for cf_term_lib in $cf_check_list termcap termlib unknown
715         do
716             AC_CHECK_LIB($cf_term_lib,tgoto,[break])
717         done
718     ])
719
720     # Check for library containing initscr
721     test "$cf_term_lib" != predefined && test "$cf_term_lib" != unknown && LIBS="-l$cf_term_lib $cf_save_LIBS"
722         for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown
723     do
724         AC_CHECK_LIB($cf_curs_lib,initscr,[break])
725     done
726     test $cf_curs_lib = unknown && AC_MSG_ERROR(no curses library found)
727
728     LIBS="-l$cf_curs_lib $cf_save_LIBS"
729     if test "$cf_term_lib" = unknown ; then
730         AC_MSG_CHECKING(if we can link with $cf_curs_lib library)
731         AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
732             [initscr()],
733             [cf_result=yes],
734             [cf_result=no])
735         AC_MSG_RESULT($cf_result)
736         test $cf_result = no && AC_MSG_ERROR(Cannot link curses library)
737     elif test "$cf_curs_lib" = "$cf_term_lib" ; then
738         :
739     elif test "$cf_term_lib" != predefined ; then
740         AC_MSG_CHECKING(if we need both $cf_curs_lib and $cf_term_lib libraries)
741         AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
742             [initscr(); tgoto((char *)0, 0, 0);],
743             [cf_result=no],
744             [
745             LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
746             AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
747                 [initscr()],
748                 [cf_result=yes],
749                 [cf_result=error])
750             ])
751         AC_MSG_RESULT($cf_result)
752     fi
753 fi
754 fi
755
756 ])dnl
757 dnl ---------------------------------------------------------------------------
758 dnl CF_CURSES_TERM_H version: 9 updated: 2011/04/09 18:19:55
759 dnl ----------------
760 dnl SVr4 curses should have term.h as well (where it puts the definitions of
761 dnl the low-level interface).  This may not be true in old/broken implementations,
762 dnl as well as in misconfigured systems (e.g., gcc configured for Solaris 2.4
763 dnl running with Solaris 2.5.1).
764 AC_DEFUN([CF_CURSES_TERM_H],
765 [
766 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
767
768 AC_CACHE_CHECK(for term.h, cf_cv_term_header,[
769
770 # If we found <ncurses/curses.h>, look for <ncurses/term.h>, but always look
771 # for <term.h> if we do not find the variant.
772
773 cf_header_list="term.h ncurses/term.h ncursesw/term.h"
774
775 case ${cf_cv_ncurses_header:-curses.h} in #(vi
776 */*)
777         cf_header_item=`echo ${cf_cv_ncurses_header:-curses.h} | sed -e 's%\..*%%' -e 's%/.*%/%'`term.h
778         cf_header_list="$cf_header_item $cf_header_list"
779         ;;
780 esac
781
782 for cf_header in $cf_header_list
783 do
784         AC_TRY_COMPILE([
785 #include <${cf_cv_ncurses_header:-curses.h}>
786 #include <${cf_header}>],
787         [WINDOW *x],
788         [cf_cv_term_header=$cf_header
789          break],
790         [cf_cv_term_header=no])
791 done
792
793 case $cf_cv_term_header in #(vi
794 no)
795         # If curses is ncurses, some packagers still mess it up by trying to make
796         # us use GNU termcap.  This handles the most common case.
797         for cf_header in ncurses/term.h ncursesw/term.h
798         do
799                 AC_TRY_COMPILE([
800 #include <${cf_cv_ncurses_header:-curses.h}>
801 #ifdef NCURSES_VERSION
802 #include <${cf_header}>
803 #else
804 make an error
805 #endif],
806                         [WINDOW *x],
807                         [cf_cv_term_header=$cf_header
808                          break],
809                         [cf_cv_term_header=no])
810         done
811         ;;
812 esac
813 ])
814
815 case $cf_cv_term_header in #(vi
816 term.h) #(vi
817         AC_DEFINE(HAVE_TERM_H)
818         ;;
819 ncurses/term.h) #(vi
820         AC_DEFINE(HAVE_NCURSES_TERM_H)
821         ;;
822 ncursesw/term.h)
823         AC_DEFINE(HAVE_NCURSESW_TERM_H)
824         ;;
825 esac
826 ])dnl
827 dnl ---------------------------------------------------------------------------
828 dnl CF_CURSES_UNCTRL_H version: 1 updated: 2011/04/09 18:19:55
829 dnl ------------------
830 dnl Any X/Open curses implementation must have unctrl.h, but ncurses packages
831 dnl may put it in a subdirectory (along with ncurses' other headers, of
832 dnl course).  Packages which put the headers in inconsistent locations are
833 dnl broken).
834 AC_DEFUN([CF_CURSES_UNCTRL_H],
835 [
836 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
837
838 AC_CACHE_CHECK(for unctrl.h, cf_cv_unctrl_header,[
839
840 # If we found <ncurses/curses.h>, look for <ncurses/unctrl.h>, but always look
841 # for <unctrl.h> if we do not find the variant.
842
843 cf_header_list="unctrl.h ncurses/unctrl.h ncursesw/unctrl.h"
844
845 case ${cf_cv_ncurses_header:-curses.h} in #(vi
846 */*)
847         cf_header_item=`echo ${cf_cv_ncurses_header:-curses.h} | sed -e 's%\..*%%' -e 's%/.*%/%'`unctrl.h
848         cf_header_list="$cf_header_item $cf_header_list"
849         ;;
850 esac
851
852 for cf_header in $cf_header_list
853 do
854         AC_TRY_COMPILE([
855 #include <${cf_cv_ncurses_header:-curses.h}>
856 #include <${cf_header}>],
857         [WINDOW *x],
858         [cf_cv_unctrl_header=$cf_header
859          break],
860         [cf_cv_unctrl_header=no])
861 done
862
863 case $cf_cv_unctrl_header in #(vi
864 no)
865         AC_MSG_WARN(unctrl.h header not found)
866         ;;
867 esac
868 ])
869
870 case $cf_cv_unctrl_header in #(vi
871 unctrl.h) #(vi
872         AC_DEFINE(HAVE_UNCTRL_H)
873         ;;
874 ncurses/unctrl.h) #(vi
875         AC_DEFINE(HAVE_NCURSES_UNCTRL_H)
876         ;;
877 ncursesw/unctrl.h)
878         AC_DEFINE(HAVE_NCURSESW_UNCTRL_H)
879         ;;
880 esac
881 ])dnl
882 dnl ---------------------------------------------------------------------------
883 dnl CF_CURSES_WACS_MAP version: 5 updated: 2011/01/15 11:28:59
884 dnl ------------------
885 dnl Check for likely values of wacs_map[].
886 AC_DEFUN([CF_CURSES_WACS_MAP],
887 [
888 AC_CACHE_CHECK(for wide alternate character set array, cf_cv_curses_wacs_map,[
889         cf_cv_curses_wacs_map=unknown
890         for name in wacs_map _wacs_map __wacs_map _nc_wacs _wacs_char
891         do
892         AC_TRY_LINK([
893 #ifndef _XOPEN_SOURCE_EXTENDED
894 #define _XOPEN_SOURCE_EXTENDED
895 #endif
896 #include <${cf_cv_ncurses_header:-curses.h}>],
897         [void *foo = &($name['k'])],
898         [cf_cv_curses_wacs_map=$name
899          break])
900         done])
901
902 test "$cf_cv_curses_wacs_map" != unknown && AC_DEFINE_UNQUOTED(CURSES_WACS_ARRAY,$cf_cv_curses_wacs_map)
903 ])dnl
904 dnl ---------------------------------------------------------------------------
905 dnl CF_CURSES_WACS_SYMBOLS version: 1 updated: 2011/01/15 11:28:59
906 dnl ----------------------
907 dnl Do a check to see if the WACS_xxx constants are defined compatibly with
908 dnl X/Open Curses.  In particular, NetBSD's implementation of the WACS_xxx
909 dnl constants is broken since those constants do not point to cchar_t's.
910 AC_DEFUN([CF_CURSES_WACS_SYMBOLS],
911 [
912 AC_REQUIRE([CF_CURSES_WACS_MAP])
913
914 AC_CACHE_CHECK(for wide alternate character constants, cf_cv_curses_wacs_symbols,[
915 cf_cv_curses_wacs_symbols=no
916 if test "$cf_cv_curses_wacs_map" != unknown
917 then
918         AC_TRY_LINK([
919 #ifndef _XOPEN_SOURCE_EXTENDED
920 #define _XOPEN_SOURCE_EXTENDED
921 #endif
922 #include <${cf_cv_ncurses_header:-curses.h}>],
923         [cchar_t *foo = WACS_PLUS;
924          $cf_cv_curses_wacs_map['k'] = *WACS_PLUS],
925         [cf_cv_curses_wacs_symbols=yes])
926 else
927         AC_TRY_LINK([
928 #ifndef _XOPEN_SOURCE_EXTENDED
929 #define _XOPEN_SOURCE_EXTENDED
930 #endif
931 #include <${cf_cv_ncurses_header:-curses.h}>],
932         [cchar_t *foo = WACS_PLUS],
933         [cf_cv_curses_wacs_symbols=yes])
934 fi
935 ])
936
937 test "$cf_cv_curses_wacs_symbols" != no && AC_DEFINE(CURSES_WACS_SYMBOLS)
938 ])dnl
939 dnl ---------------------------------------------------------------------------
940 dnl CF_DIRNAME version: 4 updated: 2002/12/21 19:25:52
941 dnl ----------
942 dnl "dirname" is not portable, so we fake it with a shell script.
943 AC_DEFUN([CF_DIRNAME],[$1=`echo $2 | sed -e 's%/[[^/]]*$%%'`])dnl
944 dnl ---------------------------------------------------------------------------
945 dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57
946 dnl ---------------
947 dnl You can always use "make -n" to see the actual options, but it's hard to
948 dnl pick out/analyze warning messages when the compile-line is long.
949 dnl
950 dnl Sets:
951 dnl     ECHO_LT - symbol to control if libtool is verbose
952 dnl     ECHO_LD - symbol to prefix "cc -o" lines
953 dnl     RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
954 dnl     SHOW_CC - symbol to put before explicit "cc -c" lines
955 dnl     ECHO_CC - symbol to put before any "cc" line
956 dnl
957 AC_DEFUN([CF_DISABLE_ECHO],[
958 AC_MSG_CHECKING(if you want to see long compiling messages)
959 CF_ARG_DISABLE(echo,
960         [  --disable-echo          display "compiling" commands],
961         [
962     ECHO_LT='--silent'
963     ECHO_LD='@echo linking [$]@;'
964     RULE_CC='@echo compiling [$]<'
965     SHOW_CC='@echo compiling [$]@'
966     ECHO_CC='@'
967 ],[
968     ECHO_LT=''
969     ECHO_LD=''
970     RULE_CC=''
971     SHOW_CC=''
972     ECHO_CC=''
973 ])
974 AC_MSG_RESULT($enableval)
975 AC_SUBST(ECHO_LT)
976 AC_SUBST(ECHO_LD)
977 AC_SUBST(RULE_CC)
978 AC_SUBST(SHOW_CC)
979 AC_SUBST(ECHO_CC)
980 ])dnl
981 dnl ---------------------------------------------------------------------------
982 dnl CF_DISABLE_LEAKS version: 6 updated: 2010/07/23 04:14:32
983 dnl ----------------
984 dnl Combine no-leak checks with the libraries or tools that are used for the
985 dnl checks.
986 AC_DEFUN([CF_DISABLE_LEAKS],[
987
988 AC_REQUIRE([CF_WITH_DMALLOC])
989 AC_REQUIRE([CF_WITH_DBMALLOC])
990 AC_REQUIRE([CF_WITH_VALGRIND])
991
992 AC_MSG_CHECKING(if you want to perform memory-leak testing)
993 AC_ARG_ENABLE(leaks,
994         [  --disable-leaks         test: free permanent memory, analyze leaks],
995         [if test "x$enableval" = xno; then with_no_leaks=yes; else with_no_leaks=no; fi],
996         : ${with_no_leaks:=no})
997 AC_MSG_RESULT($with_no_leaks)
998
999 if test "$with_no_leaks" = yes ; then
1000         AC_DEFINE(NO_LEAKS)
1001         AC_DEFINE(YY_NO_LEAKS)
1002 fi
1003 ])dnl
1004 dnl ---------------------------------------------------------------------------
1005 dnl CF_ENABLE_WARNINGS version: 4 updated: 2009/07/26 17:53:03
1006 dnl ------------------
1007 dnl Configure-option to enable gcc warnings
1008 AC_DEFUN([CF_ENABLE_WARNINGS],[
1009 if ( test "$GCC" = yes || test "$GXX" = yes )
1010 then
1011 AC_MSG_CHECKING(if you want to turn on gcc warnings)
1012 CF_ARG_ENABLE(warnings,
1013         [  --enable-warnings       test: turn on gcc compiler warnings],
1014         [with_warnings=yes],
1015         [with_warnings=no])
1016 AC_MSG_RESULT($with_warnings)
1017 if test "$with_warnings" = "yes"
1018 then
1019         CF_GCC_ATTRIBUTES
1020         CF_GCC_WARNINGS
1021 fi
1022 fi
1023 ])dnl
1024 dnl ---------------------------------------------------------------------------
1025 dnl CF_FIND_LIBRARY version: 9 updated: 2008/03/23 14:48:54
1026 dnl ---------------
1027 dnl Look for a non-standard library, given parameters for AC_TRY_LINK.  We
1028 dnl prefer a standard location, and use -L options only if we do not find the
1029 dnl library in the standard library location(s).
1030 dnl     $1 = library name
1031 dnl     $2 = library class, usually the same as library name
1032 dnl     $3 = includes
1033 dnl     $4 = code fragment to compile/link
1034 dnl     $5 = corresponding function-name
1035 dnl     $6 = flag, nonnull if failure should not cause an error-exit
1036 dnl
1037 dnl Sets the variable "$cf_libdir" as a side-effect, so we can see if we had
1038 dnl to use a -L option.
1039 AC_DEFUN([CF_FIND_LIBRARY],
1040 [
1041         eval 'cf_cv_have_lib_'$1'=no'
1042         cf_libdir=""
1043         AC_CHECK_FUNC($5,
1044                 eval 'cf_cv_have_lib_'$1'=yes',[
1045                 cf_save_LIBS="$LIBS"
1046                 AC_MSG_CHECKING(for $5 in -l$1)
1047                 LIBS="-l$1 $LIBS"
1048                 AC_TRY_LINK([$3],[$4],
1049                         [AC_MSG_RESULT(yes)
1050                          eval 'cf_cv_have_lib_'$1'=yes'
1051                         ],
1052                         [AC_MSG_RESULT(no)
1053                         CF_LIBRARY_PATH(cf_search,$2)
1054                         for cf_libdir in $cf_search
1055                         do
1056                                 AC_MSG_CHECKING(for -l$1 in $cf_libdir)
1057                                 LIBS="-L$cf_libdir -l$1 $cf_save_LIBS"
1058                                 AC_TRY_LINK([$3],[$4],
1059                                         [AC_MSG_RESULT(yes)
1060                                          eval 'cf_cv_have_lib_'$1'=yes'
1061                                          break],
1062                                         [AC_MSG_RESULT(no)
1063                                          LIBS="$cf_save_LIBS"])
1064                         done
1065                         ])
1066                 ])
1067 eval 'cf_found_library=[$]cf_cv_have_lib_'$1
1068 ifelse($6,,[
1069 if test $cf_found_library = no ; then
1070         AC_MSG_ERROR(Cannot link $1 library)
1071 fi
1072 ])
1073 ])dnl
1074 dnl ---------------------------------------------------------------------------
1075 dnl CF_FIND_LINKAGE version: 19 updated: 2010/05/29 16:31:02
1076 dnl ---------------
1077 dnl Find a library (specifically the linkage used in the code fragment),
1078 dnl searching for it if it is not already in the library path.
1079 dnl See also CF_ADD_SEARCHPATH.
1080 dnl
1081 dnl Parameters (4-on are optional):
1082 dnl     $1 = headers for library entrypoint
1083 dnl     $2 = code fragment for library entrypoint
1084 dnl     $3 = the library name without the "-l" option or ".so" suffix.
1085 dnl     $4 = action to perform if successful (default: update CPPFLAGS, etc)
1086 dnl     $5 = action to perform if not successful
1087 dnl     $6 = module name, if not the same as the library name
1088 dnl     $7 = extra libraries
1089 dnl
1090 dnl Sets these variables:
1091 dnl     $cf_cv_find_linkage_$3 - yes/no according to whether linkage is found
1092 dnl     $cf_cv_header_path_$3 - include-directory if needed
1093 dnl     $cf_cv_library_path_$3 - library-directory if needed
1094 dnl     $cf_cv_library_file_$3 - library-file if needed, e.g., -l$3
1095 AC_DEFUN([CF_FIND_LINKAGE],[
1096
1097 # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these
1098 # will be set on completion of the AC_TRY_LINK below.
1099 cf_cv_header_path_$3=
1100 cf_cv_library_path_$3=
1101
1102 CF_MSG_LOG([Starting [FIND_LINKAGE]($3,$6)])
1103
1104 cf_save_LIBS="$LIBS"
1105
1106 AC_TRY_LINK([$1],[$2],[
1107         cf_cv_find_linkage_$3=yes
1108         cf_cv_header_path_$3=/usr/include
1109         cf_cv_library_path_$3=/usr/lib
1110 ],[
1111
1112 LIBS="-l$3 $7 $cf_save_LIBS"
1113
1114 AC_TRY_LINK([$1],[$2],[
1115         cf_cv_find_linkage_$3=yes
1116         cf_cv_header_path_$3=/usr/include
1117         cf_cv_library_path_$3=/usr/lib
1118         cf_cv_library_file_$3="-l$3"
1119 ],[
1120         cf_cv_find_linkage_$3=no
1121         LIBS="$cf_save_LIBS"
1122
1123     CF_VERBOSE(find linkage for $3 library)
1124     CF_MSG_LOG([Searching for headers in [FIND_LINKAGE]($3,$6)])
1125
1126     cf_save_CPPFLAGS="$CPPFLAGS"
1127     cf_test_CPPFLAGS="$CPPFLAGS"
1128
1129     CF_HEADER_PATH(cf_search,ifelse([$6],,[$3],[$6]))
1130     for cf_cv_header_path_$3 in $cf_search
1131     do
1132       if test -d $cf_cv_header_path_$3 ; then
1133         CF_VERBOSE(... testing $cf_cv_header_path_$3)
1134         CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_$3"
1135         AC_TRY_COMPILE([$1],[$2],[
1136             CF_VERBOSE(... found $3 headers in $cf_cv_header_path_$3)
1137             cf_cv_find_linkage_$3=maybe
1138             cf_test_CPPFLAGS="$CPPFLAGS"
1139             break],[
1140             CPPFLAGS="$cf_save_CPPFLAGS"
1141             ])
1142       fi
1143     done
1144
1145     if test "$cf_cv_find_linkage_$3" = maybe ; then
1146
1147       CF_MSG_LOG([Searching for $3 library in [FIND_LINKAGE]($3,$6)])
1148
1149       cf_save_LIBS="$LIBS"
1150       cf_save_LDFLAGS="$LDFLAGS"
1151
1152       ifelse([$6],,,[
1153         CPPFLAGS="$cf_test_CPPFLAGS"
1154         LIBS="-l$3 $7 $cf_save_LIBS"
1155         AC_TRY_LINK([$1],[$2],[
1156             CF_VERBOSE(... found $3 library in system)
1157             cf_cv_find_linkage_$3=yes])
1158             CPPFLAGS="$cf_save_CPPFLAGS"
1159             LIBS="$cf_save_LIBS"
1160             ])
1161
1162       if test "$cf_cv_find_linkage_$3" != yes ; then
1163         CF_LIBRARY_PATH(cf_search,$3)
1164         for cf_cv_library_path_$3 in $cf_search
1165         do
1166           if test -d $cf_cv_library_path_$3 ; then
1167             CF_VERBOSE(... testing $cf_cv_library_path_$3)
1168             CPPFLAGS="$cf_test_CPPFLAGS"
1169             LIBS="-l$3 $7 $cf_save_LIBS"
1170             LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_$3"
1171             AC_TRY_LINK([$1],[$2],[
1172                 CF_VERBOSE(... found $3 library in $cf_cv_library_path_$3)
1173                 cf_cv_find_linkage_$3=yes
1174                 cf_cv_library_file_$3="-l$3"
1175                 break],[
1176                 CPPFLAGS="$cf_save_CPPFLAGS"
1177                 LIBS="$cf_save_LIBS"
1178                 LDFLAGS="$cf_save_LDFLAGS"
1179                 ])
1180           fi
1181         done
1182         CPPFLAGS="$cf_save_CPPFLAGS"
1183         LDFLAGS="$cf_save_LDFLAGS"
1184       fi
1185
1186     else
1187       cf_cv_find_linkage_$3=no
1188     fi
1189     ],$7)
1190 ])
1191
1192 LIBS="$cf_save_LIBS"
1193
1194 if test "$cf_cv_find_linkage_$3" = yes ; then
1195 ifelse([$4],,[
1196         CF_ADD_INCDIR($cf_cv_header_path_$3)
1197         CF_ADD_LIBDIR($cf_cv_library_path_$3)
1198         CF_ADD_LIB($3)
1199 ],[$4])
1200 else
1201 ifelse([$5],,AC_MSG_WARN(Cannot find $3 library),[$5])
1202 fi
1203 ])dnl
1204 dnl ---------------------------------------------------------------------------
1205 dnl CF_FUNC_CURSES_VERSION version: 5 updated: 2010/10/23 15:54:49
1206 dnl ----------------------
1207 dnl Solaris has a data item 'curses_version', which confuses AC_CHECK_FUNCS.
1208 dnl It's a character string "SVR4", not documented.
1209 AC_DEFUN([CF_FUNC_CURSES_VERSION],
1210 [
1211 AC_CACHE_CHECK(for function curses_version, cf_cv_func_curses_version,[
1212 AC_TRY_RUN([
1213 #include <${cf_cv_ncurses_header:-curses.h}>
1214 int main()
1215 {
1216         char temp[1024];
1217         sprintf(temp, "%s\n", curses_version());
1218         ${cf_cv_main_return:-return}(0);
1219 }]
1220 ,[cf_cv_func_curses_version=yes]
1221 ,[cf_cv_func_curses_version=no]
1222 ,[cf_cv_func_curses_version=unknown])
1223 rm -f core])
1224 test "$cf_cv_func_curses_version" = yes && AC_DEFINE(HAVE_CURSES_VERSION)
1225 ])
1226 dnl ---------------------------------------------------------------------------
1227 dnl CF_GCC_ATTRIBUTES version: 14 updated: 2010/10/23 15:52:32
1228 dnl -----------------
1229 dnl Test for availability of useful gcc __attribute__ directives to quiet
1230 dnl compiler warnings.  Though useful, not all are supported -- and contrary
1231 dnl to documentation, unrecognized directives cause older compilers to barf.
1232 AC_DEFUN([CF_GCC_ATTRIBUTES],
1233 [
1234 if test "$GCC" = yes
1235 then
1236 cat > conftest.i <<EOF
1237 #ifndef GCC_PRINTF
1238 #define GCC_PRINTF 0
1239 #endif
1240 #ifndef GCC_SCANF
1241 #define GCC_SCANF 0
1242 #endif
1243 #ifndef GCC_NORETURN
1244 #define GCC_NORETURN /* nothing */
1245 #endif
1246 #ifndef GCC_UNUSED
1247 #define GCC_UNUSED /* nothing */
1248 #endif
1249 EOF
1250 if test "$GCC" = yes
1251 then
1252         AC_CHECKING([for $CC __attribute__ directives])
1253 cat > conftest.$ac_ext <<EOF
1254 #line __oline__ "${as_me:-configure}"
1255 #include "confdefs.h"
1256 #include "conftest.h"
1257 #include "conftest.i"
1258 #if     GCC_PRINTF
1259 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
1260 #else
1261 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
1262 #endif
1263 #if     GCC_SCANF
1264 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
1265 #else
1266 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
1267 #endif
1268 extern void wow(char *,...) GCC_SCANFLIKE(1,2);
1269 extern void oops(char *,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
1270 extern void foo(void) GCC_NORETURN;
1271 int main(int argc GCC_UNUSED, char *argv[[]] GCC_UNUSED) { return 0; }
1272 EOF
1273         cf_printf_attribute=no
1274         cf_scanf_attribute=no
1275         for cf_attribute in scanf printf unused noreturn
1276         do
1277                 CF_UPPER(cf_ATTRIBUTE,$cf_attribute)
1278                 cf_directive="__attribute__(($cf_attribute))"
1279                 echo "checking for $CC $cf_directive" 1>&AC_FD_CC
1280
1281                 case $cf_attribute in #(vi
1282                 printf) #(vi
1283                         cf_printf_attribute=yes
1284                         cat >conftest.h <<EOF
1285 #define GCC_$cf_ATTRIBUTE 1
1286 EOF
1287                         ;;
1288                 scanf) #(vi
1289                         cf_scanf_attribute=yes
1290                         cat >conftest.h <<EOF
1291 #define GCC_$cf_ATTRIBUTE 1
1292 EOF
1293                         ;;
1294                 *) #(vi
1295                         cat >conftest.h <<EOF
1296 #define GCC_$cf_ATTRIBUTE $cf_directive
1297 EOF
1298                         ;;
1299                 esac
1300
1301                 if AC_TRY_EVAL(ac_compile); then
1302                         test -n "$verbose" && AC_MSG_RESULT(... $cf_attribute)
1303                         cat conftest.h >>confdefs.h
1304                         case $cf_attribute in #(vi
1305                         printf) #(vi
1306                                 if test "$cf_printf_attribute" = no ; then
1307                                         cat >>confdefs.h <<EOF
1308 #define GCC_PRINTFLIKE(fmt,var) /* nothing */
1309 EOF
1310                                 else
1311                                         cat >>confdefs.h <<EOF
1312 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
1313 EOF
1314                                 fi
1315                                 ;;
1316                         scanf) #(vi
1317                                 if test "$cf_scanf_attribute" = no ; then
1318                                         cat >>confdefs.h <<EOF
1319 #define GCC_SCANFLIKE(fmt,var) /* nothing */
1320 EOF
1321                                 else
1322                                         cat >>confdefs.h <<EOF
1323 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
1324 EOF
1325                                 fi
1326                                 ;;
1327                         esac
1328                 fi
1329         done
1330 else
1331         fgrep define conftest.i >>confdefs.h
1332 fi
1333 rm -rf conftest*
1334 fi
1335 ])dnl
1336 dnl ---------------------------------------------------------------------------
1337 dnl CF_GCC_VERSION version: 5 updated: 2010/04/24 11:02:31
1338 dnl --------------
1339 dnl Find version of gcc
1340 AC_DEFUN([CF_GCC_VERSION],[
1341 AC_REQUIRE([AC_PROG_CC])
1342 GCC_VERSION=none
1343 if test "$GCC" = yes ; then
1344         AC_MSG_CHECKING(version of $CC)
1345         GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
1346         test -z "$GCC_VERSION" && GCC_VERSION=unknown
1347         AC_MSG_RESULT($GCC_VERSION)
1348 fi
1349 ])dnl
1350 dnl ---------------------------------------------------------------------------
1351 dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
1352 dnl ---------------
1353 dnl Check if the compiler supports useful warning options.  There's a few that
1354 dnl we don't use, simply because they're too noisy:
1355 dnl
1356 dnl     -Wconversion (useful in older versions of gcc, but not in gcc 2.7.x)
1357 dnl     -Wredundant-decls (system headers make this too noisy)
1358 dnl     -Wtraditional (combines too many unrelated messages, only a few useful)
1359 dnl     -Wwrite-strings (too noisy, but should review occasionally).  This
1360 dnl             is enabled for ncurses using "--enable-const".
1361 dnl     -pedantic
1362 dnl
1363 dnl Parameter:
1364 dnl     $1 is an optional list of gcc warning flags that a particular
1365 dnl             application might want to use, e.g., "no-unused" for
1366 dnl             -Wno-unused
1367 dnl Special:
1368 dnl     If $with_ext_const is "yes", add a check for -Wwrite-strings
1369 dnl
1370 AC_DEFUN([CF_GCC_WARNINGS],
1371 [
1372 AC_REQUIRE([CF_GCC_VERSION])
1373 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
1374
1375 cat > conftest.$ac_ext <<EOF
1376 #line __oline__ "${as_me:-configure}"
1377 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
1378 EOF
1379
1380 if test "$INTEL_COMPILER" = yes
1381 then
1382 # The "-wdXXX" options suppress warnings:
1383 # remark #1419: external declaration in primary source file
1384 # remark #1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem)
1385 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
1386 # remark #193: zero used for undefined preprocessing identifier
1387 # remark #593: variable "curs_sb_left_arrow" was set but never used
1388 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
1389 # remark #869: parameter "tw" was never referenced
1390 # remark #981: operands are evaluated in unspecified order
1391 # warning #279: controlling expression is constant
1392
1393         AC_CHECKING([for $CC warning options])
1394         cf_save_CFLAGS="$CFLAGS"
1395         EXTRA_CFLAGS="-Wall"
1396         for cf_opt in \
1397                 wd1419 \
1398                 wd1683 \
1399                 wd1684 \
1400                 wd193 \
1401                 wd593 \
1402                 wd279 \
1403                 wd810 \
1404                 wd869 \
1405                 wd981
1406         do
1407                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1408                 if AC_TRY_EVAL(ac_compile); then
1409                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1410                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1411                 fi
1412         done
1413         CFLAGS="$cf_save_CFLAGS"
1414
1415 elif test "$GCC" = yes
1416 then
1417         AC_CHECKING([for $CC warning options])
1418         cf_save_CFLAGS="$CFLAGS"
1419         EXTRA_CFLAGS=
1420         cf_warn_CONST=""
1421         test "$with_ext_const" = yes && cf_warn_CONST="Wwrite-strings"
1422         for cf_opt in W Wall \
1423                 Wbad-function-cast \
1424                 Wcast-align \
1425                 Wcast-qual \
1426                 Winline \
1427                 Wmissing-declarations \
1428                 Wmissing-prototypes \
1429                 Wnested-externs \
1430                 Wpointer-arith \
1431                 Wshadow \
1432                 Wstrict-prototypes \
1433                 Wundef $cf_warn_CONST $1
1434         do
1435                 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
1436                 if AC_TRY_EVAL(ac_compile); then
1437                         test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
1438                         case $cf_opt in #(vi
1439                         Wcast-qual) #(vi
1440                                 CPPFLAGS="$CPPFLAGS -DXTSTRINGDEFINES"
1441                                 ;;
1442                         Winline) #(vi
1443                                 case $GCC_VERSION in
1444                                 [[34]].*)
1445                                         CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
1446                                         continue;;
1447                                 esac
1448                                 ;;
1449                         esac
1450                         EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
1451                 fi
1452         done
1453         CFLAGS="$cf_save_CFLAGS"
1454 fi
1455 rm -rf conftest*
1456
1457 AC_SUBST(EXTRA_CFLAGS)
1458 ])dnl
1459 dnl ---------------------------------------------------------------------------
1460 dnl CF_GETOPT_HEADER version: 4 updated: 2009/08/31 20:07:52
1461 dnl ----------------
1462 dnl Check for getopt's variables which are commonly defined in stdlib.h,
1463 dnl unistd.h or (nonstandard) in getopt.h
1464 AC_DEFUN([CF_GETOPT_HEADER],
1465 [
1466 AC_HAVE_HEADERS(unistd.h getopt.h)
1467 AC_CACHE_CHECK(for header declaring getopt variables,cf_cv_getopt_header,[
1468 cf_cv_getopt_header=none
1469 for cf_header in stdio.h stdlib.h unistd.h getopt.h
1470 do
1471 AC_TRY_COMPILE([
1472 #include <$cf_header>],
1473 [int x = optind; char *y = optarg],
1474 [cf_cv_getopt_header=$cf_header
1475  break])
1476 done
1477 ])
1478 if test $cf_cv_getopt_header != none ; then
1479         AC_DEFINE(HAVE_GETOPT_HEADER)
1480 fi
1481 ])dnl
1482 dnl ---------------------------------------------------------------------------
1483 dnl CF_GNU_SOURCE version: 6 updated: 2005/07/09 13:23:07
1484 dnl -------------
1485 dnl Check if we must define _GNU_SOURCE to get a reasonable value for
1486 dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
1487 dnl (or misfeature) of glibc2, which breaks portability of many applications,
1488 dnl since it is interwoven with GNU extensions.
1489 dnl
1490 dnl Well, yes we could work around it...
1491 AC_DEFUN([CF_GNU_SOURCE],
1492 [
1493 AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
1494 AC_TRY_COMPILE([#include <sys/types.h>],[
1495 #ifndef _XOPEN_SOURCE
1496 make an error
1497 #endif],
1498         [cf_cv_gnu_source=no],
1499         [cf_save="$CPPFLAGS"
1500          CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
1501          AC_TRY_COMPILE([#include <sys/types.h>],[
1502 #ifdef _XOPEN_SOURCE
1503 make an error
1504 #endif],
1505         [cf_cv_gnu_source=no],
1506         [cf_cv_gnu_source=yes])
1507         CPPFLAGS="$cf_save"
1508         ])
1509 ])
1510 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
1511 ])dnl
1512 dnl ---------------------------------------------------------------------------
1513 dnl CF_HEADER_PATH version: 12 updated: 2010/05/05 05:22:40
1514 dnl --------------
1515 dnl Construct a search-list of directories for a nonstandard header-file
1516 dnl
1517 dnl Parameters
1518 dnl     $1 = the variable to return as result
1519 dnl     $2 = the package name
1520 AC_DEFUN([CF_HEADER_PATH],
1521 [
1522 $1=
1523
1524 # collect the current set of include-directories from compiler flags
1525 cf_header_path_list=""
1526 if test -n "${CFLAGS}${CPPFLAGS}" ; then
1527         for cf_header_path in $CPPFLAGS $CFLAGS
1528         do
1529                 case $cf_header_path in #(vi
1530                 -I*)
1531                         cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'`
1532                         CF_ADD_SUBDIR_PATH($1,$2,include,$cf_header_path,NONE)
1533                         cf_header_path_list="$cf_header_path_list [$]$1"
1534                         ;;
1535                 esac
1536         done
1537 fi
1538
1539 # add the variations for the package we are looking for
1540 CF_SUBDIR_PATH($1,$2,include)
1541
1542 test "$includedir" != NONE && \
1543 test "$includedir" != "/usr/include" && \
1544 test -d "$includedir" && {
1545         test -d $includedir &&    $1="[$]$1 $includedir"
1546         test -d $includedir/$2 && $1="[$]$1 $includedir/$2"
1547 }
1548
1549 test "$oldincludedir" != NONE && \
1550 test "$oldincludedir" != "/usr/include" && \
1551 test -d "$oldincludedir" && {
1552         test -d $oldincludedir    && $1="[$]$1 $oldincludedir"
1553         test -d $oldincludedir/$2 && $1="[$]$1 $oldincludedir/$2"
1554 }
1555
1556 $1="[$]$1 $cf_header_path_list"
1557 ])dnl
1558 dnl ---------------------------------------------------------------------------
1559 dnl CF_INHERIT_SCRIPT version: 2 updated: 2003/03/01 23:50:42
1560 dnl -----------------
1561 dnl If we do not have a given script, look for it in the parent directory.
1562 AC_DEFUN([CF_INHERIT_SCRIPT],
1563 [
1564 test -f $1 || ( test -f ../$1 && cp ../$1 ./ )
1565 ])dnl
1566 dnl ---------------------------------------------------------------------------
1567 dnl CF_INTEL_COMPILER version: 4 updated: 2010/05/26 05:38:42
1568 dnl -----------------
1569 dnl Check if the given compiler is really the Intel compiler for Linux.  It
1570 dnl tries to imitate gcc, but does not return an error when it finds a mismatch
1571 dnl between prototypes, e.g., as exercised by CF_MISSING_CHECK.
1572 dnl
1573 dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
1574 dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
1575 dnl the wrappers for gcc and g++ warnings.
1576 dnl
1577 dnl $1 = GCC (default) or GXX
1578 dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
1579 dnl $3 = CFLAGS (default) or CXXFLAGS
1580 AC_DEFUN([CF_INTEL_COMPILER],[
1581 ifelse([$2],,INTEL_COMPILER,[$2])=no
1582
1583 if test "$ifelse([$1],,[$1],GCC)" = yes ; then
1584         case $host_os in
1585         linux*|gnu*)
1586                 AC_MSG_CHECKING(if this is really Intel ifelse([$1],GXX,C++,C) compiler)
1587                 cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
1588                 ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -no-gcc"
1589                 AC_TRY_COMPILE([],[
1590 #ifdef __INTEL_COMPILER
1591 #else
1592 make an error
1593 #endif
1594 ],[ifelse([$2],,INTEL_COMPILER,[$2])=yes
1595 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
1596 ],[])
1597                 ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
1598                 AC_MSG_RESULT($ifelse([$2],,INTEL_COMPILER,[$2]))
1599                 ;;
1600         esac
1601 fi
1602 ])dnl
1603 dnl ---------------------------------------------------------------------------
1604 dnl CF_LIBRARY_PATH version: 9 updated: 2010/03/28 12:52:50
1605 dnl ---------------
1606 dnl Construct a search-list of directories for a nonstandard library-file
1607 dnl
1608 dnl Parameters
1609 dnl     $1 = the variable to return as result
1610 dnl     $2 = the package name
1611 AC_DEFUN([CF_LIBRARY_PATH],
1612 [
1613 $1=
1614 cf_library_path_list=""
1615 if test -n "${LDFLAGS}${LIBS}" ; then
1616         for cf_library_path in $LDFLAGS $LIBS
1617         do
1618                 case $cf_library_path in #(vi
1619                 -L*)
1620                         cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'`
1621                         CF_ADD_SUBDIR_PATH($1,$2,lib,$cf_library_path,NONE)
1622                         cf_library_path_list="$cf_library_path_list [$]$1"
1623                         ;;
1624                 esac
1625         done
1626 fi
1627
1628 CF_SUBDIR_PATH($1,$2,lib)
1629
1630 $1="$cf_library_path_list [$]$1"
1631 ])dnl
1632 dnl ---------------------------------------------------------------------------
1633 dnl CF_MAKE_TAGS version: 6 updated: 2010/10/23 15:52:32
1634 dnl ------------
1635 dnl Generate tags/TAGS targets for makefiles.  Do not generate TAGS if we have
1636 dnl a monocase filesystem.
1637 AC_DEFUN([CF_MAKE_TAGS],[
1638 AC_REQUIRE([CF_MIXEDCASE_FILENAMES])
1639
1640 AC_CHECK_PROGS(CTAGS, exctags ctags)
1641 AC_CHECK_PROGS(ETAGS, exetags etags)
1642
1643 AC_CHECK_PROG(MAKE_LOWER_TAGS, ${CTAGS:-ctags}, yes, no)
1644
1645 if test "$cf_cv_mixedcase" = yes ; then
1646         AC_CHECK_PROG(MAKE_UPPER_TAGS, ${ETAGS:-etags}, yes, no)
1647 else
1648         MAKE_UPPER_TAGS=no
1649 fi
1650
1651 if test "$MAKE_UPPER_TAGS" = yes ; then
1652         MAKE_UPPER_TAGS=
1653 else
1654         MAKE_UPPER_TAGS="#"
1655 fi
1656
1657 if test "$MAKE_LOWER_TAGS" = yes ; then
1658         MAKE_LOWER_TAGS=
1659 else
1660         MAKE_LOWER_TAGS="#"
1661 fi
1662
1663 AC_SUBST(CTAGS)
1664 AC_SUBST(ETAGS)
1665
1666 AC_SUBST(MAKE_UPPER_TAGS)
1667 AC_SUBST(MAKE_LOWER_TAGS)
1668 ])dnl
1669 dnl ---------------------------------------------------------------------------
1670 dnl CF_MATH_LIB version: 8 updated: 2010/05/29 16:31:02
1671 dnl -----------
1672 dnl Checks for libraries.  At least one UNIX system, Apple Macintosh
1673 dnl Rhapsody 5.5, does not have -lm.  We cannot use the simpler
1674 dnl AC_CHECK_LIB(m,sin), because that fails for C++.
1675 AC_DEFUN([CF_MATH_LIB],
1676 [
1677 AC_CACHE_CHECK(if -lm needed for math functions,
1678         cf_cv_need_libm,[
1679         AC_TRY_LINK([
1680         #include <stdio.h>
1681         #include <math.h>
1682         ],
1683         [double x = rand(); printf("result = %g\n", ]ifelse([$2],,sin(x),$2)[)],
1684         [cf_cv_need_libm=no],
1685         [cf_cv_need_libm=yes])])
1686 if test "$cf_cv_need_libm" = yes
1687 then
1688 ifelse($1,,[
1689         CF_ADD_LIB(m)
1690 ],[$1=-lm])
1691 fi
1692 ])
1693 dnl ---------------------------------------------------------------------------
1694 dnl CF_MIN_GETCCHAR version: 3 updated: 2010/10/23 15:54:49
1695 dnl ---------------
1696 dnl CF_MIN_GETCCHAR
1697 dnl Check whether getcchar's return value counts the trailing null in a wchar_t
1698 dnl string, or not.  X/Open says it does, but Tru64 and Solaris do not do this.
1699 AC_DEFUN([CF_MIN_GETCCHAR],[
1700 AC_CACHE_CHECK(if getcchar counts trailing null,cf_cv_min_getcchar,[
1701 AC_TRY_RUN([
1702 #include <stdlib.h>
1703 #include <stdarg.h>
1704 #include <${cf_cv_ncurses_header:-curses.h}>
1705
1706 int main()
1707 {
1708         wchar_t data[2];
1709         cchar_t temp[2];
1710         int count;
1711         data[0] = L'\0';
1712     setcchar(temp, data, 0, 0, (void *)0);
1713         count = getcchar(temp, (wchar_t *)0, (attr_t *)0, (short *)0, (void *)0);
1714         ${cf_cv_main_return:-return}(count != 0);
1715 }],
1716         [cf_cv_min_getcchar=no],
1717         [cf_cv_min_getcchar=yes],
1718         [cf_cv_min_getcchar=yes])
1719 ])
1720 if test "$cf_cv_min_getcchar" = yes ; then
1721         AC_DEFINE(MIN_GETCCHAR,1)
1722 fi
1723 ])dnl
1724 dnl ---------------------------------------------------------------------------
1725 dnl CF_MIXEDCASE_FILENAMES version: 3 updated: 2003/09/20 17:07:55
1726 dnl ----------------------
1727 dnl Check if the file-system supports mixed-case filenames.  If we're able to
1728 dnl create a lowercase name and see it as uppercase, it doesn't support that.
1729 AC_DEFUN([CF_MIXEDCASE_FILENAMES],
1730 [
1731 AC_CACHE_CHECK(if filesystem supports mixed-case filenames,cf_cv_mixedcase,[
1732 if test "$cross_compiling" = yes ; then
1733         case $target_alias in #(vi
1734         *-os2-emx*|*-msdosdjgpp*|*-cygwin*|*-mingw32*|*-uwin*) #(vi
1735                 cf_cv_mixedcase=no
1736                 ;;
1737         *)
1738                 cf_cv_mixedcase=yes
1739                 ;;
1740         esac
1741 else
1742         rm -f conftest CONFTEST
1743         echo test >conftest
1744         if test -f CONFTEST ; then
1745                 cf_cv_mixedcase=no
1746         else
1747                 cf_cv_mixedcase=yes
1748         fi
1749         rm -f conftest CONFTEST
1750 fi
1751 ])
1752 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES)
1753 ])dnl
1754 dnl ---------------------------------------------------------------------------
1755 dnl CF_MSG_LOG version: 5 updated: 2010/10/23 15:52:32
1756 dnl ----------
1757 dnl Write a debug message to config.log, along with the line number in the
1758 dnl configure script.
1759 AC_DEFUN([CF_MSG_LOG],[
1760 echo "${as_me:-configure}:__oline__: testing $* ..." 1>&AC_FD_CC
1761 ])dnl
1762 dnl ---------------------------------------------------------------------------
1763 dnl CF_NCURSES_CC_CHECK version: 4 updated: 2007/07/29 10:39:05
1764 dnl -------------------
1765 dnl Check if we can compile with ncurses' header file
1766 dnl $1 is the cache variable to set
1767 dnl $2 is the header-file to include
1768 dnl $3 is the root name (ncurses or ncursesw)
1769 AC_DEFUN([CF_NCURSES_CC_CHECK],[
1770         AC_TRY_COMPILE([
1771 ]ifelse($3,ncursesw,[
1772 #define _XOPEN_SOURCE_EXTENDED
1773 #undef  HAVE_LIBUTF8_H  /* in case we used CF_UTF8_LIB */
1774 #define HAVE_LIBUTF8_H  /* to force ncurses' header file to use cchar_t */
1775 ])[
1776 #include <$2>],[
1777 #ifdef NCURSES_VERSION
1778 ]ifelse($3,ncursesw,[
1779 #ifndef WACS_BSSB
1780         make an error
1781 #endif
1782 ])[
1783 printf("%s\n", NCURSES_VERSION);
1784 #else
1785 #ifdef __NCURSES_H
1786 printf("old\n");
1787 #else
1788         make an error
1789 #endif
1790 #endif
1791         ]
1792         ,[$1=$2]
1793         ,[$1=no])
1794 ])dnl
1795 dnl ---------------------------------------------------------------------------
1796 dnl CF_NCURSES_CONFIG version: 8 updated: 2010/07/08 05:17:30
1797 dnl -----------------
1798 dnl Tie together the configure-script macros for ncurses.
1799 dnl Prefer the "-config" script from ncurses 6.x, to simplify analysis.
1800 dnl Allow that to be overridden using the $NCURSES_CONFIG environment variable.
1801 dnl
1802 dnl $1 is the root library name (default: "ncurses")
1803 AC_DEFUN([CF_NCURSES_CONFIG],
1804 [
1805 cf_ncuconfig_root=ifelse($1,,ncurses,$1)
1806
1807 echo "Looking for ${cf_ncuconfig_root}-config"
1808 AC_PATH_PROGS(NCURSES_CONFIG,${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config,none)
1809
1810 if test "$NCURSES_CONFIG" != none ; then
1811
1812 CPPFLAGS="$CPPFLAGS `$NCURSES_CONFIG --cflags`"
1813 CF_ADD_LIBS(`$NCURSES_CONFIG --libs`)
1814
1815 # even with config script, some packages use no-override for curses.h
1816 CF_CURSES_HEADER(ifelse($1,,ncurses,$1))
1817
1818 dnl like CF_NCURSES_CPPFLAGS
1819 AC_DEFINE(NCURSES)
1820
1821 dnl like CF_NCURSES_LIBS
1822 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_ncuconfig_root)
1823 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
1824
1825 dnl like CF_NCURSES_VERSION
1826 cf_cv_ncurses_version=`$NCURSES_CONFIG --version`
1827
1828 else
1829
1830 CF_NCURSES_CPPFLAGS(ifelse($1,,ncurses,$1))
1831 CF_NCURSES_LIBS(ifelse($1,,ncurses,$1))
1832
1833 fi
1834 ])dnl
1835 dnl ---------------------------------------------------------------------------
1836 dnl CF_NCURSES_CPPFLAGS version: 20 updated: 2010/11/20 17:02:38
1837 dnl -------------------
1838 dnl Look for the SVr4 curses clone 'ncurses' in the standard places, adjusting
1839 dnl the CPPFLAGS variable so we can include its header.
1840 dnl
1841 dnl The header files may be installed as either curses.h, or ncurses.h (would
1842 dnl be obsolete, except that some packagers prefer this name to distinguish it
1843 dnl from a "native" curses implementation).  If not installed for overwrite,
1844 dnl the curses.h file would be in an ncurses subdirectory (e.g.,
1845 dnl /usr/include/ncurses), but someone may have installed overwriting the
1846 dnl vendor's curses.  Only very old versions (pre-1.9.2d, the first autoconf'd
1847 dnl version) of ncurses don't define either __NCURSES_H or NCURSES_VERSION in
1848 dnl the header.
1849 dnl
1850 dnl If the installer has set $CFLAGS or $CPPFLAGS so that the ncurses header
1851 dnl is already in the include-path, don't even bother with this, since we cannot
1852 dnl easily determine which file it is.  In this case, it has to be <curses.h>.
1853 dnl
1854 dnl The optional parameter gives the root name of the library, in case it is
1855 dnl not installed as the default curses library.  That is how the
1856 dnl wide-character version of ncurses is installed.
1857 AC_DEFUN([CF_NCURSES_CPPFLAGS],
1858 [AC_REQUIRE([CF_WITH_CURSES_DIR])
1859
1860 AC_PROVIDE([CF_CURSES_CPPFLAGS])dnl
1861 cf_ncuhdr_root=ifelse($1,,ncurses,$1)
1862
1863 test -n "$cf_cv_curses_dir" && \
1864 test "$cf_cv_curses_dir" != "no" && { \
1865   CF_ADD_INCDIR($cf_cv_curses_dir/include/$cf_ncuhdr_root)
1866 }
1867
1868 AC_CACHE_CHECK(for $cf_ncuhdr_root header in include-path, cf_cv_ncurses_h,[
1869         cf_header_list="$cf_ncuhdr_root/curses.h $cf_ncuhdr_root/ncurses.h"
1870         ( test "$cf_ncuhdr_root" = ncurses || test "$cf_ncuhdr_root" = ncursesw ) && cf_header_list="$cf_header_list curses.h ncurses.h"
1871         for cf_header in $cf_header_list
1872         do
1873                 CF_NCURSES_CC_CHECK(cf_cv_ncurses_h,$cf_header,$1)
1874                 test "$cf_cv_ncurses_h" != no && break
1875         done
1876 ])
1877
1878 CF_NCURSES_HEADER
1879 CF_TERM_HEADER
1880
1881 # some applications need this, but should check for NCURSES_VERSION
1882 AC_DEFINE(NCURSES)
1883
1884 CF_NCURSES_VERSION
1885 ])dnl
1886 dnl ---------------------------------------------------------------------------
1887 dnl CF_NCURSES_EXT_FUNCS version: 3 updated: 2010/11/13 19:43:23
1888 dnl --------------------
1889 dnl Since 2007/11/17, ncurses has defined NCURSES_EXT_FUNCS; earlier versions
1890 dnl may provide these functions.  Define the symbol if it is not defined, and
1891 dnl if it is valid.
1892 AC_DEFUN([CF_NCURSES_EXT_FUNCS],
1893 [
1894 AC_CACHE_CHECK(for ncurses extended functions,cf_cv_ncurses_ext_funcs,[
1895 AC_TRY_COMPILE([
1896 #include <${cf_cv_ncurses_header:-curses.h}>],
1897 [
1898 int x = NCURSES_EXT_FUNCS
1899 ],[cf_cv_ncurses_ext_funcs=defined],[
1900 AC_TRY_LINK([
1901 #include <${cf_cv_ncurses_header:-curses.h}>],
1902 [
1903         (void) assume_default_colors (0, 0);
1904         (void) curses_version ();
1905         (void) define_key (0, 0);
1906         (void) is_term_resized (0, 0);
1907         (void) key_defined (0);
1908         (void) keybound (0, 0);
1909         (void) keyok (0, 0);
1910         (void) resize_term (0, 0);
1911         (void) resizeterm (0, 0);
1912         (void) use_default_colors ();
1913         (void) use_extended_names (0);
1914         (void) wresize (0, 0, 0);],
1915         [cf_cv_ncurses_ext_funcs=yes],
1916         [cf_cv_ncurses_ext_funcs=no])
1917 ])
1918 ])
1919 test "$cf_cv_ncurses_ext_funcs" = yes && AC_DEFINE(NCURSES_EXT_FUNCS)
1920 ])dnl
1921 dnl ---------------------------------------------------------------------------
1922 dnl CF_NCURSES_HEADER version: 2 updated: 2008/03/23 14:48:54
1923 dnl -----------------
1924 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
1925 dnl variations of ncurses' installs.
1926 dnl
1927 dnl See also CF_CURSES_HEADER, which sets the same cache variable.
1928 AC_DEFUN([CF_NCURSES_HEADER],[
1929
1930 if test "$cf_cv_ncurses_h" != no ; then
1931         cf_cv_ncurses_header=$cf_cv_ncurses_h
1932 else
1933
1934 AC_CACHE_CHECK(for $cf_ncuhdr_root include-path, cf_cv_ncurses_h2,[
1935         test -n "$verbose" && echo
1936         CF_HEADER_PATH(cf_search,$cf_ncuhdr_root)
1937         test -n "$verbose" && echo search path $cf_search
1938         cf_save2_CPPFLAGS="$CPPFLAGS"
1939         for cf_incdir in $cf_search
1940         do
1941                 CF_ADD_INCDIR($cf_incdir)
1942                 for cf_header in \
1943                         ncurses.h \
1944                         curses.h
1945                 do
1946                         CF_NCURSES_CC_CHECK(cf_cv_ncurses_h2,$cf_header,$1)
1947                         if test "$cf_cv_ncurses_h2" != no ; then
1948                                 cf_cv_ncurses_h2=$cf_incdir/$cf_header
1949                                 test -n "$verbose" && echo $ac_n "      ... found $ac_c" 1>&AC_FD_MSG
1950                                 break
1951                         fi
1952                         test -n "$verbose" && echo "    ... tested $cf_incdir/$cf_header" 1>&AC_FD_MSG
1953                 done
1954                 CPPFLAGS="$cf_save2_CPPFLAGS"
1955                 test "$cf_cv_ncurses_h2" != no && break
1956         done
1957         test "$cf_cv_ncurses_h2" = no && AC_MSG_ERROR(not found)
1958         ])
1959
1960         CF_DIRNAME(cf_1st_incdir,$cf_cv_ncurses_h2)
1961         cf_cv_ncurses_header=`basename $cf_cv_ncurses_h2`
1962         if test `basename $cf_1st_incdir` = $cf_ncuhdr_root ; then
1963                 cf_cv_ncurses_header=$cf_ncuhdr_root/$cf_cv_ncurses_header
1964         fi
1965         CF_ADD_INCDIR($cf_1st_incdir)
1966
1967 fi
1968
1969 # Set definitions to allow ifdef'ing for ncurses.h
1970
1971 case $cf_cv_ncurses_header in # (vi
1972 *ncurses.h)
1973         AC_DEFINE(HAVE_NCURSES_H)
1974         ;;
1975 esac
1976
1977 case $cf_cv_ncurses_header in # (vi
1978 ncurses/curses.h|ncurses/ncurses.h)
1979         AC_DEFINE(HAVE_NCURSES_NCURSES_H)
1980         ;;
1981 ncursesw/curses.h|ncursesw/ncurses.h)
1982         AC_DEFINE(HAVE_NCURSESW_NCURSES_H)
1983         ;;
1984 esac
1985
1986 ])dnl
1987 dnl ---------------------------------------------------------------------------
1988 dnl CF_NCURSES_LIBS version: 16 updated: 2010/11/20 17:02:38
1989 dnl ---------------
1990 dnl Look for the ncurses library.  This is a little complicated on Linux,
1991 dnl because it may be linked with the gpm (general purpose mouse) library.
1992 dnl Some distributions have gpm linked with (bsd) curses, which makes it
1993 dnl unusable with ncurses.  However, we don't want to link with gpm unless
1994 dnl ncurses has a dependency, since gpm is normally set up as a shared library,
1995 dnl and the linker will record a dependency.
1996 dnl
1997 dnl The optional parameter gives the root name of the library, in case it is
1998 dnl not installed as the default curses library.  That is how the
1999 dnl wide-character version of ncurses is installed.
2000 AC_DEFUN([CF_NCURSES_LIBS],
2001 [AC_REQUIRE([CF_NCURSES_CPPFLAGS])
2002
2003 cf_nculib_root=ifelse($1,,ncurses,$1)
2004         # This works, except for the special case where we find gpm, but
2005         # ncurses is in a nonstandard location via $LIBS, and we really want
2006         # to link gpm.
2007 cf_ncurses_LIBS=""
2008 cf_ncurses_SAVE="$LIBS"
2009 AC_CHECK_LIB(gpm,Gpm_Open,
2010         [AC_CHECK_LIB(gpm,initscr,
2011                 [LIBS="$cf_ncurses_SAVE"],
2012                 [cf_ncurses_LIBS="-lgpm"])])
2013
2014 case $host_os in #(vi
2015 freebsd*)
2016         # This is only necessary if you are linking against an obsolete
2017         # version of ncurses (but it should do no harm, since it's static).
2018         if test "$cf_nculib_root" = ncurses ; then
2019                 AC_CHECK_LIB(mytinfo,tgoto,[cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"])
2020         fi
2021         ;;
2022 esac
2023
2024 CF_ADD_LIBS($cf_ncurses_LIBS)
2025
2026 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
2027 then
2028         CF_ADD_LIBS(-l$cf_nculib_root)
2029 else
2030         CF_FIND_LIBRARY($cf_nculib_root,$cf_nculib_root,
2031                 [#include <${cf_cv_ncurses_header:-curses.h}>],
2032                 [initscr()],
2033                 initscr)
2034 fi
2035
2036 if test -n "$cf_ncurses_LIBS" ; then
2037         AC_MSG_CHECKING(if we can link $cf_nculib_root without $cf_ncurses_LIBS)
2038         cf_ncurses_SAVE="$LIBS"
2039         for p in $cf_ncurses_LIBS ; do
2040                 q=`echo $LIBS | sed -e "s%$p %%" -e "s%$p$%%"`
2041                 if test "$q" != "$LIBS" ; then
2042                         LIBS="$q"
2043                 fi
2044         done
2045         AC_TRY_LINK([#include <${cf_cv_ncurses_header:-curses.h}>],
2046                 [initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);],
2047                 [AC_MSG_RESULT(yes)],
2048                 [AC_MSG_RESULT(no)
2049                  LIBS="$cf_ncurses_SAVE"])
2050 fi
2051
2052 CF_UPPER(cf_nculib_ROOT,HAVE_LIB$cf_nculib_root)
2053 AC_DEFINE_UNQUOTED($cf_nculib_ROOT)
2054 ])dnl
2055 dnl ---------------------------------------------------------------------------
2056 dnl CF_NCURSES_VERSION version: 13 updated: 2010/10/23 15:54:49
2057 dnl ------------------
2058 dnl Check for the version of ncurses, to aid in reporting bugs, etc.
2059 dnl Call CF_CURSES_CPPFLAGS first, or CF_NCURSES_CPPFLAGS.  We don't use
2060 dnl AC_REQUIRE since that does not work with the shell's if/then/else/fi.
2061 AC_DEFUN([CF_NCURSES_VERSION],
2062 [
2063 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
2064 AC_CACHE_CHECK(for ncurses version, cf_cv_ncurses_version,[
2065         cf_cv_ncurses_version=no
2066         cf_tempfile=out$$
2067         rm -f $cf_tempfile
2068         AC_TRY_RUN([
2069 #include <${cf_cv_ncurses_header:-curses.h}>
2070 #include <stdio.h>
2071 int main()
2072 {
2073         FILE *fp = fopen("$cf_tempfile", "w");
2074 #ifdef NCURSES_VERSION
2075 # ifdef NCURSES_VERSION_PATCH
2076         fprintf(fp, "%s.%d\n", NCURSES_VERSION, NCURSES_VERSION_PATCH);
2077 # else
2078         fprintf(fp, "%s\n", NCURSES_VERSION);
2079 # endif
2080 #else
2081 # ifdef __NCURSES_H
2082         fprintf(fp, "old\n");
2083 # else
2084         make an error
2085 # endif
2086 #endif
2087         ${cf_cv_main_return:-return}(0);
2088 }],[
2089         cf_cv_ncurses_version=`cat $cf_tempfile`],,[
2090
2091         # This will not work if the preprocessor splits the line after the
2092         # Autoconf token.  The 'unproto' program does that.
2093         cat > conftest.$ac_ext <<EOF
2094 #include <${cf_cv_ncurses_header:-curses.h}>
2095 #undef Autoconf
2096 #ifdef NCURSES_VERSION
2097 Autoconf NCURSES_VERSION
2098 #else
2099 #ifdef __NCURSES_H
2100 Autoconf "old"
2101 #endif
2102 ;
2103 #endif
2104 EOF
2105         cf_try="$ac_cpp conftest.$ac_ext 2>&AC_FD_CC | grep '^Autoconf ' >conftest.out"
2106         AC_TRY_EVAL(cf_try)
2107         if test -f conftest.out ; then
2108                 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[[^"]]*"%%' -e 's%".*%%'`
2109                 test -n "$cf_out" && cf_cv_ncurses_version="$cf_out"
2110                 rm -f conftest.out
2111         fi
2112 ])
2113         rm -f $cf_tempfile
2114 ])
2115 test "$cf_cv_ncurses_version" = no || AC_DEFINE(NCURSES)
2116 ])dnl
2117 dnl ---------------------------------------------------------------------------
2118 dnl CF_NCURSES_WRAP_PREFIX version: 1 updated: 2009/03/28 16:08:10
2119 dnl ----------------------
2120 dnl Check for ncurses "wrap-prefix" used for public variables which have been
2121 dnl wrapped with a function to help with concurrency control.
2122 AC_DEFUN([CF_NCURSES_WRAP_PREFIX],
2123 [
2124 AC_MSG_CHECKING(for ncurses wrap-prefix)
2125 AC_ARG_WITH(ncurses-wrap-prefix,
2126         [  --with-ncurses-wrap-prefix naming-prefix for ncurses wrapped-variables],
2127         [NCURSES_WRAP_PREFIX=$withval],
2128         [NCURSES_WRAP_PREFIX=_nc_])
2129 AC_MSG_RESULT($NCURSES_WRAP_PREFIX)
2130
2131 AC_SUBST(NCURSES_WRAP_PREFIX)
2132 ])
2133 dnl ---------------------------------------------------------------------------
2134 dnl CF_NETBSD_FORM_H version: 1 updated: 2011/01/15 14:59:18
2135 dnl ----------------
2136 dnl Check for NetBSD's form.h, which is incompatible with SVr4 and ncurses.
2137 dnl Some workarounds are needed in client programs to allow them to compile.
2138 AC_DEFUN([CF_NETBSD_FORM_H],[
2139 AC_CACHE_CHECK(for NetBSD form.h,cf_cv_netbsd_form_h,[
2140 AC_TRY_COMPILE([
2141 #include <${cf_cv_ncurses_header:-curses.h}>
2142 #include <form.h>
2143 ],[
2144         FORM *form;
2145         int y = current_field(form)->cursor_ypos;
2146         int x = current_field(form)->cursor_xpos;
2147 ],[cf_cv_netbsd_form_h=yes
2148 ],[cf_cv_netbsd_form_h=no])
2149 ])
2150
2151 test "$cf_cv_netbsd_form_h" = yes && AC_DEFINE(HAVE_NETBSD_FORM_H)
2152 ])dnl
2153 dnl ---------------------------------------------------------------------------
2154 dnl CF_NETBSD_MENU_H version: 1 updated: 2011/01/15 14:59:18
2155 dnl ----------------
2156 dnl Check for NetBSD's menu.h, which is incompatible with SVr4 and ncurses.
2157 dnl Some workarounds are needed in client programs to allow them to compile.
2158 AC_DEFUN([CF_NETBSD_MENU_H],[
2159 AC_CACHE_CHECK(for NetBSD menu.h,cf_cv_netbsd_menu_h,[
2160 AC_TRY_COMPILE([
2161 #include <${cf_cv_ncurses_header:-curses.h}>
2162 #include <menu.h>
2163 ],[
2164         MENU *menu;
2165         int y = menu->max_item_width;
2166 ],[cf_cv_netbsd_menu_h=yes
2167 ],[cf_cv_netbsd_menu_h=no])
2168 ])
2169
2170 test "$cf_cv_netbsd_menu_h" = yes && AC_DEFINE(HAVE_NETBSD_MENU_H)
2171 ])dnl
2172 dnl ---------------------------------------------------------------------------
2173 dnl CF_NO_LEAKS_OPTION version: 4 updated: 2006/12/16 14:24:05
2174 dnl ------------------
2175 dnl see CF_WITH_NO_LEAKS
2176 AC_DEFUN([CF_NO_LEAKS_OPTION],[
2177 AC_MSG_CHECKING(if you want to use $1 for testing)
2178 AC_ARG_WITH($1,
2179         [$2],
2180         [AC_DEFINE($3)ifelse([$4],,[
2181          $4
2182 ])
2183         : ${with_cflags:=-g}
2184         : ${with_no_leaks:=yes}
2185          with_$1=yes],
2186         [with_$1=])
2187 AC_MSG_RESULT(${with_$1:-no})
2188
2189 case .$with_cflags in #(vi
2190 .*-g*)
2191         case .$CFLAGS in #(vi
2192         .*-g*) #(vi
2193                 ;;
2194         *)
2195                 CF_ADD_CFLAGS([-g])
2196                 ;;
2197         esac
2198         ;;
2199 esac
2200 ])dnl
2201 dnl ---------------------------------------------------------------------------
2202 dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42
2203 dnl --------------
2204 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
2205 dnl begins with one of the prefix/exec_prefix variables, and then again if the
2206 dnl result begins with 'NONE'.  This is necessary to work around autoconf's
2207 dnl delayed evaluation of those symbols.
2208 AC_DEFUN([CF_PATH_SYNTAX],[
2209 if test "x$prefix" != xNONE; then
2210   cf_path_syntax="$prefix"
2211 else
2212   cf_path_syntax="$ac_default_prefix"
2213 fi
2214
2215 case ".[$]$1" in #(vi
2216 .\[$]\(*\)*|.\'*\'*) #(vi
2217   ;;
2218 ..|./*|.\\*) #(vi
2219   ;;
2220 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX
2221   ;;
2222 .\[$]{*prefix}*) #(vi
2223   eval $1="[$]$1"
2224   case ".[$]$1" in #(vi
2225   .NONE/*)
2226     $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
2227     ;;
2228   esac
2229   ;; #(vi
2230 .no|.NONE/*)
2231   $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%`
2232   ;;
2233 *)
2234   ifelse([$2],,[AC_MSG_ERROR([expected a pathname, not \"[$]$1\"])],$2)
2235   ;;
2236 esac
2237 ])dnl
2238 dnl ---------------------------------------------------------------------------
2239 dnl CF_PDCURSES_X11 version: 11 updated: 2011/01/15 18:45:38
2240 dnl ---------------
2241 dnl Configure for PDCurses' X11 library
2242 AC_DEFUN([CF_PDCURSES_X11],[
2243 AC_REQUIRE([CF_X_ATHENA])
2244
2245 AC_PATH_PROGS(XCURSES_CONFIG,xcurses-config,none)
2246
2247 if test "$XCURSES_CONFIG" != none ; then
2248
2249 CPPFLAGS="$CPPFLAGS `$XCURSES_CONFIG --cflags`"
2250 CF_ADD_LIBS(`$XCURSES_CONFIG --libs`)
2251
2252 cf_cv_lib_XCurses=yes
2253
2254 else
2255
2256 LDFLAGS="$LDFLAGS $X_LIBS"
2257 CF_CHECK_CFLAGS($X_CFLAGS)
2258 AC_CHECK_LIB(X11,XOpenDisplay,
2259         [CF_ADD_LIBS(-lX11)],,
2260         [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])
2261 AC_CACHE_CHECK(for XCurses library,cf_cv_lib_XCurses,[
2262 CF_ADD_LIBS(-lXCurses)
2263 AC_TRY_LINK([
2264 #include <xcurses.h>
2265 char *XCursesProgramName = "test";
2266 ],[XCursesExit();],
2267 [cf_cv_lib_XCurses=yes],
2268 [cf_cv_lib_XCurses=no])
2269 ])
2270
2271 fi
2272
2273 if test $cf_cv_lib_XCurses = yes ; then
2274         AC_DEFINE(UNIX)
2275         AC_DEFINE(XCURSES)
2276         AC_CHECK_HEADER(xcurses.h, AC_DEFINE(HAVE_XCURSES))
2277 else
2278         AC_MSG_ERROR(Cannot link with XCurses)
2279 fi
2280 ])dnl
2281 dnl ---------------------------------------------------------------------------
2282 dnl CF_PKG_CONFIG version: 6 updated: 2011/04/17 06:36:21
2283 dnl -------------
2284 dnl Check for the package-config program, unless disabled by command-line.
2285 AC_DEFUN([CF_PKG_CONFIG],
2286 [
2287 AC_MSG_CHECKING(if you want to use pkg-config)
2288 AC_ARG_WITH(pkg-config,
2289         [  --with-pkg-config{=path} enable/disable use of pkg-config],
2290         [cf_pkg_config=$withval],
2291         [cf_pkg_config=yes])
2292 AC_MSG_RESULT($cf_pkg_config)
2293
2294 case $cf_pkg_config in #(vi
2295 no) #(vi
2296         PKG_CONFIG=none
2297         ;;
2298 yes) #(vi
2299         AC_PATH_TOOL(PKG_CONFIG, pkg-config, none)
2300         ;;
2301 *)
2302         PKG_CONFIG=$withval
2303         ;;
2304 esac
2305
2306 test -z "$PKG_CONFIG" && PKG_CONFIG=none
2307 if test "$PKG_CONFIG" != none ; then
2308         CF_PATH_SYNTAX(PKG_CONFIG)
2309 fi
2310
2311 AC_SUBST(PKG_CONFIG)
2312 ])dnl
2313 dnl ---------------------------------------------------------------------------
2314 dnl CF_POSIX_C_SOURCE version: 8 updated: 2010/05/26 05:38:42
2315 dnl -----------------
2316 dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
2317 dnl
2318 dnl     POSIX.1-1990                            _POSIX_SOURCE
2319 dnl     POSIX.1-1990 and                        _POSIX_SOURCE and
2320 dnl             POSIX.2-1992 C-Language                 _POSIX_C_SOURCE=2
2321 dnl             Bindings Option
2322 dnl     POSIX.1b-1993                           _POSIX_C_SOURCE=199309L
2323 dnl     POSIX.1c-1996                           _POSIX_C_SOURCE=199506L
2324 dnl     X/Open 2000                             _POSIX_C_SOURCE=200112L
2325 dnl
2326 dnl Parameters:
2327 dnl     $1 is the nominal value for _POSIX_C_SOURCE
2328 AC_DEFUN([CF_POSIX_C_SOURCE],
2329 [
2330 cf_POSIX_C_SOURCE=ifelse([$1],,199506L,[$1])
2331
2332 cf_save_CFLAGS="$CFLAGS"
2333 cf_save_CPPFLAGS="$CPPFLAGS"
2334
2335 CF_REMOVE_DEFINE(cf_trim_CFLAGS,$cf_save_CFLAGS,_POSIX_C_SOURCE)
2336 CF_REMOVE_DEFINE(cf_trim_CPPFLAGS,$cf_save_CPPFLAGS,_POSIX_C_SOURCE)
2337
2338 AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
2339         CF_MSG_LOG(if the symbol is already defined go no further)
2340         AC_TRY_COMPILE([#include <sys/types.h>],[
2341 #ifndef _POSIX_C_SOURCE
2342 make an error
2343 #endif],
2344         [cf_cv_posix_c_source=no],
2345         [cf_want_posix_source=no
2346          case .$cf_POSIX_C_SOURCE in #(vi
2347          .[[12]]??*) #(vi
2348                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
2349                 ;;
2350          .2) #(vi
2351                 cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
2352                 cf_want_posix_source=yes
2353                 ;;
2354          .*)
2355                 cf_want_posix_source=yes
2356                 ;;
2357          esac
2358          if test "$cf_want_posix_source" = yes ; then
2359                 AC_TRY_COMPILE([#include <sys/types.h>],[
2360 #ifdef _POSIX_SOURCE
2361 make an error
2362 #endif],[],
2363                 cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE")
2364          fi
2365          CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
2366          CFLAGS="$cf_trim_CFLAGS"
2367          CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
2368          CF_MSG_LOG(if the second compile does not leave our definition intact error)
2369          AC_TRY_COMPILE([#include <sys/types.h>],[
2370 #ifndef _POSIX_C_SOURCE
2371 make an error
2372 #endif],,
2373          [cf_cv_posix_c_source=no])
2374          CFLAGS="$cf_save_CFLAGS"
2375          CPPFLAGS="$cf_save_CPPFLAGS"
2376         ])
2377 ])
2378
2379 if test "$cf_cv_posix_c_source" != no ; then
2380         CFLAGS="$cf_trim_CFLAGS"
2381         CPPFLAGS="$cf_trim_CPPFLAGS"
2382         CF_ADD_CFLAGS($cf_cv_posix_c_source)
2383 fi
2384
2385 ])dnl
2386 dnl ---------------------------------------------------------------------------
2387 dnl CF_PRG_RULES version: 1 updated: 2006/06/03 11:45:08
2388 dnl ------------
2389 dnl Append definitions and rules for the given programs to the subdirectory
2390 dnl Makefiles, and the recursion rule for the top-level Makefile.
2391 dnl
2392 dnl parameters
2393 dnl     $1 = script to run
2394 dnl     $2 = list of subdirectories
2395 dnl
2396 dnl variables
2397 dnl     $AWK
2398 AC_DEFUN([CF_PRG_RULES],
2399 [
2400 for cf_dir in $2
2401 do
2402         if test ! -d $srcdir/$cf_dir; then
2403                 continue
2404         elif test -f $srcdir/$cf_dir/programs; then
2405                 $AWK -f $1 $srcdir/$cf_dir/programs >>$cf_dir/Makefile
2406         fi
2407 done
2408
2409 ])dnl
2410 dnl ---------------------------------------------------------------------------
2411 dnl CF_PROG_CC_U_D version: 1 updated: 2005/07/14 16:59:30
2412 dnl --------------
2413 dnl Check if C (preprocessor) -U and -D options are processed in the order
2414 dnl given rather than by type of option.  Some compilers insist on apply all
2415 dnl of the -U options after all of the -D options.  Others allow mixing them,
2416 dnl and may predefine symbols that conflict with those we define.
2417 AC_DEFUN([CF_PROG_CC_U_D],
2418 [
2419 AC_CACHE_CHECK(if $CC -U and -D options work together,cf_cv_cc_u_d_options,[
2420         cf_save_CPPFLAGS="$CPPFLAGS"
2421         CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
2422         AC_TRY_COMPILE([],[
2423 #ifndef U_D_OPTIONS
2424 make an undefined-error
2425 #endif
2426 #ifdef  D_U_OPTIONS
2427 make a defined-error
2428 #endif
2429         ],[
2430         cf_cv_cc_u_d_options=yes],[
2431         cf_cv_cc_u_d_options=no])
2432         CPPFLAGS="$cf_save_CPPFLAGS"
2433 ])
2434 ])dnl
2435 dnl ---------------------------------------------------------------------------
2436 dnl CF_PROG_INSTALL version: 5 updated: 2002/12/21 22:46:07
2437 dnl ---------------
2438 dnl Force $INSTALL to be an absolute-path.  Otherwise, edit_man.sh and the
2439 dnl misc/tabset install won't work properly.  Usually this happens only when
2440 dnl using the fallback mkinstalldirs script
2441 AC_DEFUN([CF_PROG_INSTALL],
2442 [AC_PROG_INSTALL
2443 case $INSTALL in
2444 /*)
2445   ;;
2446 *)
2447   CF_DIRNAME(cf_dir,$INSTALL)
2448   test -z "$cf_dir" && cf_dir=.
2449   INSTALL=`cd $cf_dir && pwd`/`echo $INSTALL | sed -e 's%^.*/%%'`
2450   ;;
2451 esac
2452 ])dnl
2453 dnl ---------------------------------------------------------------------------
2454 dnl CF_PROG_LINT version: 2 updated: 2009/08/12 04:43:14
2455 dnl ------------
2456 AC_DEFUN([CF_PROG_LINT],
2457 [
2458 AC_CHECK_PROGS(LINT, tdlint lint alint splint lclint)
2459 AC_SUBST(LINT_OPTS)
2460 ])dnl
2461 dnl ---------------------------------------------------------------------------
2462 dnl CF_REMOVE_DEFINE version: 3 updated: 2010/01/09 11:05:50
2463 dnl ----------------
2464 dnl Remove all -U and -D options that refer to the given symbol from a list
2465 dnl of C compiler options.  This works around the problem that not all
2466 dnl compilers process -U and -D options from left-to-right, so a -U option
2467 dnl cannot be used to cancel the effect of a preceding -D option.
2468 dnl
2469 dnl $1 = target (which could be the same as the source variable)
2470 dnl $2 = source (including '$')
2471 dnl $3 = symbol to remove
2472 define([CF_REMOVE_DEFINE],
2473 [
2474 $1=`echo "$2" | \
2475         sed     -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[[       ]]/ /g' \
2476                 -e 's/-[[UD]]'"$3"'\(=[[^       ]]*\)\?[$]//g'`
2477 ])dnl
2478 dnl ---------------------------------------------------------------------------
2479 dnl CF_SIG_ATOMIC_T version: 2 updated: 2005/09/18 17:27:12
2480 dnl ---------------
2481 dnl signal handler, but there are some gcc depedencies in that recommendation.
2482 dnl Try anyway.
2483 AC_DEFUN([CF_SIG_ATOMIC_T],
2484 [
2485 AC_MSG_CHECKING(for signal global datatype)
2486 AC_CACHE_VAL(cf_cv_sig_atomic_t,[
2487         for cf_type in \
2488                 "volatile sig_atomic_t" \
2489                 "sig_atomic_t" \
2490                 "int"
2491         do
2492         AC_TRY_COMPILE([
2493 #include <sys/types.h>
2494 #include <signal.h>
2495 #include <stdio.h>
2496
2497 extern $cf_type x;
2498 $cf_type x;
2499 static void handler(int sig)
2500 {
2501         x = 5;
2502 }],
2503                 [signal(SIGINT, handler);
2504                  x = 1],
2505                 [cf_cv_sig_atomic_t=$cf_type],
2506                 [cf_cv_sig_atomic_t=no])
2507                 test "$cf_cv_sig_atomic_t" != no && break
2508         done
2509         ])
2510 AC_MSG_RESULT($cf_cv_sig_atomic_t)
2511 test "$cf_cv_sig_atomic_t" != no && AC_DEFINE_UNQUOTED(SIG_ATOMIC_T, $cf_cv_sig_atomic_t)
2512 ])dnl
2513 dnl ---------------------------------------------------------------------------
2514 dnl CF_SUBDIR_PATH version: 6 updated: 2010/04/21 06:20:50
2515 dnl --------------
2516 dnl Construct a search-list for a nonstandard header/lib-file
2517 dnl     $1 = the variable to return as result
2518 dnl     $2 = the package name
2519 dnl     $3 = the subdirectory, e.g., bin, include or lib
2520 AC_DEFUN([CF_SUBDIR_PATH],
2521 [
2522 $1=
2523
2524 CF_ADD_SUBDIR_PATH($1,$2,$3,/usr,$prefix)
2525 CF_ADD_SUBDIR_PATH($1,$2,$3,$prefix,NONE)
2526 CF_ADD_SUBDIR_PATH($1,$2,$3,/usr/local,$prefix)
2527 CF_ADD_SUBDIR_PATH($1,$2,$3,/opt,$prefix)
2528 CF_ADD_SUBDIR_PATH($1,$2,$3,[$]HOME,$prefix)
2529 ])dnl
2530 dnl ---------------------------------------------------------------------------
2531 dnl CF_SYS_TIME_SELECT version: 4 updated: 2000/10/04 09:18:40
2532 dnl ------------------
2533 dnl Check if we can include <sys/time.h> with <sys/select.h>; this breaks on
2534 dnl older SCO configurations.
2535 AC_DEFUN([CF_SYS_TIME_SELECT],
2536 [
2537 AC_MSG_CHECKING(if sys/time.h works with sys/select.h)
2538 AC_CACHE_VAL(cf_cv_sys_time_select,[
2539 AC_TRY_COMPILE([
2540 #include <sys/types.h>
2541 #ifdef HAVE_SYS_TIME_H
2542 #include <sys/time.h>
2543 #endif
2544 #ifdef HAVE_SYS_SELECT_H
2545 #include <sys/select.h>
2546 #endif
2547 ],[],[cf_cv_sys_time_select=yes],
2548      [cf_cv_sys_time_select=no])
2549      ])
2550 AC_MSG_RESULT($cf_cv_sys_time_select)
2551 test "$cf_cv_sys_time_select" = yes && AC_DEFINE(HAVE_SYS_TIME_SELECT)
2552 ])dnl
2553 dnl ---------------------------------------------------------------------------
2554 dnl CF_TERM_HEADER version: 2 updated: 2010/10/23 15:54:49
2555 dnl --------------
2556 dnl Look for term.h, which is part of X/Open curses.  It defines the interface
2557 dnl to terminfo database.  Usually it is in the same include-path as curses.h,
2558 dnl but some packagers change this, breaking various applications.
2559 AC_DEFUN([CF_TERM_HEADER],[
2560 AC_CACHE_CHECK(for terminfo header, cf_cv_term_header,[
2561 case ${cf_cv_ncurses_header} in #(vi
2562 */ncurses.h|*/ncursesw.h) #(vi
2563         cf_term_header=`echo "$cf_cv_ncurses_header" | sed -e 's%ncurses[[^.]]*\.h$%term.h%'`
2564         ;;
2565 *)
2566         cf_term_header=term.h
2567         ;;
2568 esac
2569
2570 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2571 do
2572 AC_TRY_COMPILE([#include <stdio.h>
2573 #include <${cf_cv_ncurses_header:-curses.h}>
2574 #include <$cf_test>
2575 ],[int x = auto_left_margin],[
2576         cf_cv_term_header="$cf_test"],[
2577         cf_cv_term_header=unknown
2578         ])
2579         test "$cf_cv_term_header" != unknown && break
2580 done
2581 ])
2582
2583 # Set definitions to allow ifdef'ing to accommodate subdirectories
2584
2585 case $cf_cv_term_header in # (vi
2586 *term.h)
2587         AC_DEFINE(HAVE_TERM_H)
2588         ;;
2589 esac
2590
2591 case $cf_cv_term_header in # (vi
2592 ncurses/term.h) #(vi
2593         AC_DEFINE(HAVE_NCURSES_TERM_H)
2594         ;;
2595 ncursesw/term.h)
2596         AC_DEFINE(HAVE_NCURSESW_TERM_H)
2597         ;;
2598 esac
2599 ])dnl
2600 dnl ---------------------------------------------------------------------------
2601 dnl CF_TPUTS_PROTO version: 2 updated: 2011/04/23 19:25:50
2602 dnl --------------
2603 dnl Check for type of function-pointer passed to tputs.  Some old
2604 dnl implementations used functions that had different prototypes, making it
2605 dnl hard to compile portable programs using tputs.
2606 AC_DEFUN([CF_TPUTS_PROTO],[
2607 CF_CURSES_FUNCS(tputs)
2608 if test x$cf_cv_func_tputs = xyes
2609 then
2610         cf_done=no
2611         for cf_arg in int char
2612         do
2613                 for cf_ret in int void
2614                 do
2615                         if test $cf_ret = void
2616                         then
2617                                 cf_return="/* nothing */"
2618                         else
2619                                 cf_return="return value"
2620                         fi
2621                         AC_TRY_COMPILE([
2622 #include <${cf_cv_ncurses_header:-curses.h}>
2623 #include <$cf_cv_term_header>
2624
2625 static $cf_ret outc($cf_arg value) { $cf_return; }
2626 ],[
2627         tputs("hello", 0, outc); 
2628         ${cf_cv_main_return:-return}(0);
2629 ],[
2630                 CF_VERBOSE([prototype $cf_ret func($cf_arg value)])
2631                 cat >>confdefs.h <<EOF
2632 #define TPUTS_ARG               $cf_arg
2633 #define TPUTS_PROTO(func,value) $cf_ret func(TPUTS_ARG value)
2634 #define TPUTS_RETURN(value)     $cf_return
2635 EOF
2636                 cf_done=yes
2637                 break
2638 ])
2639                 done
2640                 test $cf_done = yes && break
2641         done
2642 fi
2643 ])dnl
2644 dnl ---------------------------------------------------------------------------
2645 dnl CF_TRY_PKG_CONFIG version: 4 updated: 2010/06/14 17:42:30
2646 dnl -----------------
2647 dnl This is a simple wrapper to use for pkg-config, for libraries which may be
2648 dnl available in that form.
2649 dnl
2650 dnl $1 = package name
2651 dnl $2 = extra logic to use, if any, after updating CFLAGS and LIBS
2652 dnl $3 = logic to use if pkg-config does not have the package
2653 AC_DEFUN([CF_TRY_PKG_CONFIG],[
2654 AC_REQUIRE([CF_PKG_CONFIG])
2655
2656 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $1; then
2657         CF_VERBOSE(found package $1)
2658         cf_pkgconfig_incs="`$PKG_CONFIG --cflags $1 2>/dev/null`"
2659         cf_pkgconfig_libs="`$PKG_CONFIG --libs   $1 2>/dev/null`"
2660         CF_VERBOSE(package $1 CFLAGS: $cf_pkgconfig_incs)
2661         CF_VERBOSE(package $1 LIBS: $cf_pkgconfig_libs)
2662         CF_ADD_CFLAGS($cf_pkgconfig_incs)
2663         CF_ADD_LIBS($cf_pkgconfig_libs)
2664         ifelse([$2],,:,[$2])
2665 else
2666         ifelse([$3],,:,[$3])
2667 fi
2668 ])
2669 dnl ---------------------------------------------------------------------------
2670 dnl CF_UPPER version: 5 updated: 2001/01/29 23:40:59
2671 dnl --------
2672 dnl Make an uppercase version of a variable
2673 dnl $1=uppercase($2)
2674 AC_DEFUN([CF_UPPER],
2675 [
2676 $1=`echo "$2" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2677 ])dnl
2678 dnl ---------------------------------------------------------------------------
2679 dnl CF_UTF8_LIB version: 7 updated: 2010/06/20 09:24:28
2680 dnl -----------
2681 dnl Check for multibyte support, and if not found, utf8 compatibility library
2682 AC_DEFUN([CF_UTF8_LIB],
2683 [
2684 AC_CACHE_CHECK(for multibyte character support,cf_cv_utf8_lib,[
2685         cf_save_LIBS="$LIBS"
2686         AC_TRY_LINK([
2687 #include <stdlib.h>],[putwc(0,0);],
2688         [cf_cv_utf8_lib=yes],
2689         [CF_FIND_LINKAGE([
2690 #include <libutf8.h>],[putwc(0,0);],utf8,
2691                 [cf_cv_utf8_lib=add-on],
2692                 [cf_cv_utf8_lib=no])
2693 ])])
2694
2695 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
2696 # ncurses/ncursesw:
2697 if test "$cf_cv_utf8_lib" = "add-on" ; then
2698         AC_DEFINE(HAVE_LIBUTF8_H)
2699         CF_ADD_INCDIR($cf_cv_header_path_utf8)
2700         CF_ADD_LIBDIR($cf_cv_library_path_utf8)
2701         CF_ADD_LIBS($cf_cv_library_file_utf8)
2702 fi
2703 ])dnl
2704 dnl ---------------------------------------------------------------------------
2705 dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12
2706 dnl ----------
2707 dnl Use AC_VERBOSE w/o the warnings
2708 AC_DEFUN([CF_VERBOSE],
2709 [test -n "$verbose" && echo "   $1" 1>&AC_FD_MSG
2710 CF_MSG_LOG([$1])
2711 ])dnl
2712 dnl ---------------------------------------------------------------------------
2713 dnl CF_WCHAR_TYPE version: 3 updated: 2010/05/26 16:44:57
2714 dnl -------------
2715 dnl Check if type wide-character type $1 is declared, and if so, which header
2716 dnl file is needed.  The second parameter is used to set a shell variable when
2717 dnl the type is not found.  The first parameter sets a shell variable for the
2718 dnl opposite sense.
2719 AC_DEFUN([CF_WCHAR_TYPE],
2720 [
2721 # This is needed on Tru64 5.0 to declare $1
2722 AC_CACHE_CHECK(if we must include wchar.h to declare $1,cf_cv_$1,[
2723 AC_TRY_COMPILE([
2724 #include <stdlib.h>
2725 #include <stdarg.h>
2726 #include <stdio.h>
2727 #ifdef HAVE_LIBUTF8_H
2728 #include <libutf8.h>
2729 #endif],
2730         [$1 state],
2731         [cf_cv_$1=no],
2732         [AC_TRY_COMPILE([
2733 #include <stdlib.h>
2734 #include <stdarg.h>
2735 #include <stdio.h>
2736 #include <wchar.h>
2737 #ifdef HAVE_LIBUTF8_H
2738 #include <libutf8.h>
2739 #endif],
2740         [$1 value],
2741         [cf_cv_$1=yes],
2742         [cf_cv_$1=unknown])])])
2743
2744 if test "$cf_cv_$1" = yes ; then
2745         AC_DEFINE(NEED_WCHAR_H)
2746         NEED_WCHAR_H=1
2747 fi
2748
2749 ifelse([$2],,,[
2750 # if we do not find $1 in either place, use substitution to provide a fallback.
2751 if test "$cf_cv_$1" = unknown ; then
2752         $2=1
2753 fi
2754 ])
2755 ifelse($3,,,[
2756 # if we find $1 in either place, use substitution to provide a fallback.
2757 if test "$cf_cv_$1" != unknown ; then
2758         $3=1
2759 fi
2760 ])
2761 ])dnl
2762 dnl ---------------------------------------------------------------------------
2763 dnl CF_WITH_CURSES_DIR version: 3 updated: 2010/11/20 17:02:38
2764 dnl ------------------
2765 dnl Wrapper for AC_ARG_WITH to specify directory under which to look for curses
2766 dnl libraries.
2767 AC_DEFUN([CF_WITH_CURSES_DIR],[
2768
2769 AC_MSG_CHECKING(for specific curses-directory)
2770 AC_ARG_WITH(curses-dir,
2771         [  --with-curses-dir=DIR   directory in which (n)curses is installed],
2772         [cf_cv_curses_dir=$withval],
2773         [cf_cv_curses_dir=no])
2774 AC_MSG_RESULT($cf_cv_curses_dir)
2775
2776 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
2777 then
2778         CF_PATH_SYNTAX(withval)
2779         if test -d "$cf_cv_curses_dir"
2780         then
2781                 CF_ADD_INCDIR($cf_cv_curses_dir/include)
2782                 CF_ADD_LIBDIR($cf_cv_curses_dir/lib)
2783         fi
2784 fi
2785 ])dnl
2786 dnl ---------------------------------------------------------------------------
2787 dnl CF_WITH_DBMALLOC version: 7 updated: 2010/06/21 17:26:47
2788 dnl ----------------
2789 dnl Configure-option for dbmalloc.  The optional parameter is used to override
2790 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
2791 AC_DEFUN([CF_WITH_DBMALLOC],[
2792 CF_NO_LEAKS_OPTION(dbmalloc,
2793         [  --with-dbmalloc         test: use Conor Cahill's dbmalloc library],
2794         [USE_DBMALLOC])
2795
2796 if test "$with_dbmalloc" = yes ; then
2797         AC_CHECK_HEADER(dbmalloc.h,
2798                 [AC_CHECK_LIB(dbmalloc,[debug_malloc]ifelse([$1],,[],[,$1]))])
2799 fi
2800 ])dnl
2801 dnl ---------------------------------------------------------------------------
2802 dnl CF_WITH_DMALLOC version: 7 updated: 2010/06/21 17:26:47
2803 dnl ---------------
2804 dnl Configure-option for dmalloc.  The optional parameter is used to override
2805 dnl the updating of $LIBS, e.g., to avoid conflict with subsequent tests.
2806 AC_DEFUN([CF_WITH_DMALLOC],[
2807 CF_NO_LEAKS_OPTION(dmalloc,
2808         [  --with-dmalloc          test: use Gray Watson's dmalloc library],
2809         [USE_DMALLOC])
2810
2811 if test "$with_dmalloc" = yes ; then
2812         AC_CHECK_HEADER(dmalloc.h,
2813                 [AC_CHECK_LIB(dmalloc,[dmalloc_debug]ifelse([$1],,[],[,$1]))])
2814 fi
2815 ])dnl
2816 dnl ---------------------------------------------------------------------------
2817 dnl CF_WITH_VALGRIND version: 1 updated: 2006/12/14 18:00:21
2818 dnl ----------------
2819 AC_DEFUN([CF_WITH_VALGRIND],[
2820 CF_NO_LEAKS_OPTION(valgrind,
2821         [  --with-valgrind         test: use valgrind],
2822         [USE_VALGRIND])
2823 ])dnl
2824 dnl ---------------------------------------------------------------------------
2825 dnl CF_XOPEN_CURSES version: 11 updated: 2011/01/18 18:15:30
2826 dnl ---------------
2827 dnl Test if we should define X/Open source for curses, needed on Digital Unix
2828 dnl 4.x, to see the extended functions, but breaks on IRIX 6.x.
2829 dnl
2830 dnl The getbegyx() check is needed for HPUX, which omits legacy macros such
2831 dnl as getbegy().  The latter is better design, but the former is standard.
2832 AC_DEFUN([CF_XOPEN_CURSES],
2833 [
2834 AC_REQUIRE([CF_CURSES_CPPFLAGS])dnl
2835 AC_CACHE_CHECK(if we must define _XOPEN_SOURCE_EXTENDED,cf_cv_need_xopen_extension,[
2836 AC_TRY_LINK([
2837 #include <stdlib.h>
2838 #include <${cf_cv_ncurses_header:-curses.h}>],[
2839 #if defined(NCURSES_VERSION_PATCH)
2840 #if (NCURSES_VERSION_PATCH < 20100501) && (NCURSES_VERSION_PATCH >= 20100403)
2841         make an error
2842 #endif
2843 #endif
2844         long x = winnstr(stdscr, "", 0);
2845         int x1, y1;
2846         getbegyx(stdscr, y1, x1)],
2847         [cf_cv_need_xopen_extension=no],
2848         [AC_TRY_LINK([
2849 #define _XOPEN_SOURCE_EXTENDED
2850 #include <stdlib.h>
2851 #include <${cf_cv_ncurses_header:-curses.h}>],[
2852 #ifdef NCURSES_VERSION
2853         cchar_t check;
2854         int check2 = curs_set((int)sizeof(check));
2855 #endif
2856         long x = winnstr(stdscr, "", 0);
2857         int x1, y1;
2858         getbegyx(stdscr, y1, x1)],
2859         [cf_cv_need_xopen_extension=yes],
2860         [cf_cv_need_xopen_extension=unknown])])])
2861 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
2862 ])dnl
2863 dnl ---------------------------------------------------------------------------
2864 dnl CF_XOPEN_SOURCE version: 35 updated: 2011/02/20 20:37:37
2865 dnl ---------------
2866 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
2867 dnl or adapt to the vendor's definitions to get equivalent functionality,
2868 dnl without losing the common non-POSIX features.
2869 dnl
2870 dnl Parameters:
2871 dnl     $1 is the nominal value for _XOPEN_SOURCE
2872 dnl     $2 is the nominal value for _POSIX_C_SOURCE
2873 AC_DEFUN([CF_XOPEN_SOURCE],[
2874
2875 cf_XOPEN_SOURCE=ifelse([$1],,500,[$1])
2876 cf_POSIX_C_SOURCE=ifelse([$2],,199506L,[$2])
2877 cf_xopen_source=
2878
2879 case $host_os in #(vi
2880 aix[[456]]*) #(vi
2881         cf_xopen_source="-D_ALL_SOURCE"
2882         ;;
2883 cygwin) #(vi
2884         cf_XOPEN_SOURCE=600
2885         ;;
2886 darwin[[0-8]].*) #(vi
2887         cf_xopen_source="-D_APPLE_C_SOURCE"
2888         ;;
2889 darwin*) #(vi
2890         cf_xopen_source="-D_DARWIN_C_SOURCE"
2891         ;;
2892 freebsd*|dragonfly*) #(vi
2893         # 5.x headers associate
2894         #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
2895         #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
2896         cf_POSIX_C_SOURCE=200112L
2897         cf_XOPEN_SOURCE=600
2898         cf_xopen_source="-D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2899         ;;
2900 hpux11*) #(vi
2901         cf_xopen_source="-D_HPUX_SOURCE -D_XOPEN_SOURCE=500"
2902         ;;
2903 hpux*) #(vi
2904         cf_xopen_source="-D_HPUX_SOURCE"
2905         ;;
2906 irix[[56]].*) #(vi
2907         cf_xopen_source="-D_SGI_SOURCE"
2908         ;;
2909 linux*|gnu*|mint*|k*bsd*-gnu) #(vi
2910         CF_GNU_SOURCE
2911         ;;
2912 mirbsd*) #(vi
2913         # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <arpa/inet.h>
2914         ;;
2915 netbsd*) #(vi
2916         # setting _XOPEN_SOURCE breaks IPv6 for lynx on NetBSD 1.6, breaks xterm, is not needed for ncursesw
2917         ;;
2918 openbsd*) #(vi
2919         # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
2920         ;;
2921 osf[[45]]*) #(vi
2922         cf_xopen_source="-D_OSF_SOURCE"
2923         ;;
2924 nto-qnx*) #(vi
2925         cf_xopen_source="-D_QNX_SOURCE"
2926         ;;
2927 sco*) #(vi
2928         # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
2929         ;;
2930 solaris2.1[[0-9]]) #(vi
2931         cf_xopen_source="-D__EXTENSIONS__ -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2932         ;;
2933 solaris2.[[1-9]]) #(vi
2934         cf_xopen_source="-D__EXTENSIONS__"
2935         ;;
2936 *)
2937         AC_CACHE_CHECK(if we should define _XOPEN_SOURCE,cf_cv_xopen_source,[
2938         AC_TRY_COMPILE([#include <sys/types.h>],[
2939 #ifndef _XOPEN_SOURCE
2940 make an error
2941 #endif],
2942         [cf_cv_xopen_source=no],
2943         [cf_save="$CPPFLAGS"
2944          CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
2945          AC_TRY_COMPILE([#include <sys/types.h>],[
2946 #ifdef _XOPEN_SOURCE
2947 make an error
2948 #endif],
2949         [cf_cv_xopen_source=no],
2950         [cf_cv_xopen_source=$cf_XOPEN_SOURCE])
2951         CPPFLAGS="$cf_save"
2952         ])
2953 ])
2954         if test "$cf_cv_xopen_source" != no ; then
2955                 CF_REMOVE_DEFINE(CFLAGS,$CFLAGS,_XOPEN_SOURCE)
2956                 CF_REMOVE_DEFINE(CPPFLAGS,$CPPFLAGS,_XOPEN_SOURCE)
2957                 cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
2958                 CF_ADD_CFLAGS($cf_temp_xopen_source)
2959         fi
2960         CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
2961         ;;
2962 esac
2963
2964 if test -n "$cf_xopen_source" ; then
2965         CF_ADD_CFLAGS($cf_xopen_source)
2966 fi
2967 ])
2968 dnl ---------------------------------------------------------------------------
2969 dnl CF_X_ATHENA version: 20 updated: 2010/11/09 05:18:02
2970 dnl -----------
2971 dnl Check for Xaw (Athena) libraries
2972 dnl
2973 dnl Sets $cf_x_athena according to the flavor of Xaw which is used.
2974 AC_DEFUN([CF_X_ATHENA],
2975 [
2976 cf_x_athena=${cf_x_athena:-Xaw}
2977
2978 AC_MSG_CHECKING(if you want to link with Xaw 3d library)
2979 withval=
2980 AC_ARG_WITH(Xaw3d,
2981         [  --with-Xaw3d            link with Xaw 3d library])
2982 if test "$withval" = yes ; then
2983         cf_x_athena=Xaw3d
2984         AC_MSG_RESULT(yes)
2985 else
2986         AC_MSG_RESULT(no)
2987 fi
2988
2989 AC_MSG_CHECKING(if you want to link with neXT Athena library)
2990 withval=
2991 AC_ARG_WITH(neXtaw,
2992         [  --with-neXtaw           link with neXT Athena library])
2993 if test "$withval" = yes ; then
2994         cf_x_athena=neXtaw
2995         AC_MSG_RESULT(yes)
2996 else
2997         AC_MSG_RESULT(no)
2998 fi
2999
3000 AC_MSG_CHECKING(if you want to link with Athena-Plus library)
3001 withval=
3002 AC_ARG_WITH(XawPlus,
3003         [  --with-XawPlus          link with Athena-Plus library])
3004 if test "$withval" = yes ; then
3005         cf_x_athena=XawPlus
3006         AC_MSG_RESULT(yes)
3007 else
3008         AC_MSG_RESULT(no)
3009 fi
3010
3011 cf_x_athena_lib=""
3012
3013 if test "$PKG_CONFIG" != none ; then
3014         cf_athena_list=
3015         test "$cf_x_athena" = Xaw && cf_athena_list="xaw8 xaw7 xaw6"
3016         for cf_athena_pkg in \
3017                 $cf_athena_list \
3018                 ${cf_x_athena} \
3019                 ${cf_x_athena}-devel \
3020                 lib${cf_x_athena} \
3021                 lib${cf_x_athena}-devel
3022         do
3023                 CF_TRY_PKG_CONFIG($cf_athena_pkg,[
3024                         cf_x_athena_lib="$cf_pkgconfig_libs"
3025                         CF_UPPER(cf_x_athena_LIBS,HAVE_LIB_$cf_x_athena)
3026                         AC_DEFINE_UNQUOTED($cf_x_athena_LIBS)
3027
3028 AC_CACHE_CHECK(for usable $cf_x_athena/Xmu package,cf_cv_xaw_compat,[
3029 AC_TRY_LINK([
3030 #include <X11/Xmu/CharSet.h>
3031 ],[
3032 int check = XmuCompareISOLatin1("big", "small")
3033 ],[cf_cv_xaw_compat=yes],[cf_cv_xaw_compat=no])])
3034
3035                         if test "$cf_cv_xaw_compat" = no
3036                         then
3037                                 # workaround for broken ".pc" files...
3038                                 case "$cf_x_athena_lib" in #(vi
3039                                 *-lXmu*) #(vi
3040                                         ;;
3041                                 *)
3042                                         CF_VERBOSE(work around broken package)
3043                                         CF_TRY_PKG_CONFIG(xmu,,[CF_ADD_LIB_AFTER(-lXt,-lXmu)])
3044                                         ;;
3045                                 esac
3046                         fi
3047
3048                         break])
3049         done
3050 fi
3051
3052 if test -z "$cf_x_athena_lib" ; then
3053         CF_X_EXT
3054         CF_X_TOOLKIT
3055         CF_X_ATHENA_CPPFLAGS($cf_x_athena)
3056         CF_X_ATHENA_LIBS($cf_x_athena)
3057 fi
3058 ])dnl
3059 dnl ---------------------------------------------------------------------------
3060 dnl CF_X_ATHENA_CPPFLAGS version: 5 updated: 2010/05/26 17:35:30
3061 dnl --------------------
3062 dnl Normally invoked by CF_X_ATHENA, with $1 set to the appropriate flavor of
3063 dnl the Athena widgets, e.g., Xaw, Xaw3d, neXtaw.
3064 AC_DEFUN([CF_X_ATHENA_CPPFLAGS],
3065 [
3066 cf_x_athena_root=ifelse([$1],,Xaw,[$1])
3067 cf_x_athena_inc=""
3068
3069 for cf_path in default \
3070         /usr/contrib/X11R6 \
3071         /usr/contrib/X11R5 \
3072         /usr/lib/X11R5 \
3073         /usr/local
3074 do
3075         if test -z "$cf_x_athena_inc" ; then
3076                 cf_save="$CPPFLAGS"
3077                 cf_test=X11/$cf_x_athena_root/SimpleMenu.h
3078                 if test $cf_path != default ; then
3079                         CPPFLAGS="$cf_save -I$cf_path/include"
3080                         AC_MSG_CHECKING(for $cf_test in $cf_path)
3081                 else
3082                         AC_MSG_CHECKING(for $cf_test)
3083                 fi
3084                 AC_TRY_COMPILE([
3085 #include <X11/Intrinsic.h>
3086 #include <$cf_test>],[],
3087                         [cf_result=yes],
3088                         [cf_result=no])
3089                 AC_MSG_RESULT($cf_result)
3090                 if test "$cf_result" = yes ; then
3091                         cf_x_athena_inc=$cf_path
3092                         break
3093                 else
3094                         CPPFLAGS="$cf_save"
3095                 fi
3096         fi
3097 done
3098
3099 if test -z "$cf_x_athena_inc" ; then
3100         AC_MSG_WARN(
3101 [Unable to successfully find Athena header files with test program])
3102 elif test "$cf_x_athena_inc" != default ; then
3103         CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc"
3104 fi
3105 ])
3106 dnl ---------------------------------------------------------------------------
3107 dnl CF_X_ATHENA_LIBS version: 10 updated: 2011/02/13 13:31:33
3108 dnl ----------------
3109 dnl Normally invoked by CF_X_ATHENA, with $1 set to the appropriate flavor of
3110 dnl the Athena widgets, e.g., Xaw, Xaw3d, neXtaw.
3111 AC_DEFUN([CF_X_ATHENA_LIBS],
3112 [AC_REQUIRE([CF_X_TOOLKIT])
3113 cf_x_athena_root=ifelse([$1],,Xaw,[$1])
3114 cf_x_athena_lib=""
3115
3116 for cf_path in default \
3117         /usr/contrib/X11R6 \
3118         /usr/contrib/X11R5 \
3119         /usr/lib/X11R5 \
3120         /usr/local
3121 do
3122         for cf_lib in \
3123                 "-l$cf_x_athena_root -lXmu" \
3124                 "-l$cf_x_athena_root -lXpm -lXmu" \
3125                 "-l${cf_x_athena_root}_s -lXmu_s"
3126         do
3127                 if test -z "$cf_x_athena_lib" ; then
3128                         cf_save="$LIBS"
3129                         cf_test=XawSimpleMenuAddGlobalActions
3130                         if test $cf_path != default ; then
3131                                 CF_ADD_LIBS(-L$cf_path/lib $cf_lib)
3132                                 AC_MSG_CHECKING(for $cf_lib in $cf_path)
3133                         else
3134                                 CF_ADD_LIBS($cf_lib)
3135                                 AC_MSG_CHECKING(for $cf_test in $cf_lib)
3136                         fi
3137                         AC_TRY_LINK([
3138 #include <X11/Intrinsic.h>
3139 #include <X11/$cf_x_athena_root/SimpleMenu.h>
3140 ],[
3141 $cf_test((XtAppContext) 0)],
3142                                 [cf_result=yes],
3143                                 [cf_result=no])
3144                         AC_MSG_RESULT($cf_result)
3145                         if test "$cf_result" = yes ; then
3146                                 cf_x_athena_lib="$cf_lib"
3147                                 break
3148                         fi
3149                         LIBS="$cf_save"
3150                 fi
3151         done
3152 done
3153
3154 if test -z "$cf_x_athena_lib" ; then
3155         AC_MSG_ERROR(
3156 [Unable to successfully link Athena library (-l$cf_x_athena_root) with test program])
3157 fi
3158
3159 CF_UPPER(cf_x_athena_LIBS,HAVE_LIB_$cf_x_athena)
3160 AC_DEFINE_UNQUOTED($cf_x_athena_LIBS)
3161 ])
3162 dnl ---------------------------------------------------------------------------
3163 dnl CF_X_EXT version: 3 updated: 2010/06/02 05:03:05
3164 dnl --------
3165 AC_DEFUN([CF_X_EXT],[
3166 CF_TRY_PKG_CONFIG(Xext,,[
3167         AC_CHECK_LIB(Xext,XextCreateExtension,
3168                 [CF_ADD_LIB(Xext)])])
3169 ])dnl
3170 dnl ---------------------------------------------------------------------------
3171 dnl CF_X_TOOLKIT version: 20 updated: 2010/11/19 05:43:04
3172 dnl ------------
3173 dnl Check for X Toolkit libraries
3174 dnl
3175 AC_DEFUN([CF_X_TOOLKIT],
3176 [
3177 AC_REQUIRE([AC_PATH_XTRA])
3178 AC_REQUIRE([CF_CHECK_CACHE])
3179
3180 cf_have_X_LIBS=no
3181
3182 CF_TRY_PKG_CONFIG(xt,[
3183
3184         case "x$LIBS" in #(vi
3185         *-lX11*) #(vi
3186                 ;;
3187         *)
3188 # we have an "xt" package, but it may omit Xt's dependency on X11
3189 AC_CACHE_CHECK(for usable X dependency,cf_cv_xt_x11_compat,[
3190 AC_TRY_LINK([
3191 #include <X11/Xlib.h>
3192 ],[
3193         int rc1 = XDrawLine((Display*) 0, (Drawable) 0, (GC) 0, 0, 0, 0, 0);
3194         int rc2 = XClearWindow((Display*) 0, (Window) 0);
3195         int rc3 = XMoveWindow((Display*) 0, (Window) 0, 0, 0);
3196         int rc4 = XMoveResizeWindow((Display*)0, (Window)0, 0, 0, 0, 0);
3197 ],[cf_cv_xt_x11_compat=yes],[cf_cv_xt_x11_compat=no])])
3198                 if test "$cf_cv_xt_x11_compat" = no
3199                 then
3200                         CF_VERBOSE(work around broken X11 dependency)
3201                         # 2010/11/19 - good enough until a working Xt on Xcb is delivered.
3202                         CF_TRY_PKG_CONFIG(x11,,[CF_ADD_LIB_AFTER(-lXt,-lX11)])
3203                 fi
3204                 ;;
3205         esac
3206
3207 AC_CACHE_CHECK(for usable X Toolkit package,cf_cv_xt_ice_compat,[
3208 AC_TRY_LINK([
3209 #include <X11/Shell.h>
3210 ],[int num = IceConnectionNumber(0)
3211 ],[cf_cv_xt_ice_compat=yes],[cf_cv_xt_ice_compat=no])])
3212
3213         if test "$cf_cv_xt_ice_compat" = no
3214         then
3215                 # workaround for broken ".pc" files used for X Toolkit.
3216                 case "x$X_PRE_LIBS" in #(vi
3217                 *-lICE*)
3218                         case "x$LIBS" in #(vi
3219                         *-lICE*) #(vi
3220                                 ;;
3221                         *)
3222                                 CF_VERBOSE(work around broken ICE dependency)
3223                                 CF_TRY_PKG_CONFIG(ice,
3224                                         [CF_TRY_PKG_CONFIG(sm)],
3225                                         [CF_ADD_LIB_AFTER(-lXt,$X_PRE_LIBS)])
3226                                 ;;
3227                         esac
3228                         ;;
3229                 esac
3230         fi
3231
3232         cf_have_X_LIBS=yes
3233 ],[
3234
3235         LDFLAGS="$X_LIBS $LDFLAGS"
3236         CF_CHECK_CFLAGS($X_CFLAGS)
3237
3238         AC_CHECK_FUNC(XOpenDisplay,,[
3239         AC_CHECK_LIB(X11,XOpenDisplay,
3240                 [CF_ADD_LIB(X11)],,
3241                 [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])])
3242
3243         AC_CHECK_FUNC(XtAppInitialize,,[
3244         AC_CHECK_LIB(Xt, XtAppInitialize,
3245                 [AC_DEFINE(HAVE_LIBXT)
3246                  cf_have_X_LIBS=Xt
3247                  LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS"],,
3248                 [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS])])
3249 ])
3250
3251 if test $cf_have_X_LIBS = no ; then
3252         AC_MSG_WARN(
3253 [Unable to successfully link X Toolkit library (-lXt) with
3254 test program.  You will have to check and add the proper libraries by hand
3255 to makefile.])
3256 fi
3257 ])dnl
3258 dnl ---------------------------------------------------------------------------
3259 dnl CF__CURSES_HEAD version: 2 updated: 2010/10/23 15:54:49
3260 dnl ---------------
3261 dnl Define a reusable chunk which includes <curses.h> and <term.h> when they
3262 dnl are both available.
3263 define([CF__CURSES_HEAD],[
3264 #ifdef HAVE_XCURSES
3265 #include <xcurses.h>
3266 char * XCursesProgramName = "test";
3267 #else
3268 #include <${cf_cv_ncurses_header:-curses.h}>
3269 #if defined(NCURSES_VERSION) && defined(HAVE_NCURSESW_TERM_H)
3270 #include <ncursesw/term.h>
3271 #elif defined(NCURSES_VERSION) && defined(HAVE_NCURSES_TERM_H)
3272 #include <ncurses/term.h>
3273 #elif defined(HAVE_TERM_H)
3274 #include <term.h>
3275 #endif
3276 #endif
3277 ])