]> ncurses.scripts.mit.edu Git - ncurses.git/blob - configure.in
575f0dfefb0f939ecb4b16a8ca2c6a71e04ff3ee
[ncurses.git] / configure.in
1 dnl***************************************************************************
2 dnl Copyright (c) 1998-2009,2010 Free Software Foundation, Inc.              *
3 dnl                                                                          *
4 dnl Permission is hereby granted, free of charge, to any person obtaining a  *
5 dnl copy of this software and associated documentation files (the            *
6 dnl "Software"), to deal in the Software without restriction, including      *
7 dnl without limitation the rights to use, copy, modify, merge, publish,      *
8 dnl distribute, distribute with modifications, sublicense, and/or sell       *
9 dnl copies of the Software, and to permit persons to whom the Software is    *
10 dnl furnished to do so, subject to the following conditions:                 *
11 dnl                                                                          *
12 dnl The above copyright notice and this permission notice shall be included  *
13 dnl in all copies or substantial portions of the Software.                   *
14 dnl                                                                          *
15 dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 dnl IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 dnl DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 dnl OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 dnl THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 dnl                                                                          *
23 dnl Except as contained in this notice, the name(s) of the above copyright   *
24 dnl holders shall not be used in advertising or otherwise to promote the     *
25 dnl sale, use or other dealings in this Software without prior written       *
26 dnl authorization.                                                           *
27 dnl***************************************************************************
28 dnl
29 dnl Author: Thomas E. Dickey 1995-on
30 dnl
31 dnl $Id: configure.in,v 1.512 2010/10/23 21:17:48 tom Exp $
32 dnl Process this file with autoconf to produce a configure script.
33 dnl
34 dnl See http://invisible-island.net/autoconf/ for additional information.
35 dnl
36 dnl ---------------------------------------------------------------------------
37 AC_PREREQ(2.13.20020210)
38 AC_REVISION($Revision: 1.512 $)
39 AC_INIT(ncurses/base/lib_initscr.c)
40 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
41
42 CF_TOP_BUILDDIR
43 CF_SUBST_NCURSES_VERSION
44
45 CF_WITH_REL_VERSION(NCURSES)
46 CF_WITH_ABI_VERSION
47
48 CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
49 AC_ARG_WITH(system-type,
50 [  --with-system-type=XXX  test: override derived host system-type],
51 [AC_MSG_WARN(overriding system type to $withval)
52  cf_cv_system_name=$withval])
53
54 ###     Save the given $CFLAGS to allow user-override.
55 cf_user_CFLAGS="$CFLAGS"
56
57 ###     Default install-location
58 CF_CFG_DEFAULTS
59
60 ###     Checks for programs.
61 AC_PROG_CC
62 CF_GCC_VERSION
63
64 AC_PROG_CPP
65 AC_PROG_GCC_TRADITIONAL
66 CF_PROG_CC_C_O(CC)
67 AC_ISC_POSIX
68 CF_ANSI_CC_REQD
69 CF_PROG_EXT
70 CF_PROG_LDCONFIG
71
72 dnl DEFECT in autoconf 2.12:    an attempt to set policy, this breaks the
73 dnl                             configure script by not letting us test if C++
74 dnl                             is present, making this option necessary.
75 AC_MSG_CHECKING(if you want to ensure bool is consistent with C++)
76 AC_ARG_WITH(cxx,
77         [  --without-cxx           do not adjust ncurses bool to match C++],
78         [cf_with_cxx=$withval],
79         [cf_with_cxx=yes])
80 AC_MSG_RESULT($cf_with_cxx)
81 if test "X$cf_with_cxx" = Xno ; then
82         CXX=""
83         GXX=""
84 else
85         # with autoconf 2.13, we can change the error to a warning:
86         pushdef([AC_MSG_ERROR],
87                 [AC_MSG_RESULT(no)
88                  AC_MSG_WARN([You don't have any C++ compiler, too bad])
89                 cf_with_cxx=no; CXX=""; GXX="";])dnl
90         AC_PROG_CXX
91         popdef([AC_MSG_ERROR])dnl
92         # autoconf 2.5x removed the error - by hardcoding it to g++.
93         if test "$CXX" = "g++" ; then
94                 AC_PATH_PROG(CXX,g++)
95         fi
96         if test "$CXX" = "g++" ; then
97                 AC_MSG_WARN(ignoring hardcoded g++)
98                 cf_with_cxx=no; CXX=""; GXX="";
99         fi
100 fi
101
102 CF_GXX_VERSION
103 case $GXX_VERSION in
104 1*|2.[[0-6]]*)
105         # GXX=""; CXX=""; ac_cv_prog_gxx=no
106         # cf_cxx_library=no
107         AC_MSG_WARN(templates do not work)
108         ;;
109 esac
110
111 AC_MSG_CHECKING(if you want to build C++ binding and demo)
112 AC_ARG_WITH(cxx-binding,
113         [  --without-cxx-binding   do not build C++ binding and demo],
114         [cf_with_cxx_binding=$withval],
115         [cf_with_cxx_binding=$cf_with_cxx])
116 AC_MSG_RESULT($cf_with_cxx_binding)
117
118 AC_MSG_CHECKING(if you want to build with Ada95)
119 AC_ARG_WITH(ada,
120         [  --without-ada           suppress check for Ada95, don't build demo],
121         [cf_with_ada=$withval],
122         [cf_with_ada=yes])
123 AC_MSG_RESULT($cf_with_ada)
124
125 AC_MSG_CHECKING(if you want to install manpages)
126 AC_ARG_WITH(manpages,
127         [  --without-manpages      suppress install of manpages],
128         [cf_with_manpages=$withval],
129         [cf_with_manpages=yes])
130 AC_MSG_RESULT($cf_with_manpages)
131
132 AC_MSG_CHECKING(if you want to build programs such as tic)
133 AC_ARG_WITH(progs,
134         [  --without-progs         suppress build with programs (e.g., tic)],
135         [cf_with_progs=$withval],
136         [cf_with_progs=yes])
137 AC_MSG_RESULT($cf_with_progs)
138
139 AC_MSG_CHECKING(if you want to build test-programs)
140 AC_ARG_WITH(tests,
141         [  --without-tests         suppress build with test-programs],
142         [cf_with_tests=$withval],
143         [cf_with_tests=yes])
144 AC_MSG_RESULT($cf_with_tests)
145
146 AC_MSG_CHECKING(if you wish to install curses.h)
147 AC_ARG_WITH(curses-h,
148         [  --without-curses-h      install curses.h as ncurses.h only],
149         [with_curses_h=$withval],
150         [with_curses_h=yes])
151 AC_MSG_RESULT($with_curses_h)
152
153 modules_to_build="ncurses"
154 if test "X$cf_with_progs" != Xno ; then
155 modules_to_build="$modules_to_build progs tack"
156 fi
157 modules_to_build="$modules_to_build panel menu form"
158
159 AC_ARG_PROGRAM
160
161 CF_PROG_AWK
162 CF_PROG_EGREP
163 CF_PROG_INSTALL
164 CF_PROG_LINT
165 CF_PROG_LN_S
166
167 AC_SYS_LONG_FILE_NAMES
168
169 # if we find pkg-config, check if we should install the ".pc" files.
170 CF_PKG_CONFIG
171
172 if test "$PKG_CONFIG" != no ; then
173         AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
174
175         # Leave this as something that can be overridden in the environment.
176         if test -z "$PKG_CONFIG_LIBDIR" ; then
177                 PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG" | sed -e 's,/[[^/]]*/[[^/]]*$,,'`/lib/pkgconfig
178         fi
179         PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'`
180         if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
181                 AC_ARG_ENABLE(pc-files,
182                         [  --enable-pc-files       generate and install .pc files for pkg-config],
183                         [enable_pc_files=$enableval],
184                         [enable_pc_files=no])
185                 AC_MSG_RESULT($enable_pc_files)
186         else
187                 AC_MSG_RESULT(no)
188                 AC_MSG_WARN(did not find library $PKG_CONFIG_LIBDIR)
189                 enable_pc_files=no
190         fi
191 fi
192 AC_SUBST(PKG_CONFIG_LIBDIR)
193
194 AC_MSG_CHECKING(if we should assume mixed-case filenames)
195 AC_ARG_ENABLE(mixed-case,
196         [  --enable-mixed-case     tic should assume mixed-case filenames],
197         [enable_mixedcase=$enableval],
198         [enable_mixedcase=auto])
199 AC_MSG_RESULT($enable_mixedcase)
200 if test "$enable_mixedcase" = "auto" ; then
201     CF_MIXEDCASE_FILENAMES
202 else
203     cf_cv_mixedcase=$enable_mixedcase
204     if test "$enable_mixedcase" = "yes" ; then
205         AC_DEFINE(MIXEDCASE_FILENAMES)
206     fi
207 fi
208
209 # do this after mixed-case option (tags/TAGS is not as important as tic).
210 AC_PROG_MAKE_SET
211 CF_MAKE_TAGS
212 CF_MAKEFLAGS
213
214 dnl These are standard among *NIX systems, but not when cross-compiling
215 AC_CHECK_TOOL(RANLIB, ranlib, ':')
216 AC_CHECK_TOOL(LD, ld, ld)
217 AC_CHECK_TOOL(AR, ar, ar)
218 CF_AR_FLAGS
219
220 dnl Special option for use by system-builders: the install-prefix is used to
221 dnl adjust the location into which the actual install is done, so that an
222 dnl archive can be built without modifying the host system's configuration.
223 AC_MSG_CHECKING(if you have specified an install-prefix)
224 AC_ARG_WITH(install-prefix,
225         [  --with-install-prefix   prefixes actual install-location ($DESTDIR)],
226         [case "$withval" in #(vi
227         yes|no) #(vi
228                 ;;
229         *)      DESTDIR="$withval"
230                 ;;
231         esac])
232 AC_MSG_RESULT($DESTDIR)
233 AC_SUBST(DESTDIR)
234
235 ###############################################################################
236 CF_HELP_MESSAGE(Build-Tools Needed to Compile Temporary Applications for Cross-compiling:)
237 # If we're cross-compiling, allow the user to override the tools and their
238 # options.  The configure script is oriented toward identifying the host
239 # compiler, etc., but we need a build compiler to generate parts of the source.
240 CF_BUILD_CC
241
242 ###############################################################################
243 CF_HELP_MESSAGE(Options to Specify the Libraries Built/Used:)
244
245 ### Options to allow the user to specify the set of libraries which are used.
246 ### Use "--without-normal --with-shared" to allow the default model to be
247 ### shared, for example.
248 cf_list_models=""
249 AC_SUBST(cf_list_models)dnl     the complete list of models ("normal debug")
250
251 CF_WITH_LIBTOOL
252 if test "$with_libtool" != "no" ; then
253
254 cf_list_models="$cf_list_models libtool"
255
256 else
257
258 AC_MSG_CHECKING(if you want to build shared libraries)
259 AC_ARG_WITH(shared,
260         [  --with-shared           generate shared-libraries],
261         [with_shared=$withval],
262         [with_shared=no])
263 AC_MSG_RESULT($with_shared)
264 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
265
266 AC_MSG_CHECKING(if you want to build static libraries)
267 AC_ARG_WITH(normal,
268         [  --with-normal           generate normal-libraries (default)],
269         [with_normal=$withval],
270         [with_normal=yes])
271 AC_MSG_RESULT($with_normal)
272 test "$with_normal" = "yes" && cf_list_models="$cf_list_models normal"
273
274 AC_MSG_CHECKING(if you want to build debug libraries)
275 AC_ARG_WITH(debug,
276         [  --with-debug            generate debug-libraries (default)],
277         [with_debug=$withval],
278         [with_debug=yes])
279 AC_MSG_RESULT($with_debug)
280 test "$with_debug" = "yes" && cf_list_models="$cf_list_models debug"
281
282 AC_MSG_CHECKING(if you want to build profiling libraries)
283 AC_ARG_WITH(profile,
284         [  --with-profile          generate profile-libraries],
285         [with_profile=$withval],
286         [with_profile=no])
287 AC_MSG_RESULT($with_profile)
288 test "$with_profile" = "yes" && cf_list_models="$cf_list_models profile"
289
290 fi
291
292 ###############################################################################
293
294 AC_MSG_CHECKING(for specified models)
295 test -z "$cf_list_models" && cf_list_models=normal
296 dnl If we use libtool to generate libraries, then it must be the only
297 dnl specified model.
298 test "$with_libtool" != "no" && cf_list_models=libtool
299 AC_MSG_RESULT($cf_list_models)
300
301 ### Use the first model as the default, and save its suffix for use in building
302 ### up test-applications.
303 AC_MSG_CHECKING(for default model)
304 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
305 AC_MSG_RESULT($DFT_LWR_MODEL)
306
307 CF_UPPER(DFT_UPR_MODEL,$DFT_LWR_MODEL)dnl
308
309 AC_SUBST(DFT_LWR_MODEL)dnl      the default model ("normal")
310 AC_SUBST(DFT_UPR_MODEL)dnl      the default model ("NORMAL")
311
312 TICS_NAME=tic
313 AC_SUBST(TICS_NAME)
314
315 TINFO_NAME=tinfo
316 AC_SUBST(TINFO_NAME)
317
318 LIB_NAME=ncurses
319 AC_SUBST(LIB_NAME)
320
321 LIB_DIR=../lib
322 LIB_2ND=../../lib
323
324 CF_LIB_PREFIX(cf_prefix)
325 LIB_PREFIX=$cf_prefix
326 AC_SUBST(LIB_PREFIX)
327
328 LIB_SUFFIX=
329 AC_SUBST(LIB_SUFFIX)
330
331 ###############################################################################
332
333 AC_MSG_CHECKING(if you want to build a separate terminfo library)
334 AC_ARG_WITH(termlib,
335         [  --with-termlib          generate separate terminfo library],
336         [with_termlib=$withval],
337         [with_termlib=no])
338 AC_MSG_RESULT($with_termlib)
339
340 AC_MSG_CHECKING(if you want to build a separate tic library)
341 AC_ARG_WITH(ticlib,
342         [  --with-ticlib           generate separate tic library],
343         [with_ticlib=$withval],
344         [with_ticlib=no])
345 AC_MSG_RESULT($with_ticlib)
346
347 ### Checks for special libraries, must be done up-front.
348 SHLIB_LIST=""
349 CF_WITH_GPM
350 if test "$with_gpm" != no ; then
351         AC_MSG_CHECKING(if you want to load GPM dynamically)
352         AC_ARG_WITH(dlsym,
353                 [  --without-dlsym         do not use dlsym() to load GPM dynamically],
354                 [with_dlsym=$withval],
355                 [with_dlsym=yes])
356         AC_MSG_RESULT($with_dlsym)
357         if test "$with_dlsym" = yes ; then
358                 CF_FUNC_DLSYM
359                 if test "$with_gpm" != yes ; then
360                         CF_VERBOSE(assuming soname for gpm is $with_gpm)
361                         cf_cv_gpm_soname="$with_gpm"
362                 else
363                         CF_LIB_SONAME([#include <gpm.h>],[if (Gpm_Open(0,0)) Gpm_Close();],gpm)
364                 fi
365                 test "$cf_cv_gpm_soname" != "unknown" && AC_DEFINE_UNQUOTED(LIBGPM_SONAME,"$cf_cv_gpm_soname")
366                 SHLIB_LIST="-ldl $SHLIB_LIST"
367         else
368                 SHLIB_LIST="-lgpm $SHLIB_LIST"
369                 CF_ADD_LIB(gpm,TEST_LIBS)
370         fi
371         AC_DEFINE(HAVE_LIBGPM)
372         CF_CHECK_GPM_WGETCH
373 fi
374
375 CF_WITH_SYSMOUSE
376
377 dnl Not all ports of gcc support the -g option
378
379 if test X"$CC_G_OPT" = X"" ; then
380         CC_G_OPT='-g'
381         test -n "$GCC" && test "${ac_cv_prog_cc_g}" != yes && CC_G_OPT=''
382 fi
383 AC_SUBST(CC_G_OPT)
384
385 if test X"$CXX_G_OPT" = X"" ; then
386         CXX_G_OPT='-g'
387         test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
388 fi
389 AC_SUBST(CXX_G_OPT)
390
391 AC_MSG_CHECKING(for default loader flags)
392 case $DFT_LWR_MODEL in
393 libtool) LD_MODEL=''   ;;
394 normal)  LD_MODEL=''   ;;
395 debug)   LD_MODEL=$CC_G_OPT ;;
396 profile) LD_MODEL='-pg';;
397 shared)  LD_MODEL=''   ;;
398 esac
399 AC_SUBST(LD_MODEL)dnl           the type of link (e.g., -g or -pg)
400 AC_MSG_RESULT($LD_MODEL)
401
402 case $DFT_LWR_MODEL in
403 shared)
404 CF_ENABLE_RPATH
405 AC_MSG_CHECKING(if shared libraries should be relinked during install)
406 AC_ARG_ENABLE(relink,
407 [  --disable-relink        relink shared libraries during install],
408 [cf_cv_do_relink=$enableval],
409 [cf_cv_do_relink=yes])
410 AC_MSG_RESULT($cf_cv_do_relink)
411         ;;
412 esac
413
414 CF_SHARED_OPTS
415 if test "$CC_SHARED_OPTS" = "unknown"; then
416         for model in $cf_list_models; do
417                 if test "$model" = "shared"; then
418                         AC_ERROR(Shared libraries are not supported in this version)
419                 fi
420         done
421 fi
422
423 ### If we're building with rpath, try to link non-standard libs that way too.
424 if test "$DFT_LWR_MODEL" = "shared"; then
425         CF_DISABLE_RPATH_HACK
426 fi
427
428 ###############################################################################
429 CF_HELP_MESSAGE(Fine-Tuning Your Configuration:)
430
431 ###     use option --disable-overwrite to leave out the link to -lcurses
432 AC_MSG_CHECKING(if you wish to install ncurses overwriting curses)
433 AC_ARG_ENABLE(overwrite,
434         [  --disable-overwrite     leave out the link to -lcurses],
435         [with_overwrite=$enableval],
436         [if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi])
437 AC_MSG_RESULT($with_overwrite)
438
439 AC_MSG_CHECKING(if external terminfo-database is used)
440 AC_ARG_ENABLE(database,
441         [  --disable-database      do not use terminfo, only fallbacks/termcap],
442         [use_database=$enableval],
443         [use_database=yes])
444 AC_MSG_RESULT($use_database)
445
446 case $host_os in #(vi
447 os2*) #(vi
448         TERMINFO_SRC='${top_srcdir}/misc/emx.src'
449         ;;
450 *) #(vi
451         TERMINFO_SRC='${top_srcdir}/misc/terminfo.src'
452         ;;
453 esac
454 AC_SUBST(TERMINFO_SRC)
455
456 CF_PATHSEP
457 if test "$use_database" != no ; then
458         AC_DEFINE(USE_DATABASE)
459
460         AC_MSG_CHECKING(which terminfo source-file will be installed)
461         AC_ARG_WITH(database,
462                 [  --with-database=XXX     specify terminfo source to install],
463                 [TERMINFO_SRC=$withval])
464         AC_MSG_RESULT($TERMINFO_SRC)
465
466         AC_MSG_CHECKING(whether to use hashed database instead of directory/tree)
467         AC_ARG_WITH(hashed-db,
468                 [  --with-hashed-db        specify hashed-database library],,
469                 [with_hashed_db=no])
470         AC_MSG_RESULT($with_hashed_db)
471 else
472         with_hashed_db=no
473 fi
474
475 AC_MSG_CHECKING(for list of fallback descriptions)
476 AC_ARG_WITH(fallbacks,
477         [  --with-fallbacks=XXX    specify list of fallback terminal descriptions],
478         [with_fallback=$withval],
479         [with_fallback=])
480 AC_MSG_RESULT($with_fallback)
481 FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
482 AC_SUBST(FALLBACK_LIST)
483
484 AC_MSG_CHECKING(if you want modern xterm or antique)
485 AC_ARG_WITH(xterm-new,
486         [  --without-xterm-new     specify if xterm terminfo should be old version],
487         [with_xterm_new=$withval],
488         [with_xterm_new=yes])
489 case $with_xterm_new in
490 no)     with_xterm_new=xterm-old;;
491 *)      with_xterm_new=xterm-new;;
492 esac
493 AC_MSG_RESULT($with_xterm_new)
494 WHICH_XTERM=$with_xterm_new
495 AC_SUBST(WHICH_XTERM)
496
497 MAKE_TERMINFO=
498 if test "$use_database" = no ; then
499         TERMINFO="${datadir}/terminfo"
500         MAKE_TERMINFO="#"
501 else
502
503 AC_MSG_CHECKING(for list of terminfo directories)
504 CF_WITH_PATHLIST(terminfo-dirs,
505         [  --with-terminfo-dirs=XXX specify list of terminfo directories],
506         TERMINFO_DIRS,
507         DATADIR/terminfo,
508         ${datadir}/terminfo)
509 AC_MSG_RESULT($TERMINFO_DIRS)
510 test -n "$TERMINFO_DIRS" && AC_DEFINE_UNQUOTED(TERMINFO_DIRS,"$TERMINFO_DIRS")
511
512 AC_MSG_CHECKING(for default terminfo directory)
513 CF_WITH_PATH(default-terminfo-dir,
514         [  --with-default-terminfo-dir=DIR default terminfo directory],
515         TERMINFO,
516         DATADIR/terminfo,
517         ${datadir}/terminfo)
518 AC_MSG_RESULT($TERMINFO)
519 AC_DEFINE_UNQUOTED(TERMINFO,"$TERMINFO")
520
521 fi
522
523 AC_SUBST(TERMINFO)
524 AC_SUBST(MAKE_TERMINFO)
525
526 ###     use option --disable-big-core to make tic run on small machines
527 ###     We need 4Mb, check if we can allocate 50% more than that.
528 AC_MSG_CHECKING(if big-core option selected)
529 AC_ARG_ENABLE(big-core,
530         [  --disable-big-core      assume machine has little memory],
531         [with_big_core=$enableval],
532         [AC_TRY_RUN([
533 #include <stdlib.h>
534 #include <string.h>
535 int main() {
536         unsigned long n = 6000000L;
537         char *s = malloc(n);
538         if (s != 0)
539                 s[0] = s[n-1] = 0;
540         ${cf_cv_main_return:-return}(s == 0);
541 }],
542         [with_big_core=yes],
543         [with_big_core=no],
544         [with_big_core=no])])
545 AC_MSG_RESULT($with_big_core)
546 test "$with_big_core" = "yes" && AC_DEFINE(HAVE_BIG_CORE)
547
548 ### ISO C only guarantees 512-char strings, we have tables which load faster
549 ### when constructed using "big" strings.  More than the C compiler, the awk
550 ### program is a limit on most vendor UNIX systems.  Check that we can build.
551 AC_MSG_CHECKING(if big-strings option selected)
552 AC_ARG_ENABLE(big-strings,
553         [  --disable-big-strings   assume compiler has only standard-size strings],
554         [with_big_strings=$enableval],
555         [CF_AWK_BIG_PRINTF(12000,with_big_strings)])
556 AC_MSG_RESULT($with_big_strings)
557
558 USE_BIG_STRINGS=0
559 test "$with_big_strings" = "yes" && USE_BIG_STRINGS=1
560 AC_SUBST(USE_BIG_STRINGS)
561
562 ###     use option --enable-termcap to compile in the termcap fallback support
563 AC_MSG_CHECKING(if you want termcap-fallback support)
564 AC_ARG_ENABLE(termcap,
565         [  --enable-termcap        compile in termcap fallback support],
566         [with_termcap=$enableval],
567         [with_termcap=no])
568 AC_MSG_RESULT($with_termcap)
569
570 if test "$with_termcap" != "yes" ; then
571         if test "$use_database" = no ; then
572                 if test -z "$with_fallback" ; then
573                         AC_ERROR(You have disabled the database w/o specifying fallbacks)
574                 fi
575         fi
576         AC_DEFINE(PURE_TERMINFO)
577 else
578
579 if test "$with_ticlib" != no ; then
580         AC_ERROR(Options --with-ticlib and --enable-termcap cannot be combined)
581 fi
582
583 AC_DEFINE(USE_TERMCAP)
584 AC_MSG_CHECKING(for list of termcap files)
585 CF_WITH_PATHLIST(termpath,
586         [  --with-termpath=XXX     specify list of termcap files],
587         TERMPATH,
588         /etc/termcap:/usr/share/misc/termcap)
589 AC_MSG_RESULT($TERMPATH)
590 test -n "$TERMPATH" && AC_DEFINE_UNQUOTED(TERMPATH,"$TERMPATH")
591
592 ###     use option --enable-getcap to use a hacked getcap for reading termcaps
593 AC_MSG_CHECKING(if fast termcap-loader is needed)
594 AC_ARG_ENABLE(getcap,
595         [  --enable-getcap         fast termcap load, no xrefs to terminfo],
596         [with_getcap=$enableval],
597         [with_getcap=no])
598 AC_MSG_RESULT($with_getcap)
599 test "$with_getcap" = "yes" && AC_DEFINE(USE_GETCAP)
600
601 AC_MSG_CHECKING(if translated termcaps will be cached in ~/.terminfo)
602 AC_ARG_ENABLE(getcap-cache,
603         [  --enable-getcap-cache   cache translated termcaps in ~/.terminfo],
604         [with_getcap_cache=$enableval],
605         [with_getcap_cache=no])
606 AC_MSG_RESULT($with_getcap_cache)
607 test "$with_getcap_cache" = "yes" && AC_DEFINE(USE_GETCAP_CACHE)
608
609 fi
610
611 ###   Use option --disable-home-terminfo to completely remove ~/.terminfo
612 AC_MSG_CHECKING(if ~/.terminfo is wanted)
613 AC_ARG_ENABLE(home-terminfo,
614         [  --disable-home-terminfo drop ~/.terminfo from terminfo search-path],
615         [with_home_terminfo=$enableval],
616         [with_home_terminfo=yes])
617 AC_MSG_RESULT($with_home_terminfo)
618 test "$with_home_terminfo" = "yes" && AC_DEFINE(USE_HOME_TERMINFO)
619
620 AC_MSG_CHECKING(if you want to use restricted environment when running as root)
621 AC_ARG_ENABLE(root-environ,
622         [  --disable-root-environ  restrict environment when running as root],
623         [with_root_environ=$enableval],
624         [with_root_environ=yes])
625 AC_MSG_RESULT($with_root_environ)
626 test "$with_root_environ" = yes && AC_DEFINE(USE_ROOT_ENVIRON)
627
628 ###   Use option --enable-symlinks to make tic use symlinks, not hard links
629 ###   to reduce storage requirements for the terminfo database.
630 CF_LINK_FUNCS
631
632 with_links=no
633 with_symlinks=no
634
635 # soft links (symbolic links) are useful for some systems where hard links do
636 # not work, or to make it simpler to copy terminfo trees around.
637 if test "$ac_cv_func_symlink" = yes ; then
638     AC_MSG_CHECKING(if tic should use symbolic links)
639     AC_ARG_ENABLE(symlinks,
640         [  --enable-symlinks       make tic use symbolic links not hard links],
641         [with_symlinks=$enableval],
642         [with_symlinks=no])
643     AC_MSG_RESULT($with_symlinks)
644 fi
645
646 # If we have hard links and did not choose to use soft links instead, there is
647 # no reason to make this choice optional - use the hard links.
648 if test "$with_symlinks" = no ; then
649     AC_MSG_CHECKING(if tic should use hard links)
650     if test "$ac_cv_func_link" = yes ; then
651         with_links=yes
652     else
653         with_links=no
654     fi
655     AC_MSG_RESULT($with_links)
656 fi
657
658 test "$with_links" = yes && AC_DEFINE(USE_LINKS)
659 test "$with_symlinks" = yes && AC_DEFINE(USE_SYMLINKS)
660
661 ###   use option --enable-broken-linker to force on use of broken-linker support
662 AC_MSG_CHECKING(if you want broken-linker support code)
663 AC_ARG_ENABLE(broken_linker,
664         [  --enable-broken_linker  compile with broken-linker support code],
665         [with_broken_linker=$enableval],
666         [with_broken_linker=${BROKEN_LINKER:-no}])
667 AC_MSG_RESULT($with_broken_linker)
668
669 BROKEN_LINKER=0
670 if test "$with_broken_linker" = yes ; then
671         AC_DEFINE(BROKEN_LINKER)
672         BROKEN_LINKER=1
673 elif test "$DFT_LWR_MODEL" = shared ; then
674         case $cf_cv_system_name in #(vi
675         cygwin*)
676                 AC_DEFINE(BROKEN_LINKER)
677                 BROKEN_LINKER=1
678                 CF_VERBOSE(cygwin linker is broken anyway)
679                 ;;
680         esac
681 fi
682 AC_SUBST(BROKEN_LINKER)
683
684 ###   use option --enable-bsdpad to have tputs process BSD-style prefix padding
685 AC_MSG_CHECKING(if tputs should process BSD-style prefix padding)
686 AC_ARG_ENABLE(bsdpad,
687         [  --enable-bsdpad         recognize BSD-style prefix padding],
688         [with_bsdpad=$enableval],
689         [with_bsdpad=no])
690 AC_MSG_RESULT($with_bsdpad)
691 test "$with_bsdpad" = yes && AC_DEFINE(BSD_TPUTS)
692
693 ###   use option --enable-widec to turn on use of wide-character support
694 NCURSES_CH_T=chtype
695 NCURSES_LIBUTF8=0
696
697 NEED_WCHAR_H=0
698 NCURSES_MBSTATE_T=0
699 NCURSES_WCHAR_T=0
700 NCURSES_WINT_T=0
701
702 # Check to define _XOPEN_SOURCE "automatically"
703 CF_XOPEN_SOURCE(500)
704
705 # Work around breakage on OS X
706 CF_SIGWINCH
707
708 # Checks for CODESET support.
709 AM_LANGINFO_CODESET
710
711 # use these variables to work around a defect in gcc's fixincludes.
712 NCURSES_OK_WCHAR_T=
713 NCURSES_OK_WINT_T=
714
715 AC_MSG_CHECKING(if you want wide-character code)
716 AC_ARG_ENABLE(widec,
717         [  --enable-widec          compile with wide-char/UTF-8 code],
718         [with_widec=$enableval],
719         [with_widec=no])
720 AC_MSG_RESULT($with_widec)
721 if test "$with_widec" = yes ; then
722         LIB_SUFFIX="w${LIB_SUFFIX}"
723         AC_DEFINE(USE_WIDEC_SUPPORT)
724
725         case "$CFLAGS $CPPFLAGS" in #(vi
726         *-D_XOPEN_SOURCE=500) #(vi
727                 ;;
728         *)
729                 CF_PREDEFINE(_XOPEN_SOURCE_EXTENDED)
730                 ;;
731         esac
732
733         # with_overwrite=no
734         NCURSES_CH_T=cchar_t
735         AC_CHECK_FUNCS(putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs)
736         if test "$ac_cv_func_putwc" != yes ; then
737                 CF_UTF8_LIB
738                 if test "$cf_cv_utf8_lib" != no ; then
739                         NCURSES_LIBUTF8=1
740                 fi
741         fi
742         CF_WCHAR_TYPE(mbstate_t, NCURSES_MBSTATE_T)
743         CF_WCHAR_TYPE(wchar_t,   NCURSES_WCHAR_T,   NCURSES_OK_WCHAR_T)
744         CF_WCHAR_TYPE(wint_t,    NCURSES_WINT_T,    NCURSES_OK_WINT_T)
745
746         if test "$NCURSES_MBSTATE_T" != 0; then
747                 AC_DEFINE(NEED_MBSTATE_T_DEF)
748         fi
749 fi
750 AC_SUBST(NCURSES_CH_T)
751 AC_SUBST(NCURSES_LIBUTF8)
752
753 AC_SUBST(NEED_WCHAR_H)
754 AC_SUBST(NCURSES_MBSTATE_T)
755 AC_SUBST(NCURSES_WCHAR_T)
756 AC_SUBST(NCURSES_WINT_T)
757
758 AC_SUBST(NCURSES_OK_WCHAR_T)
759 AC_SUBST(NCURSES_OK_WINT_T)
760
761 ###   use option --disable-lp64 to allow long chtype
762 case $cf_cv_abi_version in
763 [[345]]*)
764         default_with_lp64=no
765         ;;
766 *)
767         default_with_lp64=yes
768         ;;
769 esac
770
771 AC_MSG_CHECKING(whether to enable _LP64 definition in curses.h)
772 AC_ARG_ENABLE(lp64,
773         [  --disable-lp64          allow chtype to be long (ignore _LP64)],
774         [with_lp64=$enableval],
775         [with_lp64=$default_with_lp64])
776 AC_MSG_RESULT($with_lp64)
777
778 if test "$with_lp64" = yes ; then
779         cf_cv_enable_lp64=1
780 else
781         cf_cv_enable_lp64=0
782 fi
783 AC_SUBST(cf_cv_enable_lp64)
784
785 CF_LARGEFILE
786
787 ###   use option --disable-tparm-varargs to make tparm() conform to X/Open
788 AC_MSG_CHECKING(if you want tparm not to use X/Open fixed-parameter list)
789 AC_ARG_ENABLE(tparm-varargs,
790         [  --disable-tparm-varargs compile tparm() without varargs interface],
791         [with_tparm_varargs=$enableval],
792         [with_tparm_varargs=yes])
793 AC_MSG_RESULT($with_tparm_varargs)
794 NCURSES_TPARM_VARARGS=0
795 test "$with_tparm_varargs" = yes && NCURSES_TPARM_VARARGS=1
796 AC_SUBST(NCURSES_TPARM_VARARGS)
797
798 ###   use option --disable-tic-depends to make libtic not explicitly depend on ncurses/ncursesw
799 if test "$with_ticlib" != no ; then
800 AC_MSG_CHECKING(if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library)
801 AC_ARG_ENABLE(tic-depends,
802         [  --disable-tic-depends   link tic library without explicit dependency on ncurses library],
803         [with_tic_depends=$enableval],
804         [with_tic_depends=yes])
805 AC_MSG_RESULT($with_tic_depends)
806 else
807         with_tic_depends=no
808 fi
809
810 ###   use option --with-bool to override bool's type
811 AC_MSG_CHECKING(for type of bool)
812 AC_ARG_WITH(bool,
813         [  --with-bool=TYPE        override fallback type of bool variable],
814         [NCURSES_BOOL="$withval"],
815         [NCURSES_BOOL=auto])
816 AC_MSG_RESULT($NCURSES_BOOL)
817 AC_SUBST(NCURSES_BOOL)
818
819 AC_MSG_CHECKING(for alternate terminal capabilities file)
820 AC_ARG_WITH(caps,
821         [  --with-caps=alt         compile with alternate Caps file],
822         [TERMINFO_CAPS=Caps.$withval],
823         [TERMINFO_CAPS=Caps])
824 test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
825 AC_MSG_RESULT($TERMINFO_CAPS)
826 AC_SUBST(TERMINFO_CAPS)
827
828 ###   use option --with-chtype to override chtype's type
829 AC_MSG_CHECKING(for type of chtype)
830 AC_ARG_WITH(chtype,
831         [  --with-chtype=TYPE      override type of chtype],
832         [NCURSES_CHTYPE="$withval"],
833         [NCURSES_CHTYPE=auto])
834 AC_MSG_RESULT($NCURSES_CHTYPE)
835
836 ###   use option --with-ospeed to override ospeed's type
837 AC_MSG_CHECKING(for type of ospeed)
838 AC_ARG_WITH(ospeed,
839         [  --with-ospeed=TYPE      override type of ospeed variable],
840         [NCURSES_OSPEED="$withval"],
841         [NCURSES_OSPEED=short])
842 AC_MSG_RESULT($NCURSES_OSPEED)
843 AC_SUBST(NCURSES_OSPEED)
844
845 ###   use option --with-mmask-t to override mmask_t's type
846 AC_MSG_CHECKING(for type of mmask_t)
847 AC_ARG_WITH(mmask-t,
848         [  --with-mmask-t=TYPE     override type of mmask_t],
849         [NCURSES_MMASK_T="$withval"],
850         [NCURSES_MMASK_T=auto])
851 AC_MSG_RESULT($NCURSES_MMASK_T)
852
853 ###   use option --with-ccharw-max to override CCHARW_MAX size
854 AC_MSG_CHECKING(for size CCHARW_MAX)
855 AC_ARG_WITH(ccharw-max,
856         [  --with-ccharw-max=XXX   override size CCHARW_MAX],
857         [NCURSES_CCHARW_MAX="$withval"],
858         [NCURSES_CCHARW_MAX=5])
859 AC_MSG_RESULT($NCURSES_CCHARW_MAX)
860 AC_SUBST(NCURSES_CCHARW_MAX)
861
862 ### Enable compiling-in rcs id's
863 AC_MSG_CHECKING(if RCS identifiers should be compiled-in)
864 AC_ARG_WITH(rcs-ids,
865         [  --with-rcs-ids          compile-in RCS identifiers],
866         [with_rcs_ids=$withval],
867         [with_rcs_ids=no])
868 AC_MSG_RESULT($with_rcs_ids)
869 test "$with_rcs_ids" = yes && AC_DEFINE(USE_RCS_IDS)
870
871 ###############################################################################
872 CF_MAN_PAGES([ captoinfo clear infocmp infotocap tabs tic toe tput tset ])
873
874 ###############################################################################
875 CF_HELP_MESSAGE(Extensions:)
876
877 ### Note that some functions (such as const) are normally disabled anyway.
878 AC_MSG_CHECKING(if you want to build with function extensions)
879 AC_ARG_ENABLE(ext-funcs,
880         [  --disable-ext-funcs     disable function-extensions],
881         [with_ext_funcs=$enableval],
882         [with_ext_funcs=yes])
883 AC_MSG_RESULT($with_ext_funcs)
884 if test "$with_ext_funcs" = yes ; then
885         NCURSES_EXT_FUNCS=1
886         AC_DEFINE(HAVE_CURSES_VERSION)
887         AC_DEFINE(HAVE_HAS_KEY)
888         AC_DEFINE(HAVE_RESIZETERM)
889         AC_DEFINE(HAVE_RESIZE_TERM)
890         AC_DEFINE(HAVE_USE_DEFAULT_COLORS)
891         AC_DEFINE(HAVE_WRESIZE)
892         AC_DEFINE(NCURSES_EXT_FUNCS)
893         GENERATED_EXT_FUNCS=generated
894 else
895         NCURSES_EXT_FUNCS=0
896         GENERATED_EXT_FUNCS=
897 fi
898 AC_SUBST(NCURSES_EXT_FUNCS)
899 AC_SUBST(GENERATED_EXT_FUNCS)
900
901 AC_MSG_CHECKING(if you want to build with experimental SCREEN extensions)
902 AC_ARG_ENABLE(sp-funcs,
903         [  --enable-sp-funcs       enable experimental SCREEN-extensions],
904         [with_sp_funcs=$enableval],
905         [with_sp_funcs=no])
906 AC_MSG_RESULT($with_sp_funcs)
907 if test "$with_sp_funcs" = yes ; then
908         NCURSES_SP_FUNCS=1
909         AC_DEFINE(NCURSES_SP_FUNCS)
910         GENERATED_SP_FUNCS=generated
911 else
912         NCURSES_SP_FUNCS=0
913         GENERATED_SP_FUNCS=
914 fi
915 AC_SUBST(NCURSES_SP_FUNCS)
916 AC_SUBST(GENERATED_SP_FUNCS)
917
918 AC_MSG_CHECKING(if you want to build with experimental terminal-driver)
919 AC_ARG_ENABLE(term-driver,
920         [  --enable-term-driver    enable experimental terminal-driver],
921         [with_term_driver=$enableval],
922         [with_term_driver=no])
923 AC_MSG_RESULT($with_term_driver)
924 if test "$with_term_driver" = yes ; then
925         AC_DEFINE(USE_TERM_DRIVER)
926         if test "$with_sp_funcs" != yes ; then
927                 AC_MSG_ERROR(The term-driver option relies upon sp-funcs)
928         fi
929 fi
930
931 ###   use option --enable-const to turn on use of const beyond that in XSI.
932 AC_MSG_CHECKING(for extended use of const keyword)
933 AC_ARG_ENABLE(const,
934         [  --enable-const          compile with extra/non-standard const],
935         [with_ext_const=$enableval],
936         [with_ext_const=no])
937 AC_MSG_RESULT($with_ext_const)
938 NCURSES_CONST='/*nothing*/'
939 if test "$with_ext_const" = yes ; then
940         NCURSES_CONST=const
941 fi
942 AC_SUBST(NCURSES_CONST)
943
944 ###   use option --enable-ext-colors to turn on use of colors beyond 16.
945 AC_MSG_CHECKING(if you want to use extended colors)
946 AC_ARG_ENABLE(ext-colors,
947         [  --enable-ext-colors     compile for 256-color support],
948         [with_ext_colors=$enableval],
949         [with_ext_colors=no])
950 AC_MSG_RESULT($with_ext_colors)
951 NCURSES_EXT_COLORS=0
952 if test "$with_ext_colors" = yes ; then
953         if test "$with_widec" != yes ; then
954                 AC_MSG_ERROR(This option applies only to wide-character library)
955         else
956                 # cannot be ABI 5 since it changes sizeof(cchar_t)
957                 CF_NCURSES_ABI_6
958         fi
959         NCURSES_EXT_COLORS=1
960         AC_DEFINE(NCURSES_EXT_COLORS)
961 fi
962 AC_SUBST(NCURSES_EXT_COLORS)
963
964 ###   use option --enable-ext-mouse to modify coding to support 5-button mice
965 AC_MSG_CHECKING(if you want to use extended mouse encoding)
966 AC_ARG_ENABLE(ext-mouse,
967         [  --enable-ext-mouse      compile for extended mouse-encoding],
968         [with_ext_mouse=$enableval],
969         [with_ext_mouse=no])
970 AC_MSG_RESULT($with_ext_mouse)
971 NCURSES_MOUSE_VERSION=1
972 if test "$with_ext_mouse" = yes ; then
973         NCURSES_MOUSE_VERSION=2
974         CF_NCURSES_ABI_6
975 fi
976 AC_SUBST(NCURSES_MOUSE_VERSION)
977
978 AC_MSG_CHECKING(if you want \$NCURSES_NO_PADDING code)
979 AC_ARG_ENABLE(no-padding,
980         [  --enable-no-padding     compile with $NCURSES_NO_PADDING code],
981         [with_no_padding=$enableval],
982         [with_no_padding=$with_ext_funcs])
983 AC_MSG_RESULT($with_no_padding)
984 test "$with_no_padding" = yes && AC_DEFINE(NCURSES_NO_PADDING)
985
986 AC_CHECK_SIZEOF([signed char], 0)
987 if test "$ac_cv_sizeof_signed_char" = 1 ; then
988         NCURSES_SBOOL="signed char"
989 else
990         NCURSES_SBOOL="char"
991 fi
992 AC_MSG_CHECKING(if you want to use signed Boolean array in term.h)
993 AC_ARG_ENABLE(signed-char,
994         [  --enable-signed-char    compile using signed Boolean's in term.h],
995         [with_signed_char=$enableval],
996         [with_signed_char=no])
997 AC_MSG_RESULT($with_signed_char)
998 test "$with_signed_char" != yes && NCURSES_SBOOL="char"
999 AC_SUBST(NCURSES_SBOOL)
1000
1001 ###   use option --enable-sigwinch to turn on use of SIGWINCH logic
1002 AC_MSG_CHECKING(if you want SIGWINCH handler)
1003 AC_ARG_ENABLE(sigwinch,
1004         [  --enable-sigwinch       compile with SIGWINCH handler],
1005         [with_sigwinch=$enableval],
1006         [with_sigwinch=$with_ext_funcs])
1007 AC_MSG_RESULT($with_sigwinch)
1008 test "$with_sigwinch" = yes && AC_DEFINE(USE_SIGWINCH)
1009
1010 ###   use option --enable-tcap-names to allow user to define new capabilities
1011 AC_MSG_CHECKING(if you want user-definable terminal capabilities like termcap)
1012 AC_ARG_ENABLE(tcap-names,
1013         [  --enable-tcap-names     compile with user-definable terminal capabilities],
1014         [with_tcap_names=$enableval],
1015         [with_tcap_names=$with_ext_funcs])
1016 AC_MSG_RESULT($with_tcap_names)
1017 NCURSES_XNAMES=0
1018 test "$with_tcap_names" = yes && NCURSES_XNAMES=1
1019 AC_SUBST(NCURSES_XNAMES)
1020
1021 ###############################################################################
1022 # These options are relatively safe to experiment with.
1023 CF_HELP_MESSAGE(Development Code:)
1024 AC_MSG_CHECKING(if you want all development code)
1025 AC_ARG_WITH(develop,
1026         [  --without-develop       disable development options],
1027         [with_develop=$withval],
1028         [with_develop=no])
1029 AC_MSG_RESULT($with_develop)
1030
1031 ###   use option --enable-hard-tabs to turn on use of hard-tabs optimize
1032 AC_MSG_CHECKING(if you want hard-tabs code)
1033 AC_ARG_ENABLE(hard-tabs,
1034         [  --enable-hard-tabs      compile with hard-tabs code],,
1035         [enable_hard_tabs=$with_develop])
1036 AC_MSG_RESULT($enable_hard_tabs)
1037 test "$enable_hard_tabs" = yes && AC_DEFINE(USE_HARD_TABS)
1038
1039 ###   use option --enable-xmc-glitch to turn on use of magic-cookie optimize
1040 AC_MSG_CHECKING(if you want limited support for xmc)
1041 AC_ARG_ENABLE(xmc-glitch,
1042         [  --enable-xmc-glitch     compile with support for xmc (magic-cookie)],,
1043         [enable_xmc_glitch=$with_develop])
1044 AC_MSG_RESULT($enable_xmc_glitch)
1045 test "$enable_xmc_glitch" = yes && AC_DEFINE(USE_XMC_SUPPORT)
1046
1047 ###############################################################################
1048 # These are just experimental, probably should not be in a package:
1049 CF_HELP_MESSAGE(Experimental Code:)
1050
1051 AC_MSG_CHECKING(if you do not want to assume colors are white-on-black)
1052 AC_ARG_ENABLE(assumed-color,
1053         [  --disable-assumed-color do not assume anything about default-colors],
1054         [with_assumed_color=$enableval],
1055         [with_assumed_color=yes])
1056 AC_MSG_RESULT($with_assumed_color)
1057 test "$with_assumed_color" = yes && AC_DEFINE(USE_ASSUMED_COLOR)
1058
1059 ###   use option --enable-hashmap to turn on use of hashmap scrolling logic
1060 AC_MSG_CHECKING(if you want hashmap scrolling-optimization code)
1061 AC_ARG_ENABLE(hashmap,
1062         [  --disable-hashmap       compile without hashmap scrolling-optimization],
1063         [with_hashmap=$enableval],
1064         [with_hashmap=yes])
1065 AC_MSG_RESULT($with_hashmap)
1066 test "$with_hashmap" = yes && AC_DEFINE(USE_HASHMAP)
1067
1068 ###   use option --enable-colorfgbg to turn on use of $COLORFGBG environment
1069 AC_MSG_CHECKING(if you want colorfgbg code)
1070 AC_ARG_ENABLE(colorfgbg,
1071         [  --enable-colorfgbg      compile-in experimental $COLORFGBG code],
1072         [with_colorfgbg=$enableval],
1073         [with_colorfgbg=no])
1074 AC_MSG_RESULT($with_colorfgbg)
1075 test "$with_colorfgbg" = yes && AC_DEFINE(USE_COLORFGBG)
1076
1077 ###   use option --enable-interop to turn on use of bindings used for interop
1078 AC_MSG_CHECKING(if you want interop bindings)
1079 AC_ARG_ENABLE(interop,
1080         [  --enable-interop        compile-in experimental interop bindings],
1081         [with_exp_interop=$enableval],
1082         [with_exp_interop=no])
1083 AC_MSG_RESULT($with_exp_interop)
1084
1085 NCURSES_INTEROP_FUNCS=0
1086 test "$with_exp_interop" = yes && NCURSES_INTEROP_FUNCS=1
1087 AC_SUBST(NCURSES_INTEROP_FUNCS)
1088
1089 # This is still experimental (20080329), but should ultimately be moved to
1090 # the script-block --with-normal, etc.
1091 CF_WITH_PTHREAD
1092
1093 if test "x$with_pthread" != xno; then
1094         AC_CHECK_FUNC(pthread_kill,[
1095                 AC_MSG_CHECKING(if you want to allow EINTR in wgetch with pthreads)
1096                 AC_ARG_ENABLE(pthreads-eintr,
1097                         [  --enable-pthreads-eintr enable EINTR in wgetch with pthreads],
1098                         [use_pthreads_eintr=$enableval],
1099                         [use_pthreads_eintr=no])
1100                 AC_MSG_RESULT($use_pthreads_eintr)
1101                 if test $use_pthreads_eintr = yes ; then
1102                         AC_DEFINE(USE_PTHREADS_EINTR)
1103                 fi])
1104
1105         AC_MSG_CHECKING(if you want to use weak-symbols for pthreads)
1106         AC_ARG_ENABLE(weak-symbols,
1107                 [  --enable-weak-symbols   enable weak-symbols for pthreads],
1108                 [use_weak_symbols=$enableval],
1109                 [use_weak_symbols=no])
1110         AC_MSG_RESULT($use_weak_symbols)
1111         if test "$use_weak_symbols" = yes ; then
1112                 CF_WEAK_SYMBOLS
1113         else
1114                 cf_cv_weak_symbols=no
1115         fi
1116
1117         if test $cf_cv_weak_symbols = yes ; then
1118                 AC_DEFINE(USE_WEAK_SYMBOLS)
1119         fi
1120 fi
1121
1122 PTHREAD=
1123 if test "$with_pthread" = "yes" ; then
1124     AC_DEFINE(USE_PTHREADS)
1125     enable_reentrant=yes
1126     if test $cf_cv_weak_symbols = yes ; then
1127         PTHREAD=-lpthread
1128     fi
1129 fi
1130 AC_SUBST(PTHREAD)
1131
1132 # Reentrant code has to be opaque; there's little advantage to making ncurses
1133 # opaque outside of that, so there is no --enable-opaque option.  We can use
1134 # this option without --with-pthreads, but this will be always set for
1135 # pthreads.
1136 AC_MSG_CHECKING(if you want experimental reentrant code)
1137 AC_ARG_ENABLE(reentrant,
1138         [  --enable-reentrant      compile with experimental reentrant code],
1139         [with_reentrant=$enableval],
1140         [with_reentrant=no])
1141 AC_MSG_RESULT($with_reentrant)
1142 if test "$with_reentrant" = yes ; then
1143         cf_cv_enable_reentrant=1
1144         cf_cv_enable_opaque="NCURSES_INTERNALS"
1145         NCURSES_OPAQUE=1
1146         NCURSES_SIZE_T=int
1147         if test $cf_cv_weak_symbols = yes ; then
1148                 CF_REMOVE_LIB(LIBS,$LIBS,pthread)
1149                 CF_ADD_LIB(pthread,TEST_LIBS)
1150                 CF_ADD_LIB(pthread,TEST_LIBS2)
1151         else
1152                 LIB_SUFFIX="t${LIB_SUFFIX}"
1153         fi
1154         AC_DEFINE(USE_REENTRANT)
1155         CF_NCURSES_ABI_6
1156 else
1157         cf_cv_enable_reentrant=0
1158         cf_cv_enable_opaque="NCURSES_OPAQUE"
1159         NCURSES_OPAQUE=0
1160         NCURSES_SIZE_T=short
1161 fi
1162 AC_SUBST(cf_cv_enable_reentrant)
1163 AC_SUBST(cf_cv_enable_opaque)
1164 AC_SUBST(NCURSES_OPAQUE)
1165 AC_SUBST(NCURSES_SIZE_T)
1166
1167 ### Allow using a different wrap-prefix
1168 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
1169         AC_MSG_CHECKING(for prefix used to wrap public variables)
1170         AC_ARG_WITH(wrap-prefix,
1171                 [  --with-wrap-prefix=XXX  override prefix used for public variables],
1172                 [NCURSES_WRAP_PREFIX=$withval],
1173                 [NCURSES_WRAP_PREFIX=_nc_])
1174         AC_MSG_RESULT($NCURSES_WRAP_PREFIX)
1175 else
1176         NCURSES_WRAP_PREFIX=_nc_
1177 fi
1178 AC_SUBST(NCURSES_WRAP_PREFIX)
1179 AC_DEFINE_UNQUOTED(NCURSES_WRAP_PREFIX,"$NCURSES_WRAP_PREFIX")
1180
1181 AC_MSG_CHECKING(if you want experimental safe-sprintf code)
1182 AC_ARG_ENABLE(safe-sprintf,
1183         [  --enable-safe-sprintf   compile with experimental safe-sprintf code],
1184         [with_safe_sprintf=$enableval],
1185         [with_safe_sprintf=no])
1186 AC_MSG_RESULT($with_safe_sprintf)
1187 test "$with_safe_sprintf" = yes && AC_DEFINE(USE_SAFE_SPRINTF)
1188
1189 ###   use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
1190 # when hashmap is used scroll hints are useless
1191 if test "$with_hashmap" = no ; then
1192 AC_MSG_CHECKING(if you want to experiment without scrolling-hints code)
1193 AC_ARG_ENABLE(scroll-hints,
1194         [  --disable-scroll-hints  compile without scroll-hints code],
1195         [with_scroll_hints=$enableval],
1196         [with_scroll_hints=yes])
1197 AC_MSG_RESULT($with_scroll_hints)
1198 test "$with_scroll_hints" = yes && AC_DEFINE(USE_SCROLL_HINTS)
1199 fi
1200
1201 AC_MSG_CHECKING(if you want experimental wgetch-events code)
1202 AC_ARG_ENABLE(wgetch-events,
1203         [  --enable-wgetch-events  compile with experimental wgetch-events code],
1204         [with_wgetch_events=$enableval],
1205         [with_wgetch_events=no])
1206 AC_MSG_RESULT($with_wgetch_events)
1207 test "$with_wgetch_events" = yes && AC_DEFINE(NCURSES_WGETCH_EVENTS)
1208
1209 ###############################################################################
1210 CF_HELP_MESSAGE(Testing/development Options:)
1211
1212 ###     use option --disable-echo to suppress full display compiling commands
1213 AC_MSG_CHECKING(if you want to display full commands during build)
1214 AC_ARG_ENABLE(echo,
1215         [  --enable-echo           build: display "compiling" commands (default)],
1216         [with_echo=$enableval],
1217         [with_echo=yes])
1218 if test "$with_echo" = yes; then
1219         ECHO_LINK=
1220 else
1221         ECHO_LINK='@ echo linking $@ ... ;'
1222         test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
1223         test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
1224 fi
1225 AC_MSG_RESULT($with_echo)
1226 AC_SUBST(ECHO_LINK)
1227
1228 ###     use option --enable-warnings to turn on all gcc warnings
1229 AC_MSG_CHECKING(if you want to see compiler warnings)
1230 AC_ARG_ENABLE(warnings,
1231         [  --enable-warnings       build: turn on GCC compiler warnings],
1232         [with_warnings=$enableval])
1233 AC_MSG_RESULT($with_warnings)
1234
1235 if test "x$with_warnings" = "xyes"; then
1236         CF_ADD_ADAFLAGS(-gnatg)
1237         CF_GCC_WARNINGS(Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum)
1238         if test "$cf_with_cxx" = yes ; then
1239                 CF_GXX_WARNINGS(Wno-unused)
1240         fi
1241 fi
1242 CF_GCC_ATTRIBUTES
1243
1244 ###     use option --enable-assertions to turn on generation of assertion code
1245 AC_MSG_CHECKING(if you want to enable runtime assertions)
1246 AC_ARG_ENABLE(assertions,
1247         [  --enable-assertions     test: turn on generation of assertion code],
1248         [with_assertions=$enableval],
1249         [with_assertions=no])
1250 AC_MSG_RESULT($with_assertions)
1251 if test -n "$GCC"
1252 then
1253         if test "$with_assertions" = no
1254         then
1255                 AC_DEFINE(NDEBUG)
1256                 CPPFLAGS="$CPPFLAGS -DNDEBUG"
1257         else
1258                 CF_ADD_ADAFLAGS(-gnata)
1259         fi
1260 fi
1261
1262 ###     use option --disable-leaks to suppress "permanent" leaks, for testing
1263 CF_DISABLE_LEAKS
1264 AC_DEFINE(HAVE_NC_ALLOC_H)
1265
1266 ###     use option --enable-expanded to generate certain macros as functions
1267 AC_ARG_ENABLE(expanded,
1268         [  --enable-expanded       test: generate functions for certain macros],
1269         [test "$enableval" = yes && AC_DEFINE(NCURSES_EXPANDED)])
1270
1271 ###     use option --disable-macros to suppress macros in favor of functions
1272 AC_ARG_ENABLE(macros,
1273         [  --disable-macros        test: use functions rather than macros],
1274         [test "$enableval" = no && AC_DEFINE(NCURSES_NOMACROS)])
1275
1276 # Normally we only add trace() to the debug-library.  Allow this to be
1277 # extended to all models of the ncurses library:
1278 cf_all_traces=no
1279 case "$CFLAGS $CPPFLAGS" in
1280 *-DTRACE*)
1281         cf_all_traces=yes
1282         ;;
1283 esac
1284
1285 AC_MSG_CHECKING(whether to add trace feature to all models)
1286 AC_ARG_WITH(trace,
1287 [  --with-trace            test: add trace() function to all models of ncurses],
1288 [cf_with_trace=$withval],
1289 [cf_with_trace=$cf_all_traces])
1290 AC_MSG_RESULT($cf_with_trace)
1291
1292 if test "$cf_with_trace" = yes ; then
1293         LIB_TRACING=all
1294         ADA_TRACE=TRUE
1295         CF_ADD_CFLAGS(-DTRACE)
1296 else
1297         LIB_TRACING=DEBUG
1298         ADA_TRACE=FALSE
1299 fi
1300
1301 AC_SUBST(ADA_TRACE)
1302
1303 ###     Checks for libraries.
1304 case $cf_cv_system_name in #(vi
1305 *mingw32*) #(vi
1306         ;;
1307 *)
1308 AC_CHECK_FUNC(gettimeofday,
1309         AC_DEFINE(HAVE_GETTIMEOFDAY),[
1310
1311 AC_CHECK_LIB(bsd, gettimeofday,
1312         AC_DEFINE(HAVE_GETTIMEOFDAY)
1313         CF_ADD_LIB(bsd))])dnl CLIX: bzero, select, gettimeofday
1314         ;;
1315 esac
1316
1317 CF_MATH_LIB(MATH_LIB,sin(x))
1318 AC_SUBST(MATH_LIB)
1319
1320 ###     Checks for header files.
1321 AC_STDC_HEADERS
1322 AC_HEADER_DIRENT
1323 AC_HEADER_TIME
1324 CF_REGEX
1325
1326 dnl These are some other potentially nonportable headers.
1327 AC_CHECK_HEADERS( \
1328 fcntl.h \
1329 getopt.h \
1330 limits.h \
1331 locale.h \
1332 poll.h \
1333 sys/bsdtypes.h \
1334 sys/ioctl.h \
1335 sys/param.h \
1336 sys/poll.h \
1337 sys/select.h \
1338 sys/time.h \
1339 sys/times.h \
1340 ttyent.h \
1341 unistd.h \
1342 wctype.h \
1343 )
1344
1345 # check for ISC (this may also define _POSIX_SOURCE)
1346 # Note: even non-Posix ISC needs <sys/bsdtypes.h> to declare fd_set
1347 if test "$ISC" = yes ; then
1348         AC_CHECK_LIB(cposix,main)
1349         AC_CHECK_LIB(inet,bzero,CF_ADD_LIB(inet))dnl also 'select()'
1350 fi
1351
1352 CF_SYS_TIME_SELECT
1353
1354 ###     checks for compiler characteristics
1355 AC_LANG_C
1356 AC_C_CONST
1357 CF_C_INLINE(NCURSES_INLINE,1200)
1358 CF_SIG_ATOMIC_T
1359
1360 if test $NCURSES_CHTYPE = auto ; then
1361         CF_TYPEOF_CHTYPE
1362 else
1363         cf_cv_typeof_chtype=$NCURSES_CHTYPE
1364 fi
1365 test "$cf_cv_typeof_chtype" = unsigned && cf_cv_typeof_chtype=""
1366 AC_SUBST(cf_cv_typeof_chtype)
1367
1368 CF_UNSIGNED_LITERALS
1369 cf_cv_1UL="1"
1370 test ".$cf_cv_unsigned_literals" = .yes && cf_cv_1UL="${cf_cv_1UL}U"
1371 test ".$cf_cv_typeof_chtype"    = .long && cf_cv_1UL="${cf_cv_1UL}L"
1372 AC_SUBST(cf_cv_1UL)
1373
1374 if test $NCURSES_MMASK_T = auto ; then
1375         cf_cv_typeof_mmask_t=long
1376 else
1377         cf_cv_typeof_mmask_t=$NCURSES_MMASK_T
1378 fi
1379 test "$cf_cv_typeof_mmask_t" = unsigned && cf_cv_typeof_mmask_t=""
1380 AC_SUBST(cf_cv_typeof_mmask_t)
1381
1382 ###     Checks for external-data
1383 CF_ERRNO
1384 CF_LINK_DATAONLY
1385
1386 ###     Checks for library functions.
1387 AC_CHECK_FUNCS( \
1388 getcwd \
1389 getegid \
1390 geteuid \
1391 getttynam \
1392 issetugid \
1393 poll \
1394 remove \
1395 select \
1396 setbuf \
1397 setbuffer \
1398 setvbuf \
1399 sigaction \
1400 sigvec \
1401 strdup \
1402 strstr \
1403 tcgetpgrp \
1404 times \
1405 vsnprintf \
1406 )
1407 if test "$with_getcap" = "yes" ; then
1408         CF_CGETENT
1409 fi
1410
1411 CF_ISASCII
1412 CF_STRUCT_SIGACTION
1413 CF_FUNC_NANOSLEEP
1414 CF_FUNC_TERMIOS
1415 CF_FUNC_VSSCANF
1416 CF_MKSTEMP
1417
1418 # setup for prototype of fallback for vsscanf()
1419 CF_SUBST_IF(["$cf_cv_func_vsscanf" = vsscanf], HAVE_VSSCANF, 1, 0)
1420
1421 dnl FIXME (may need this) AC_SYS_RESTARTABLE_SYSCALLS
1422 if test "$cross_compiling" = yes ; then
1423         AC_MSG_WARN(cross compiling: assume setvbuf params not reversed)
1424 else
1425         AC_FUNC_SETVBUF_REVERSED
1426 fi
1427 AC_TYPE_SIGNAL
1428 CF_TYPE_SIGACTION
1429 CF_SIZECHANGE
1430 CF_FUNC_MEMMOVE
1431 CF_FUNC_POLL
1432 CF_VA_COPY
1433 AC_FUNC_VFORK
1434
1435 # special check for test/ditto.c
1436 CF_FUNC_OPENPTY
1437 if test "$cf_cv_func_openpty" != no ; then
1438     AC_DEFINE_UNQUOTED(USE_OPENPTY_HEADER,<$cf_cv_func_openpty>)
1439     AC_DEFINE(USE_XTERM_PTY)
1440     if test "$cf_cv_lib_util" = yes ; then
1441         CF_ADD_LIB(util,TEST_LIBS)
1442     fi
1443 fi
1444 AC_SUBST(TEST_LIBS)
1445 AC_SUBST(TEST_LIBS2)
1446
1447 if test "$with_hashed_db" != no ; then
1448         AC_DEFINE(USE_HASHED_DB)
1449         CF_HASHED_DB($with_hashed_db)
1450 fi
1451
1452 dnl We'll do our own -g libraries, unless the user's overridden via $CFLAGS
1453 if test -z "$cf_user_CFLAGS" && test "$with_no_leaks" = no ; then
1454         CF_STRIP_G_OPT(CFLAGS)
1455         CF_STRIP_G_OPT(CXXFLAGS)
1456 fi
1457
1458 # Just in case, check if the C compiler has a bool type.
1459 CF_BOOL_DECL(cf_cv_cc_bool_type)
1460
1461 # Check for C++ compiler characteristics (and ensure that it's there!)
1462 if test -n "$CXX" ; then
1463         AC_LANG_CPLUSPLUS
1464         CF_STDCPP_LIBRARY
1465         CF_PROG_CC_C_O(CXX)
1466
1467         case $GXX_VERSION in
1468         1*|2.[0-6]*)
1469                 cf_cxx_library=yes
1470                 ;;
1471         *-2.7*|2.7*)
1472                 CF_GPP_LIBRARY
1473                 ;;
1474         *)
1475                 cf_cxx_library=no
1476                 ;;
1477         esac
1478
1479         AC_CHECK_HEADERS(iostream typeinfo)
1480
1481     if test x"$ac_cv_header_iostream" = xyes ; then
1482         AC_MSG_CHECKING(if iostream uses std-namespace)
1483         AC_TRY_COMPILE([
1484 #include <iostream>
1485 using std::endl;
1486 using std::cerr;],[
1487 cerr << "testing" << endl;
1488 ],[cf_iostream_namespace=yes],[cf_iostream_namespace=no])
1489         AC_MSG_RESULT($cf_iostream_namespace)
1490         if test "$cf_iostream_namespace" = yes ; then
1491             AC_DEFINE(IOSTREAM_NAMESPACE)
1492         fi
1493     fi
1494
1495         CF_BOOL_DECL
1496         CF_BOOL_SIZE
1497         CF_ETIP_DEFINES
1498         CF_CPP_PARAM_INIT
1499         CF_CPP_STATIC_CAST
1500
1501         CXX_AR='$(AR)'
1502         CXX_ARFLAGS='$(ARFLAGS)'
1503         case $cf_cv_system_name in #(vi
1504         irix*) #(vi
1505             if test "$GXX" != yes ; then
1506                 CXX_AR='$(CXX)'
1507                 CXX_ARFLAGS='-ar -o'
1508             fi
1509             ;;
1510         sco3.2v5*) #(vi
1511             CXXLDFLAGS="-u main"
1512             ;;
1513         solaris2*)
1514             if test "$GXX" != yes ; then
1515                 CXX_AR='$(CXX)'
1516                 CXX_ARFLAGS='-xar -o'
1517             fi
1518             ;;
1519         esac
1520         AC_SUBST(CXXLDFLAGS)
1521         AC_SUBST(CXX_AR)
1522         AC_SUBST(CXX_ARFLAGS)
1523 else
1524         cf_cxx_library=no
1525         cf_cv_builtin_bool=1
1526
1527         # Just because we are not configuring against C++ right now does not
1528         # mean that a user will not want to use C++.  Some distributors disable
1529         # the C++ portion of this configuration as a shortcut (or just to avoid
1530         # compiling the demo in the c++ directory).  So we need a reasonable
1531         # default for the 'bool' type.
1532         #
1533         # Caveat: since the storage of the bool type is not standardized, it
1534         # may change.
1535
1536         if test "$NCURSES_BOOL" != auto ; then
1537                 cf_cv_type_of_bool=$NCURSES_BOOL
1538                 cf_cv_header_stdbool_h=0
1539         else
1540                 if test "$cf_cv_header_stdbool_h" = 1 ; then
1541                         CF_BOOL_SIZE
1542                 else
1543                         AC_MSG_CHECKING(for fallback type of bool)
1544                         case "$host_cpu" in #(vi
1545                         i?86)   cf_cv_type_of_bool=char ;; #(vi
1546                         *)      cf_cv_type_of_bool=int  ;;
1547                         esac
1548                         AC_MSG_RESULT($cf_cv_type_of_bool)
1549                 fi
1550         fi
1551 fi
1552 AC_SUBST(CXXLIBS)
1553
1554 # If the C compiler did not declare bool, and we did not determine that the C++
1555 # compiler does not declare bool, turn on an ifdef in curses.h that makes the
1556 # ncurses library use the same type as C++ bool.  Note that this allows one to
1557 # specify the type of bool in a configure-script option and postpone
1558 # integration with the C++ compiler provided that the types are compatible.
1559 USE_CXX_BOOL=1
1560 if test $cf_cv_cc_bool_type = 1
1561 then
1562         # oops: C has a bool.  Unlikely, but C++ could differ.
1563         USE_CXX_BOOL=0
1564 elif test $cf_cv_builtin_bool = 0
1565 then
1566         # C++ has no bool
1567         USE_CXX_BOOL=0
1568 else
1569         # this is the normal case
1570         USE_CXX_BOOL='defined(__cplusplus)'
1571 fi
1572 AC_SUBST(USE_CXX_BOOL)
1573
1574 CF_HELP_MESSAGE(Ada95 Binding Options:)
1575
1576 dnl If the Ada95 source-tree is present, add that to the build unless it will
1577 dnl not work, or was not requested.
1578 if test -f "${srcdir}/Ada95/Makefile.in" ; then
1579
1580 dnl libtool does not know anything about GNAT, though a change made in 1998
1581 dnl provided for it "someday".  Disable the ada subtree if we are using
1582 dnl libtool -TD 20070714
1583         if test "$cf_with_ada" != "no" ; then
1584                 if test "$with_libtool" != "no"; then
1585                         AC_MSG_WARN(libtool does not support Ada - disabling feature)
1586                         cf_with_ada=no
1587                 fi
1588         fi
1589
1590 dnl Check for availability of GNU Ada Translator (GNAT).
1591 dnl At the moment we support no other Ada95 compiler.
1592         if test "$cf_with_ada" != "no" ; then
1593                 CF_PROG_GNAT
1594                 if test "$cf_cv_prog_gnat_correct" = yes; then
1595                         CF_ADD_ADAFLAGS(-O3 -gnatpn)
1596
1597                         CF_GNAT_PRAGMA_UNREF
1598
1599                         CF_WITH_ADA_COMPILER
1600
1601                         cf_ada_package=terminal_interface
1602                         AC_SUBST(cf_ada_package)
1603
1604                         CF_WITH_ADA_INCLUDE
1605                         CF_WITH_ADA_OBJECTS
1606                         CF_WITH_ADA_SHAREDLIB
1607                 fi
1608         fi
1609 else
1610         cf_with_ada=no
1611 fi
1612
1613 ### Construct the ncurses library-subsets, if any, from this set of keywords:
1614 ###     none, base, ext_funcs, ext_tinfo, ticlib, termlib, widechar
1615 ###
1616 ### ticlib modules may be a separate library, otherwise contained in termlib.
1617 ### termlib modules may be a separate library, otherwise contained in ncurses.
1618 ###
1619 ### The of "+" or " " between the tokens controls the way the script
1620 ### chooses to split module lists into libraries.
1621 ###
1622 ### (see CF_LIB_RULES).
1623 AC_MSG_CHECKING(for library subsets)
1624 LIB_SUBSETS=
1625
1626 if test "$cf_with_progs" = yes || test "$with_ticlib" != no || test "$with_termcap" != no; then
1627         LIB_SUBSETS="${LIB_SUBSETS}ticlib"
1628         if test "$with_ticlib" != no ; then
1629                 LIB_SUBSETS="${LIB_SUBSETS} "
1630         else
1631                 LIB_SUBSETS="${LIB_SUBSETS}+"
1632         fi
1633 fi
1634
1635 LIB_SUBSETS="${LIB_SUBSETS}termlib"
1636 test "$with_ext_funcs" = yes && LIB_SUBSETS="${LIB_SUBSETS}+ext_tinfo"
1637
1638 if test "$with_termlib" != no ; then
1639         LIB_SUBSETS="${LIB_SUBSETS} "
1640 else
1641         LIB_SUBSETS="${LIB_SUBSETS}+"
1642 fi
1643
1644 LIB_SUBSETS="${LIB_SUBSETS}base"
1645
1646 # Most term-driver calls are to tinfo, but some like init_pair are to the
1647 # base library (so it resides in base).
1648 if test "$with_term_driver" != no ; then
1649         LIB_SUBSETS="${LIB_SUBSETS}+port_drivers"
1650         case $cf_cv_system_name in #(vi
1651         *mingw32*) #(vi
1652                 LIB_SUBSETS="${LIB_SUBSETS}+port_tinfo+port_win32con"
1653                 ;;
1654         *) #(vi
1655                 LIB_SUBSETS="${LIB_SUBSETS}+port_tinfo"
1656                 ;;
1657         esac
1658 fi
1659
1660 test "$with_widec"     = yes && LIB_SUBSETS="${LIB_SUBSETS}+widechar"
1661 test "$with_ext_funcs" = yes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs"
1662
1663 AC_MSG_RESULT($LIB_SUBSETS)
1664
1665 ### Construct the list of include-directories to be generated
1666 CF_INCLUDE_DIRS
1667 CF_ADA_INCLUDE_DIRS
1668
1669 ### Build up pieces for makefile rules
1670 AC_MSG_CHECKING(default library suffix)
1671 CF_LIB_TYPE($DFT_LWR_MODEL,DFT_ARG_SUFFIX)dnl
1672 AC_SUBST(DFT_ARG_SUFFIX)dnl the string to append to "-lncurses" ("")
1673 AC_MSG_RESULT($DFT_ARG_SUFFIX)
1674
1675 AC_MSG_CHECKING(default library-dependency suffix)
1676 CF_LIB_SUFFIX($DFT_LWR_MODEL,DFT_LIB_SUFFIX,DFT_DEP_SUFFIX)dnl
1677 AC_SUBST(DFT_DEP_SUFFIX)dnl the corresponding library-suffix (".a")
1678 AC_MSG_RESULT($DFT_DEP_SUFFIX)
1679
1680 AC_MSG_CHECKING(default object directory)
1681 CF_OBJ_SUBDIR($DFT_LWR_MODEL,DFT_OBJ_SUBDIR)dnl
1682 AC_SUBST(DFT_OBJ_SUBDIR)dnl the default object-directory ("obj")
1683 AC_MSG_RESULT($DFT_OBJ_SUBDIR)
1684
1685 # libtool thinks it can make c++ shared libraries (perhaps only g++)
1686 if test "$cf_with_cxx" = yes ; then
1687 AC_MSG_CHECKING(c++ library-dependency suffix)
1688 if test "$with_libtool" != "no"; then
1689         CXX_LIB_SUFFIX=$DFT_DEP_SUFFIX
1690 else
1691         CF_LIB_SUFFIX(normal,CXX_LIB_SUFFIX,CXX_DEP_SUFFIX)dnl we normally make a static library
1692 fi
1693 AC_MSG_RESULT($CXX_LIB_SUFFIX)
1694 AC_SUBST(CXX_LIB_SUFFIX)
1695 fi
1696
1697 # do not want -ldl in build except as needed for -lncurses dependency
1698 if test "$with_dlsym" = yes ; then
1699 if test $DFT_LWR_MODEL = shared || \
1700    test $DFT_LWR_MODEL = libtool ; then
1701         CF_REMOVE_LIB(LIBS,$LIBS,dl)
1702 fi
1703 fi
1704 ### Set up low-level terminfo dependencies for makefiles.
1705
1706 # TICS_LIST and TINFO_LIST are needed to build libtic.so and libterm.so, but
1707 # do not need libdl
1708 TICS_LIST=
1709 if test "$with_dlsym" = yes ; then
1710         CF_REMOVE_LIB(TINFO_LIST,$SHLIB_LIST,dl)
1711 fi
1712
1713 if test "$with_ticlib" != no ; then
1714
1715         if test "$with_ticlib" != yes ; then
1716                 TICS_NAME=$with_ticlib
1717                 TICS_ARG_SUFFIX="${with_ticlib}`echo ${DFT_ARG_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1718                 TICS_DEP_SUFFIX="${with_ticlib}`echo ${DFT_DEP_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1719                 TICS_LIB_SUFFIX="${with_ticlib}"
1720         else
1721                 TICS_ARG_SUFFIX="${TICS_NAME}${DFT_ARG_SUFFIX}"
1722                 TICS_DEP_SUFFIX="${TICS_NAME}${DFT_DEP_SUFFIX}"
1723                 TICS_LIB_SUFFIX="${TICS_NAME}${LIB_SUFFIX}"
1724         fi
1725         TICS_ARGS="-L${LIB_DIR} -l${TICS_LIB_SUFFIX}"
1726 else
1727         TICS_ARGS="-L${LIB_DIR} -l${LIB_NAME}${DFT_ARG_SUFFIX}"
1728 fi
1729 AC_SUBST(TICS_ARG_SUFFIX)
1730 AC_SUBST(TICS_DEP_SUFFIX)
1731 AC_SUBST(TICS_LIB_SUFFIX)
1732 AC_SUBST(TICS_ARGS)
1733
1734 if test "$with_termlib" != no ; then
1735
1736         if test "$with_termlib" != yes ; then
1737                 TINFO_NAME=$with_termlib
1738                 TINFO_SUFFIX="`echo ${DFT_LIB_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1739                 TINFO_ARG_SUFFIX="${with_termlib}`echo ${DFT_ARG_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1740                 TINFO_DEP_SUFFIX="${with_termlib}`echo ${DFT_DEP_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1741                 TINFO_LIB_SUFFIX="${with_termlib}"
1742         else
1743                 TINFO_SUFFIX=${DFT_LIB_SUFFIX}
1744                 TINFO_ARG_SUFFIX="${TINFO_NAME}${DFT_ARG_SUFFIX}"
1745                 TINFO_DEP_SUFFIX="${TINFO_NAME}${DFT_DEP_SUFFIX}"
1746                 TINFO_LIB_SUFFIX="${TINFO_NAME}${LIB_SUFFIX}"
1747         fi
1748
1749         TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${TINFO_DEP_SUFFIX}"
1750         TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${TINFO_DEP_SUFFIX}"
1751         if test "$DFT_LWR_MODEL" = "libtool"; then
1752                 TEST_ARGS="${TEST_DEPS}"
1753                 TEST_ARG2="${TEST_DEP2}"
1754                 TINFO_ARGS="-L${LIB_DIR} $TEST_ARGS"
1755                 TICS_LIST="$SHLIB_LIST $TEST_ARGS"
1756                 SHLIB_LIST="${SHLIB_LIST} $TEST_ARGS"
1757         else
1758                 TEST_ARGS="-l${TINFO_ARG_SUFFIX}"
1759                 TEST_ARG2="-l${TINFO_ARG_SUFFIX}"
1760                 TICS_LIST="$SHLIB_LIST -l${TINFO_LIB_SUFFIX}"
1761                 TINFO_ARGS="-L${LIB_DIR} $TEST_ARGS"
1762                 SHLIB_LIST="$SHLIB_LIST -l${TINFO_LIB_SUFFIX}"
1763         fi
1764 else
1765         # the next lines are needed for linking libtic over libncurses
1766         TINFO_NAME=${LIB_NAME}
1767         TINFO_SUFFIX=${DFT_LIB_SUFFIX}
1768         TINFO_ARG_SUFFIX=${LIB_NAME}${DFT_ARG_SUFFIX}
1769         if test "$with_tic_depends" = yes ; then
1770                 TICS_LIST="$SHLIB_LIST -l${LIB_NAME}${DFT_ARG_SUFFIX}"
1771         else
1772                 TICS_LIST="$SHLIB_LIST"
1773         fi
1774
1775         TINFO_ARGS="-L${LIB_DIR} -l${LIB_NAME}${DFT_ARG_SUFFIX}"
1776 fi
1777
1778 if test "$DFT_LWR_MODEL" = shared ; then
1779         case $cf_cv_system_name in #(vi
1780         cygwin*)
1781                 # "lib" files have ".dll.a" suffix, "cyg" files have ".dll"
1782                 TINFO_SUFFIX=.dll
1783                 ;;
1784         esac
1785 fi
1786
1787 AC_SUBST(TINFO_ARG_SUFFIX)
1788 AC_SUBST(TINFO_DEP_SUFFIX)
1789 AC_SUBST(TINFO_LIB_SUFFIX)
1790 AC_SUBST(TINFO_ARGS)
1791
1792 if test "$with_dlsym" = yes ; then
1793         CF_REMOVE_LIB(TICS_LIST,$TICS_LIST,dl)
1794 fi
1795
1796 if test "$DFT_LWR_MODEL" = "libtool"; then
1797     OBJEXT=lo
1798 fi
1799
1800 # needed for Ada95
1801 TINFO_ARGS2=`echo "$TINFO_ARGS" | sed -e 's,-L\.\./,-L../../,'`
1802 AC_SUBST(TINFO_ARGS2)
1803
1804 case $DFT_LWR_MODEL in
1805 normal|debug|profile)
1806         CF_LDFLAGS_STATIC
1807         ;;
1808 esac
1809
1810 AC_MSG_CHECKING(where we will install curses.h)
1811 test "$with_overwrite" = no && \
1812 test "x$includedir" = 'x${prefix}/include' && \
1813         includedir='${prefix}/include/ncurses'${LIB_SUFFIX}
1814 AC_MSG_RESULT($includedir)
1815
1816 ### Resolve a conflict between normal and wide-curses by forcing applications
1817 ### that will need libutf8 to add it to their configure script.
1818 if test "$with_overwrite" != no ; then
1819 if test "$NCURSES_LIBUTF8" = 1 ; then
1820         NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)'
1821         AC_MSG_WARN(Wide-character applications must define HAVE_LIBUTF8_H to include curses.h)
1822 fi
1823 fi
1824 WITH_OVERWRITE=$with_overwrite
1825
1826 AC_SUBST(WITH_OVERWRITE)
1827 AC_SUBST(TICS_LIST)
1828 AC_SUBST(TINFO_LIST)
1829 AC_SUBST(SHLIB_LIST)
1830
1831 # used to separate tack out of the tree
1832 NCURSES_TREE=
1833 AC_SUBST(NCURSES_TREE)
1834
1835 ### predefined stuff for the test programs
1836 AC_DEFINE(HAVE_SLK_COLOR)
1837
1838 ### Construct the list of subdirectories for which we'll customize makefiles
1839 ### with the appropriate compile-rules.
1840
1841 CF_SRC_MODULES($modules_to_build)
1842
1843 if test "$cf_with_ada" != "no" && test "$cf_cv_prog_gnat_correct" != "no"; then
1844    SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${DFT_ARG_SUFFIX}-config:Ada95/gen/adacurses-config.in"
1845    SUB_MAKEFILES="$SUB_MAKEFILES man/adacurses${DFT_ARG_SUFFIX}-config.1:man/MKada_config.in"
1846 fi
1847
1848 CF_DIRS_TO_MAKE
1849
1850 # symbols that differ when compiling Ada95 by itself.
1851 NCURSES_SHLIB2='sh $(top_srcdir)/misc/shlib'
1852 AC_SUBST(NCURSES_SHLIB2)
1853
1854 # values to use as strings
1855 AC_DEFINE_UNQUOTED(NCURSES_PATHSEP,'$PATH_SEPARATOR')
1856
1857 AC_DEFINE_UNQUOTED(NCURSES_VERSION_STRING, "${NCURSES_MAJOR}.${NCURSES_MINOR}.${NCURSES_PATCH}")
1858
1859 ### Now that we're done running tests, add the compiler-warnings, if any
1860 CF_ADD_CFLAGS($EXTRA_CFLAGS)
1861
1862 ### Define substitutions for header files to avoid name-pollution
1863 CF_SUBST_IF(["$cf_cv_have_tcgetattr" = yes], HAVE_TCGETATTR, 1, 0)
1864 CF_SUBST_IF(["$ac_cv_header_termio_h" = yes], HAVE_TERMIO_H, 1, 0)
1865 CF_SUBST_IF(["$ac_cv_header_termios_h" = yes], HAVE_TERMIOS_H, 1, 0)
1866
1867 ################################################################################
1868 test "$use_database" = yes && \
1869 SUB_MAKEFILES="$SUB_MAKEFILES misc/run_tic.sh:misc/run_tic.in"
1870
1871 SUB_MAKEFILES="$SUB_MAKEFILES misc/ncurses-config:misc/ncurses-config.in"
1872 SUB_MAKEFILES="$SUB_MAKEFILES man/ncurses${DFT_ARG_SUFFIX}${cf_cv_abi_version}-config.1:man/MKncu_config.in"
1873
1874 if test x"$enable_pc_files" = xyes ; then \
1875 SUB_MAKEFILES="$SUB_MAKEFILES misc/gen-pkgconfig:misc/gen-pkgconfig.in"
1876 MAKE_PC_FILES=
1877 else
1878 MAKE_PC_FILES="#"
1879 fi
1880 AC_SUBST(MAKE_PC_FILES)
1881 AC_SUBST(cross_compiling)
1882
1883 AC_PATH_PROG(TIC_PATH,tic,unknown,$PATH:/usr/local/ncurses/bin)
1884 if test -n "$FALLBACK_LIST"
1885 then
1886         if test "$TIC_PATH" = unknown
1887         then
1888                 AC_MSG_WARN(no tic program found for fallbacks)
1889         fi
1890 fi
1891 AC_SUBST(TIC_PATH)
1892
1893 if test "x$cf_with_tests" != xno ; then
1894         MAKE_TESTS=
1895 else
1896         MAKE_TESTS="#"
1897 fi
1898 AC_SUBST(MAKE_TESTS)
1899
1900 SUB_SCRIPTS=
1901 case $cf_cv_system_name in #(vi
1902 *mingw32*) #(vi
1903         SUB_SCRIPTS="mk-dlls.sh"
1904         ;;
1905 esac
1906
1907 AC_OUTPUT( \
1908         include/MKterm.h.awk \
1909         include/curses.head:include/curses.h.in \
1910         include/ncurses_dll.h \
1911         include/termcap.h \
1912         include/unctrl.h \
1913         $SUB_SCRIPTS \
1914         $SUB_MAKEFILES \
1915         Makefile,[
1916 if test "x$cf_with_tests" != xno ; then
1917         CF_PRG_RULES([$srcdir/test/mk-test.awk ECHO_LINK="$ECHO_LINK"], test)
1918 fi
1919 CF_LIB_RULES($SRC_SUBDIRS)
1920
1921 if test "x$cf_with_ada" != xno ; then
1922 if test -z "$USE_OLD_MAKERULES" ; then
1923         $AWK -f $srcdir/Ada95/mk-1st.awk <$srcdir/Ada95/src/modules >>Ada95/src/Makefile
1924 fi
1925 fi
1926 ],[
1927 ### Special initialization commands, used to pass information from the
1928 ### configuration-run into config.status
1929
1930 AWK="$AWK"
1931 DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX"
1932 DFT_LWR_MODEL="$DFT_LWR_MODEL"
1933 ECHO_LINK="$ECHO_LINK"
1934 LDCONFIG="$LDCONFIG"
1935 LIBTOOL_VERSION="$LIBTOOL_VERSION"
1936 LIB_NAME="$LIB_NAME"
1937 LIB_SUBSETS="$LIB_SUBSETS"
1938 LIB_SUFFIX="$LIB_SUFFIX"
1939 LIB_TRACING="$LIB_TRACING"
1940 LN_S="$LN_S"
1941 MAKE_TERMINFO="$MAKE_TERMINFO"
1942 NCURSES_MAJOR="$NCURSES_MAJOR"
1943 NCURSES_MINOR="$NCURSES_MINOR"
1944 NCURSES_OSPEED="$NCURSES_OSPEED"
1945 NCURSES_PATCH="$NCURSES_PATCH"
1946 SRC_SUBDIRS="$SRC_SUBDIRS"
1947 TERMINFO="$TERMINFO"
1948 TICS_ARG_SUFFIX="$TICS_ARG_SUFFIX"
1949 TICS_LIB_SUFFIX="$TICS_LIB_SUFFIX"
1950 TICS_NAME="$TICS_NAME"
1951 TIC_PATH="$TIC_PATH"
1952 TINFO_ARG_SUFFIX="$TINFO_ARG_SUFFIX"
1953 TINFO_LIB_SUFFIX="$TINFO_LIB_SUFFIX"
1954 TINFO_NAME="$TINFO_NAME"
1955 TINFO_SUFFIX="$TINFO_SUFFIX"
1956 USE_OLD_MAKERULES="$USE_OLD_MAKERULES"
1957 WITH_CURSES_H="$with_curses_h"
1958 WITH_ECHO="$with_echo"
1959 WITH_OVERWRITE="$with_overwrite"
1960 cf_LIST_MODELS="$cf_list_models"
1961 cf_cv_abi_version="$cf_cv_abi_version"
1962 cf_cv_do_relink="$cf_cv_do_relink"
1963 cf_cv_do_symlinks="$cf_cv_do_symlinks"
1964 cf_cv_enable_lp64="$cf_cv_enable_lp64"
1965 cf_cv_enable_opaque="$cf_cv_enable_opaque"
1966 cf_cv_prog_CC_c_o=$cf_cv_prog_CC_c_o
1967 cf_cv_prog_CXX_c_o=$cf_cv_prog_CXX_c_o
1968 cf_cv_rel_version="$cf_cv_rel_version"
1969 cf_cv_rm_so_locs="$cf_cv_rm_so_locs"
1970 cf_cv_shared_soname='$cf_cv_shared_soname'
1971 cf_cv_shlib_version="$cf_cv_shlib_version"
1972 cf_cv_shlib_version_infix="$cf_cv_shlib_version_infix"
1973 cf_cv_system_name="$cf_cv_system_name"
1974 cf_with_ada="$cf_with_ada"
1975 cf_with_cxx_binding="$cf_with_cxx_binding"
1976 cf_with_manpages="$cf_with_manpages"
1977 cf_with_tests="$cf_with_tests"
1978 host="$host"
1979 target="$target"
1980
1981 ],cat)dnl
1982 ${MAKE:-make} preinstall