blob: b0970642e8c22f57b5f797c502d1643178b7ceff [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301dnl***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002dnl Copyright (c) 1998-2014,2015 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303dnl *
4dnl Permission is hereby granted, free of charge, to any person obtaining a *
5dnl copy of this software and associated documentation files (the *
6dnl "Software"), to deal in the Software without restriction, including *
7dnl without limitation the rights to use, copy, modify, merge, publish, *
8dnl distribute, distribute with modifications, sublicense, and/or sell *
9dnl copies of the Software, and to permit persons to whom the Software is *
10dnl furnished to do so, subject to the following conditions: *
11dnl *
12dnl The above copyright notice and this permission notice shall be included *
13dnl in all copies or substantial portions of the Software. *
14dnl *
15dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18dnl IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19dnl DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20dnl OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21dnl THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22dnl *
23dnl Except as contained in this notice, the name(s) of the above copyright *
24dnl holders shall not be used in advertising or otherwise to promote the *
25dnl sale, use or other dealings in this Software without prior written *
26dnl authorization. *
27dnl***************************************************************************
28dnl
29dnl Author: Thomas E. Dickey 1995-on
30dnl
Steve Kondikae271bc2015-11-15 02:50:53 +010031dnl $Id: configure.in,v 1.619 2015/08/05 23:32:27 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032dnl Process this file with autoconf to produce a configure script.
33dnl
34dnl See http://invisible-island.net/autoconf/ for additional information.
35dnl
36dnl ---------------------------------------------------------------------------
Steve Kondikae271bc2015-11-15 02:50:53 +010037AC_PREREQ(2.52.20030208)
38AC_REVISION($Revision: 1.619 $)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039AC_INIT(ncurses/base/lib_initscr.c)
40AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
41
42CF_TOP_BUILDDIR
43CF_SUBST_NCURSES_VERSION
Steve Kondikae271bc2015-11-15 02:50:53 +010044CF_VERSION_INFO(NCURSES,ncurses)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053045
46CF_WITH_REL_VERSION(NCURSES)
Steve Kondikae271bc2015-11-15 02:50:53 +010047CF_NCURSES_WITH_ABI_VERSION
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053048
Steve Kondikae271bc2015-11-15 02:50:53 +010049CF_WITH_SYSTYPE
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053050
51### Save the given $CFLAGS to allow user-override.
52cf_user_CFLAGS="$CFLAGS"
53
54### Default install-location
55CF_CFG_DEFAULTS
Steve Kondikae271bc2015-11-15 02:50:53 +010056### Defaults for ncurses ABI
57CF_ABI_DEFAULTS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053058
59### Checks for programs.
Steve Kondikae271bc2015-11-15 02:50:53 +010060AC_ARG_WITH(ada,
61 [ --without-ada suppress check for Ada95, don't build demo],
62 [cf_with_ada=$withval],
63 [cf_with_ada=yes])
64if test "x$cf_with_ada" = xyes
65then
66 cf_PROG_CC="gnatgcc gcc cc"
67else
68 cf_PROG_CC="gcc cc"
69fi
70
71CF_PROG_CC($cf_PROG_CC)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053072
73AC_PROG_CPP
74AC_PROG_GCC_TRADITIONAL
75CF_PROG_CC_C_O(CC)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053076CF_PROG_LDCONFIG
77
78dnl DEFECT in autoconf 2.12: an attempt to set policy, this breaks the
79dnl configure script by not letting us test if C++
80dnl is present, making this option necessary.
81AC_MSG_CHECKING(if you want to ensure bool is consistent with C++)
82AC_ARG_WITH(cxx,
83 [ --without-cxx do not adjust ncurses bool to match C++],
84 [cf_with_cxx=$withval],
85 [cf_with_cxx=yes])
86AC_MSG_RESULT($cf_with_cxx)
87if test "X$cf_with_cxx" = Xno ; then
88 CXX=""
89 GXX=""
90else
91 # with autoconf 2.13, we can change the error to a warning:
92 pushdef([AC_MSG_ERROR],
93 [AC_MSG_RESULT(no)
94 AC_MSG_WARN([You don't have any C++ compiler, too bad])
95 cf_with_cxx=no; CXX=""; GXX="";])dnl
96 AC_PROG_CXX
97 popdef([AC_MSG_ERROR])dnl
Steve Kondikae271bc2015-11-15 02:50:53 +010098
99 AC_LANG_PUSH(C++)
100 if test "x$cf_with_cxx" != xno
101 then
102 # Several of the C++ configurations do not work, particularly when
103 # cross-compiling (20140913 -TD)
104 AC_MSG_CHECKING(if $CXX works)
105
106 save_CPPFLAGS="$CPPFLAGS"
107 eval cf_includedir=${includedir}
108 CPPFLAGS="$CPPFLAGS -I${cf_includedir}"
109 AC_TRY_COMPILE([
110#include <stdlib.h>
111#include <stdio.h>
112],
113 [
114 printf("Hello world!\n")
115 ],
116 [cf_cxx_works=yes],
117 [cf_cxx_works=no])
118 CPPFLAGS="$save_CPPFLAGS"
119
120 AC_MSG_RESULT($cf_cxx_works)
121 if test "x$cf_cxx_works" = xno
122 then
123 AC_MSG_WARN([Ignore $CXX, since it cannot compile hello-world.])
124 cf_with_cxx=no; CXX=""; GXX="";
125 fi
126 fi
127 AC_LANG_POP
128
129 # autoconf 2.5x removed the error (hardcoding it to g++, or just blank)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530130 if test "$CXX" = "g++" ; then
131 AC_PATH_PROG(CXX,g++)
132 fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100133 case "x$CXX" in
134 (x|xg++)
135 AC_MSG_WARN([You don't have any C++ compiler, too bad])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530136 cf_with_cxx=no; CXX=""; GXX="";
Steve Kondikae271bc2015-11-15 02:50:53 +0100137 ;;
138 esac
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530139fi
140
141CF_GXX_VERSION
142case $GXX_VERSION in
Steve Kondikae271bc2015-11-15 02:50:53 +0100143(1*|2.[[0-6]]*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530144 # GXX=""; CXX=""; ac_cv_prog_gxx=no
145 # cf_cxx_library=no
146 AC_MSG_WARN(templates do not work)
147 ;;
148esac
149
150AC_MSG_CHECKING(if you want to build C++ binding and demo)
151AC_ARG_WITH(cxx-binding,
152 [ --without-cxx-binding do not build C++ binding and demo],
153 [cf_with_cxx_binding=$withval],
154 [cf_with_cxx_binding=$cf_with_cxx])
155AC_MSG_RESULT($cf_with_cxx_binding)
156
157AC_MSG_CHECKING(if you want to build with Ada95)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530158AC_MSG_RESULT($cf_with_ada)
159
Steve Kondikae271bc2015-11-15 02:50:53 +0100160AC_MSG_CHECKING(if you want to install terminal database)
161AC_ARG_ENABLE(db-install,
162 [ --disable-db-install suppress install of terminal database],
163 [cf_with_db_install=$enableval],
164 [cf_with_db_install=yes])
165AC_MSG_RESULT($cf_with_db_install)
166
167AC_MSG_CHECKING(if you want to install manpages)
168AC_ARG_WITH(manpages,
169 [ --without-manpages suppress install of manpages],
170 [cf_with_manpages=$withval],
171 [cf_with_manpages=yes])
172AC_MSG_RESULT($cf_with_manpages)
173
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530174AC_MSG_CHECKING(if you want to build programs such as tic)
175AC_ARG_WITH(progs,
Steve Kondikae271bc2015-11-15 02:50:53 +0100176 [ --without-progs suppress build/install with programs (e.g., tic)],
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530177 [cf_with_progs=$withval],
178 [cf_with_progs=yes])
179AC_MSG_RESULT($cf_with_progs)
180
Steve Kondikae271bc2015-11-15 02:50:53 +0100181AC_MSG_CHECKING(if you want to build test-programs)
182AC_ARG_WITH(tests,
183 [ --without-tests suppress build/install with test-programs],
184 [cf_with_tests=$withval],
185 [cf_with_tests=yes])
186AC_MSG_RESULT($cf_with_tests)
187
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530188AC_MSG_CHECKING(if you wish to install curses.h)
189AC_ARG_WITH(curses-h,
190 [ --without-curses-h install curses.h as ncurses.h only],
191 [with_curses_h=$withval],
192 [with_curses_h=yes])
193AC_MSG_RESULT($with_curses_h)
194
195modules_to_build="ncurses"
196if test "X$cf_with_progs" != Xno ; then
197modules_to_build="$modules_to_build progs tack"
198fi
199modules_to_build="$modules_to_build panel menu form"
200
201AC_ARG_PROGRAM
202
203CF_PROG_AWK
204CF_PROG_EGREP
205CF_PROG_INSTALL
206CF_PROG_LINT
Steve Kondikae271bc2015-11-15 02:50:53 +0100207CF_PROG_LN_S
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530208
209AC_SYS_LONG_FILE_NAMES
210
Steve Kondikae271bc2015-11-15 02:50:53 +0100211# if we find pkg-config, check if we should install the ".pc" files.
212CF_PKG_CONFIG
213CF_WITH_PKG_CONFIG_LIBDIR
214CF_ENABLE_PC_FILES
215if test -z "$MAKE_PC_FILES"
216then
217 AC_MSG_CHECKING(for suffix to add to pc-files)
218AC_ARG_WITH(pc-suffix,
219 [ --with-pc-suffix suffixes pc-files],
220 [case "x$withval" in
221 (xyes|xno)
222 PC_MODULE_SUFFIX=
223 ;;
224 (*) PC_MODULE_SUFFIX="$withval"
225 ;;
226 esac])
227 test -z "$PC_MODULE_SUFFIX" && PC_MODULE_SUFFIX=none
228 AC_MSG_RESULT($PC_MODULE_SUFFIX)
229 test "$PC_MODULE_SUFFIX" = none && PC_MODULE_SUFFIX=
230 AC_SUBST(PC_MODULE_SUFFIX)
231fi
232
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530233AC_MSG_CHECKING(if we should assume mixed-case filenames)
234AC_ARG_ENABLE(mixed-case,
235 [ --enable-mixed-case tic should assume mixed-case filenames],
236 [enable_mixedcase=$enableval],
237 [enable_mixedcase=auto])
238AC_MSG_RESULT($enable_mixedcase)
239if test "$enable_mixedcase" = "auto" ; then
Steve Kondikae271bc2015-11-15 02:50:53 +0100240 CF_MIXEDCASE_FILENAMES
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530241else
Steve Kondikae271bc2015-11-15 02:50:53 +0100242 cf_cv_mixedcase=$enable_mixedcase
243 if test "x$enable_mixedcase" = "xyes" ; then
244 AC_DEFINE(MIXEDCASE_FILENAMES,1,[Define to 1 if tic should assume mixed-case filenames])
245 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530246fi
247
248# do this after mixed-case option (tags/TAGS is not as important as tic).
249AC_PROG_MAKE_SET
250CF_MAKE_TAGS
251CF_MAKEFLAGS
252
253dnl These are standard among *NIX systems, but not when cross-compiling
254AC_CHECK_TOOL(RANLIB, ranlib, ':')
255AC_CHECK_TOOL(LD, ld, ld)
256AC_CHECK_TOOL(AR, ar, ar)
Steve Kondikae271bc2015-11-15 02:50:53 +0100257AC_CHECK_TOOL(NM, nm, nm)
258CF_AR_FLAGS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530259
260dnl Special option for use by system-builders: the install-prefix is used to
261dnl adjust the location into which the actual install is done, so that an
262dnl archive can be built without modifying the host system's configuration.
263AC_MSG_CHECKING(if you have specified an install-prefix)
264AC_ARG_WITH(install-prefix,
265 [ --with-install-prefix prefixes actual install-location ($DESTDIR)],
Steve Kondikae271bc2015-11-15 02:50:53 +0100266 [case "x$withval" in
267 (xyes|xno)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530268 ;;
Steve Kondikae271bc2015-11-15 02:50:53 +0100269 (*) DESTDIR="$withval"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530270 ;;
271 esac])
272AC_MSG_RESULT($DESTDIR)
273AC_SUBST(DESTDIR)
274
275###############################################################################
276CF_HELP_MESSAGE(Build-Tools Needed to Compile Temporary Applications for Cross-compiling:)
277# If we're cross-compiling, allow the user to override the tools and their
278# options. The configure script is oriented toward identifying the host
279# compiler, etc., but we need a build compiler to generate parts of the source.
280CF_BUILD_CC
281
282###############################################################################
283CF_HELP_MESSAGE(Options to Specify the Libraries Built/Used:)
284
285### Options to allow the user to specify the set of libraries which are used.
286### Use "--without-normal --with-shared" to allow the default model to be
287### shared, for example.
288cf_list_models=""
289AC_SUBST(cf_list_models)dnl the complete list of models ("normal debug")
290
291CF_WITH_LIBTOOL
292if test "$with_libtool" != "no" ; then
293
294cf_list_models="$cf_list_models libtool"
295
296else
297
298AC_MSG_CHECKING(if you want to build shared libraries)
299AC_ARG_WITH(shared,
300 [ --with-shared generate shared-libraries],
301 [with_shared=$withval],
302 [with_shared=no])
303AC_MSG_RESULT($with_shared)
Steve Kondikae271bc2015-11-15 02:50:53 +0100304test "x$with_shared" = "xyes" && cf_list_models="$cf_list_models shared"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530305
306AC_MSG_CHECKING(if you want to build static libraries)
307AC_ARG_WITH(normal,
308 [ --with-normal generate normal-libraries (default)],
309 [with_normal=$withval],
310 [with_normal=yes])
311AC_MSG_RESULT($with_normal)
Steve Kondikae271bc2015-11-15 02:50:53 +0100312test "x$with_normal" = "xyes" && cf_list_models="$cf_list_models normal"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530313
314AC_MSG_CHECKING(if you want to build debug libraries)
315AC_ARG_WITH(debug,
316 [ --with-debug generate debug-libraries (default)],
317 [with_debug=$withval],
318 [with_debug=yes])
319AC_MSG_RESULT($with_debug)
Steve Kondikae271bc2015-11-15 02:50:53 +0100320test "x$with_debug" = "xyes" && cf_list_models="$cf_list_models debug"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530321
322AC_MSG_CHECKING(if you want to build profiling libraries)
323AC_ARG_WITH(profile,
324 [ --with-profile generate profile-libraries],
325 [with_profile=$withval],
326 [with_profile=no])
327AC_MSG_RESULT($with_profile)
Steve Kondikae271bc2015-11-15 02:50:53 +0100328test "x$with_profile" = "xyes" && cf_list_models="$cf_list_models profile"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530329
330fi
331
Steve Kondikae271bc2015-11-15 02:50:53 +0100332if test "X$cf_with_cxx_binding" != Xno; then
333if test "x$with_shared" = "xyes"; then
334AC_MSG_CHECKING(if you want to build C++ shared libraries)
335AC_ARG_WITH(cxx-shared,
336 [ --with-cxx-shared generate C++ shared-libraries],
337 [with_shared_cxx=$withval],
338 [with_shared_cxx=no])
339AC_MSG_RESULT($with_shared_cxx)
340fi
341fi
342
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530343###############################################################################
344
345AC_MSG_CHECKING(for specified models)
346test -z "$cf_list_models" && cf_list_models=normal
347dnl If we use libtool to generate libraries, then it must be the only
348dnl specified model.
349test "$with_libtool" != "no" && cf_list_models=libtool
350AC_MSG_RESULT($cf_list_models)
351
352### Use the first model as the default, and save its suffix for use in building
353### up test-applications.
354AC_MSG_CHECKING(for default model)
355DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
356AC_MSG_RESULT($DFT_LWR_MODEL)
357
358CF_UPPER(DFT_UPR_MODEL,$DFT_LWR_MODEL)dnl
359
360AC_SUBST(DFT_LWR_MODEL)dnl the default model ("normal")
361AC_SUBST(DFT_UPR_MODEL)dnl the default model ("NORMAL")
362
363TICS_NAME=tic
364AC_SUBST(TICS_NAME)
365
366TINFO_NAME=tinfo
367AC_SUBST(TINFO_NAME)
368
369LIB_NAME=ncurses
370AC_SUBST(LIB_NAME)
371
372LIB_DIR=../lib
373LIB_2ND=../../lib
374
Steve Kondikae271bc2015-11-15 02:50:53 +0100375CF_WITH_LIB_PREFIX(cf_prefix)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530376
377LIB_SUFFIX=
378AC_SUBST(LIB_SUFFIX)
Steve Kondikae271bc2015-11-15 02:50:53 +0100379CF_PATHSEP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530380
381###############################################################################
382
383AC_MSG_CHECKING(if you want to build a separate terminfo library)
384AC_ARG_WITH(termlib,
385 [ --with-termlib generate separate terminfo library],
386 [with_termlib=$withval],
387 [with_termlib=no])
388AC_MSG_RESULT($with_termlib)
389
390AC_MSG_CHECKING(if you want to build a separate tic library)
391AC_ARG_WITH(ticlib,
392 [ --with-ticlib generate separate tic library],
393 [with_ticlib=$withval],
394 [with_ticlib=no])
395AC_MSG_RESULT($with_ticlib)
396
397### Checks for special libraries, must be done up-front.
398SHLIB_LIST=""
399CF_WITH_GPM
400if test "$with_gpm" != no ; then
401 AC_MSG_CHECKING(if you want to load GPM dynamically)
402 AC_ARG_WITH(dlsym,
403 [ --without-dlsym do not use dlsym() to load GPM dynamically],
404 [with_dlsym=$withval],
405 [with_dlsym=yes])
406 AC_MSG_RESULT($with_dlsym)
Steve Kondikae271bc2015-11-15 02:50:53 +0100407 if test "x$with_dlsym" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530408 CF_FUNC_DLSYM
Steve Kondikae271bc2015-11-15 02:50:53 +0100409 if test "x$with_gpm" != xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530410 CF_VERBOSE(assuming soname for gpm is $with_gpm)
411 cf_cv_gpm_soname="$with_gpm"
412 else
413 CF_LIB_SONAME([#include <gpm.h>],[if (Gpm_Open(0,0)) Gpm_Close();],gpm)
414 fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100415 test "$cf_cv_gpm_soname" != "unknown" && AC_DEFINE_UNQUOTED(LIBGPM_SONAME,"$cf_cv_gpm_soname",[Define as needed to set the gpm share library soname])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530416 SHLIB_LIST="-ldl $SHLIB_LIST"
417 else
418 SHLIB_LIST="-lgpm $SHLIB_LIST"
Steve Kondikae271bc2015-11-15 02:50:53 +0100419 CF_ADD_LIB(gpm,TEST_LIBS)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530420 fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100421 AC_DEFINE(HAVE_LIBGPM,1,[Define to 1 if we have the gpm library])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530422 CF_CHECK_GPM_WGETCH
423fi
424
425CF_WITH_SYSMOUSE
426
427dnl Not all ports of gcc support the -g option
428
429if test X"$CC_G_OPT" = X"" ; then
430 CC_G_OPT='-g'
Steve Kondikae271bc2015-11-15 02:50:53 +0100431 test -n "$GCC" && test "x${ac_cv_prog_cc_g}" != xyes && CC_G_OPT=''
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530432fi
433AC_SUBST(CC_G_OPT)
434
435if test X"$CXX_G_OPT" = X"" ; then
436 CXX_G_OPT='-g'
Steve Kondikae271bc2015-11-15 02:50:53 +0100437 test -n "$GXX" && test "x${ac_cv_prog_cxx_g}" != xyes && CXX_G_OPT=''
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530438fi
439AC_SUBST(CXX_G_OPT)
440
441AC_MSG_CHECKING(for default loader flags)
442case $DFT_LWR_MODEL in
Steve Kondikae271bc2015-11-15 02:50:53 +0100443(libtool) LD_MODEL='' ;;
444(normal) LD_MODEL='' ;;
445(debug) LD_MODEL=$CC_G_OPT ;;
446(profile) LD_MODEL='-pg';;
447(shared) LD_MODEL='' ;;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530448esac
449AC_SUBST(LD_MODEL)dnl the type of link (e.g., -g or -pg)
450AC_MSG_RESULT($LD_MODEL)
451
452case $DFT_LWR_MODEL in
Steve Kondikae271bc2015-11-15 02:50:53 +0100453(shared)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530454CF_ENABLE_RPATH
455AC_MSG_CHECKING(if shared libraries should be relinked during install)
456AC_ARG_ENABLE(relink,
457[ --disable-relink relink shared libraries during install],
458[cf_cv_do_relink=$enableval],
459[cf_cv_do_relink=yes])
460AC_MSG_RESULT($cf_cv_do_relink)
461 ;;
462esac
463
Steve Kondikae271bc2015-11-15 02:50:53 +0100464# we will build libraries one-level down.
465rel_builddir=..
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530466CF_SHARED_OPTS
Steve Kondikae271bc2015-11-15 02:50:53 +0100467for model in $cf_list_models; do
468 case $model in
469 (libtool)
470 CF_WITH_LIBTOOL_OPTS
471 CF_WITH_EXPORT_SYMS
472 ;;
473 (shared)
474 if test "$CC_SHARED_OPTS" = "unknown"; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530475 AC_ERROR(Shared libraries are not supported in this version)
476 fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100477 CF_WITH_VERSIONED_SYMS
478 ;;
479 esac
480done
481
482# pretend that ncurses==ncursesw==ncursest
483AC_MSG_CHECKING(if you want to disable library suffixes)
484CF_ARG_DISABLE(lib-suffixes,
485 [ --disable-lib-suffixes disable library suffixes],
486 [disable_lib_suffixes=yes],
487 [disable_lib_suffixes=no],
488 no)
489AC_MSG_RESULT($disable_lib_suffixes)
490
491### If we're building with rpath, try to link non-standard libs that way too.
492if test "$DFT_LWR_MODEL" = "shared"; then
493 CF_DISABLE_RPATH_HACK
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530494fi
495
496###############################################################################
497CF_HELP_MESSAGE(Fine-Tuning Your Configuration:)
498
Steve Kondikae271bc2015-11-15 02:50:53 +0100499### use option --with-extra-suffix to append suffix to headers and libraries
500AC_MSG_CHECKING(if you wish to append extra suffix to header/library paths)
501EXTRA_SUFFIX=
502AC_ARG_WITH(extra-suffix,
503 [ --with-extra-suffix=X append extra suffix to header/library paths],
504 [case x$withval in
505 (no)
506 ;;
507 (xyes|x)
508 EXTRA_SUFFIX=$cf_cv_abi_version
509 ;;
510 (*)
511 EXTRA_SUFFIX=$withval
512 ;;
513 esac
514 ])
515AC_MSG_RESULT($EXTRA_SUFFIX)
516AC_SUBST(EXTRA_SUFFIX)
517
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530518### use option --disable-overwrite to leave out the link to -lcurses
519AC_MSG_CHECKING(if you wish to install ncurses overwriting curses)
520AC_ARG_ENABLE(overwrite,
Steve Kondikae271bc2015-11-15 02:50:53 +0100521 [ --disable-overwrite put headers in subdir, omit link to -lcurses],
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530522 [with_overwrite=$enableval],
523 [if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi])
524AC_MSG_RESULT($with_overwrite)
525
526AC_MSG_CHECKING(if external terminfo-database is used)
527AC_ARG_ENABLE(database,
528 [ --disable-database do not use terminfo, only fallbacks/termcap],
529 [use_database=$enableval],
530 [use_database=yes])
531AC_MSG_RESULT($use_database)
532
Steve Kondikae271bc2015-11-15 02:50:53 +0100533case $host_os in
534(os2*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530535 TERMINFO_SRC='${top_srcdir}/misc/emx.src'
536 ;;
Steve Kondikae271bc2015-11-15 02:50:53 +0100537(*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530538 TERMINFO_SRC='${top_srcdir}/misc/terminfo.src'
539 ;;
540esac
541AC_SUBST(TERMINFO_SRC)
542
Steve Kondikae271bc2015-11-15 02:50:53 +0100543NCURSES_USE_DATABASE=0
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530544if test "$use_database" != no ; then
Steve Kondikae271bc2015-11-15 02:50:53 +0100545 NCURSES_USE_DATABASE=1
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530546
547 AC_MSG_CHECKING(which terminfo source-file will be installed)
Steve Kondikae271bc2015-11-15 02:50:53 +0100548 AC_ARG_WITH(database,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530549 [ --with-database=XXX specify terminfo source to install],
550 [TERMINFO_SRC=$withval])
551 AC_MSG_RESULT($TERMINFO_SRC)
552
553 AC_MSG_CHECKING(whether to use hashed database instead of directory/tree)
554 AC_ARG_WITH(hashed-db,
555 [ --with-hashed-db specify hashed-database library],,
556 [with_hashed_db=no])
557 AC_MSG_RESULT($with_hashed_db)
558else
559 with_hashed_db=no
560fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100561AC_SUBST(NCURSES_USE_DATABASE)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530562
563AC_MSG_CHECKING(for list of fallback descriptions)
564AC_ARG_WITH(fallbacks,
565 [ --with-fallbacks=XXX specify list of fallback terminal descriptions],
566 [with_fallback=$withval],
567 [with_fallback=])
568AC_MSG_RESULT($with_fallback)
569FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
570AC_SUBST(FALLBACK_LIST)
571
572AC_MSG_CHECKING(if you want modern xterm or antique)
573AC_ARG_WITH(xterm-new,
574 [ --without-xterm-new specify if xterm terminfo should be old version],
575 [with_xterm_new=$withval],
576 [with_xterm_new=yes])
577case $with_xterm_new in
Steve Kondikae271bc2015-11-15 02:50:53 +0100578(no) with_xterm_new=xterm-old;;
579(*) with_xterm_new=xterm-new;;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530580esac
581AC_MSG_RESULT($with_xterm_new)
582WHICH_XTERM=$with_xterm_new
583AC_SUBST(WHICH_XTERM)
584
Steve Kondikae271bc2015-11-15 02:50:53 +0100585AC_MSG_CHECKING(if xterm backspace sends BS or DEL)
586AC_ARG_WITH(xterm-kbs,
587 [ --with-xterm-kbs=XXX specify if xterm backspace sends BS or DEL],
588 [with_xterm_kbs=$withval],
589 [with_xterm_kbs=BS])
590case x$with_xterm_kbs in
591(xyes|xno|xBS|xbs|x8)
592 with_xterm_kbs=BS
593 ;;
594(xDEL|xdel|x127)
595 with_xterm_kbs=DEL
596 ;;
597(*)
598 with_xterm_kbs=$withval
599 ;;
600esac
601AC_MSG_RESULT($with_xterm_kbs)
602XTERM_KBS=$with_xterm_kbs
603AC_SUBST(XTERM_KBS)
604
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530605MAKE_TERMINFO=
606if test "$use_database" = no ; then
607 TERMINFO="${datadir}/terminfo"
608 MAKE_TERMINFO="#"
609else
610
611AC_MSG_CHECKING(for list of terminfo directories)
612CF_WITH_PATHLIST(terminfo-dirs,
613 [ --with-terminfo-dirs=XXX specify list of terminfo directories],
614 TERMINFO_DIRS,
615 DATADIR/terminfo,
616 ${datadir}/terminfo)
617AC_MSG_RESULT($TERMINFO_DIRS)
Steve Kondikae271bc2015-11-15 02:50:53 +0100618test -n "$TERMINFO_DIRS" && AC_DEFINE_UNQUOTED(TERMINFO_DIRS,"$TERMINFO_DIRS",[Define as needed to predefine the TERMINFO_DIR searchlist])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530619
620AC_MSG_CHECKING(for default terminfo directory)
621CF_WITH_PATH(default-terminfo-dir,
622 [ --with-default-terminfo-dir=DIR default terminfo directory],
623 TERMINFO,
624 DATADIR/terminfo,
625 ${datadir}/terminfo)
626AC_MSG_RESULT($TERMINFO)
Steve Kondikae271bc2015-11-15 02:50:53 +0100627AC_DEFINE_UNQUOTED(TERMINFO,"$TERMINFO",[Define to set the default terminal database path])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530628
629fi
630
631AC_SUBST(TERMINFO)
632AC_SUBST(MAKE_TERMINFO)
633
634### use option --disable-big-core to make tic run on small machines
635### We need 4Mb, check if we can allocate 50% more than that.
636AC_MSG_CHECKING(if big-core option selected)
637AC_ARG_ENABLE(big-core,
638 [ --disable-big-core assume machine has little memory],
639 [with_big_core=$enableval],
640 [AC_TRY_RUN([
641#include <stdlib.h>
642#include <string.h>
643int main() {
644 unsigned long n = 6000000L;
645 char *s = malloc(n);
646 if (s != 0)
647 s[0] = s[n-1] = 0;
648 ${cf_cv_main_return:-return}(s == 0);
649}],
650 [with_big_core=yes],
651 [with_big_core=no],
652 [with_big_core=no])])
653AC_MSG_RESULT($with_big_core)
Steve Kondikae271bc2015-11-15 02:50:53 +0100654test "x$with_big_core" = "xyes" && AC_DEFINE(HAVE_BIG_CORE,1,[Define to 1 if machine has ample memory for tic])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530655
656### ISO C only guarantees 512-char strings, we have tables which load faster
657### when constructed using "big" strings. More than the C compiler, the awk
658### program is a limit on most vendor UNIX systems. Check that we can build.
659AC_MSG_CHECKING(if big-strings option selected)
660AC_ARG_ENABLE(big-strings,
661 [ --disable-big-strings assume compiler has only standard-size strings],
662 [with_big_strings=$enableval],
663 [CF_AWK_BIG_PRINTF(12000,with_big_strings)])
664AC_MSG_RESULT($with_big_strings)
665
666USE_BIG_STRINGS=0
Steve Kondikae271bc2015-11-15 02:50:53 +0100667test "x$with_big_strings" = "xyes" && USE_BIG_STRINGS=1
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530668AC_SUBST(USE_BIG_STRINGS)
669
670### use option --enable-termcap to compile in the termcap fallback support
671AC_MSG_CHECKING(if you want termcap-fallback support)
672AC_ARG_ENABLE(termcap,
673 [ --enable-termcap compile in termcap fallback support],
674 [with_termcap=$enableval],
675 [with_termcap=no])
676AC_MSG_RESULT($with_termcap)
677
Steve Kondikae271bc2015-11-15 02:50:53 +0100678NCURSES_USE_TERMCAP=0
679if test "x$with_termcap" != "xyes" ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530680 if test "$use_database" = no ; then
681 if test -z "$with_fallback" ; then
682 AC_ERROR(You have disabled the database w/o specifying fallbacks)
683 fi
684 fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100685 AC_DEFINE(PURE_TERMINFO,1,[Define to 1 if we should support only terminfo])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530686else
687
Steve Kondikae271bc2015-11-15 02:50:53 +0100688 if test "$with_ticlib" != no ; then
689 AC_ERROR(Options --with-ticlib and --enable-termcap cannot be combined)
690 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530691
Steve Kondikae271bc2015-11-15 02:50:53 +0100692 NCURSES_USE_TERMCAP=1
693 AC_MSG_CHECKING(for list of termcap files)
694 CF_WITH_PATHLIST(termpath,
695 [ --with-termpath=XXX specify list of termcap files],
696 TERMPATH,
697 /etc/termcap:/usr/share/misc/termcap)
698 AC_MSG_RESULT($TERMPATH)
699 test -n "$TERMPATH" && AC_DEFINE_UNQUOTED(TERMPATH,"$TERMPATH",[Define to set the termcap searchlist])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530700
Steve Kondikae271bc2015-11-15 02:50:53 +0100701 ### use option --enable-getcap to use a hacked getcap for reading termcaps
702 AC_MSG_CHECKING(if fast termcap-loader is needed)
703 AC_ARG_ENABLE(getcap,
704 [ --enable-getcap fast termcap load, no xrefs to terminfo],
705 [with_getcap=$enableval],
706 [with_getcap=no])
707 AC_MSG_RESULT($with_getcap)
708 test "x$with_getcap" = "xyes" && AC_DEFINE(USE_GETCAP,1,[Define to 1 to use fast termcap-loader])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530709
Steve Kondikae271bc2015-11-15 02:50:53 +0100710 AC_MSG_CHECKING(if translated termcaps will be cached in ~/.terminfo)
711 AC_ARG_ENABLE(getcap-cache,
712 [ --enable-getcap-cache cache translated termcaps in ~/.terminfo],
713 [with_getcap_cache=$enableval],
714 [with_getcap_cache=no])
715 AC_MSG_RESULT($with_getcap_cache)
716 test "x$with_getcap_cache" = "xyes" && AC_DEFINE(USE_GETCAP_CACHE,1,[Define to 1 if translated termcap should be stored in $HOME/.terminfo])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530717
718fi
Steve Kondikae271bc2015-11-15 02:50:53 +0100719AC_SUBST(NCURSES_USE_TERMCAP)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530720
721### Use option --disable-home-terminfo to completely remove ~/.terminfo
722AC_MSG_CHECKING(if ~/.terminfo is wanted)
723AC_ARG_ENABLE(home-terminfo,
724 [ --disable-home-terminfo drop ~/.terminfo from terminfo search-path],
725 [with_home_terminfo=$enableval],
726 [with_home_terminfo=yes])
727AC_MSG_RESULT($with_home_terminfo)
Steve Kondikae271bc2015-11-15 02:50:53 +0100728test "x$with_home_terminfo" = "xyes" && AC_DEFINE(USE_HOME_TERMINFO,1,[Define to 1 if $HOME/.terminfo feature is wanted])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530729
730AC_MSG_CHECKING(if you want to use restricted environment when running as root)
731AC_ARG_ENABLE(root-environ,
732 [ --disable-root-environ restrict environment when running as root],
733 [with_root_environ=$enableval],
734 [with_root_environ=yes])
735AC_MSG_RESULT($with_root_environ)
Steve Kondikae271bc2015-11-15 02:50:53 +0100736test "x$with_root_environ" = xyes && AC_DEFINE(USE_ROOT_ENVIRON,1,[Define to 1 if environment should be restricted for root user])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530737
738### Use option --enable-symlinks to make tic use symlinks, not hard links
739### to reduce storage requirements for the terminfo database.
740CF_LINK_FUNCS
741
742with_links=no
743with_symlinks=no
744
745# soft links (symbolic links) are useful for some systems where hard links do
746# not work, or to make it simpler to copy terminfo trees around.
Steve Kondikae271bc2015-11-15 02:50:53 +0100747if test "x$ac_cv_func_symlink" = xyes ; then
748 AC_MSG_CHECKING(if tic should use symbolic links)
749 AC_ARG_ENABLE(symlinks,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530750 [ --enable-symlinks make tic use symbolic links not hard links],
751 [with_symlinks=$enableval],
752 [with_symlinks=no])
Steve Kondikae271bc2015-11-15 02:50:53 +0100753 AC_MSG_RESULT($with_symlinks)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530754fi
755
756# If we have hard links and did not choose to use soft links instead, there is
757# no reason to make this choice optional - use the hard links.
758if test "$with_symlinks" = no ; then
Steve Kondikae271bc2015-11-15 02:50:53 +0100759 AC_MSG_CHECKING(if tic should use hard links)
760 if test "x$ac_cv_func_link" = xyes ; then
761 with_links=yes
762 else
763 with_links=no
764 fi
765 AC_MSG_RESULT($with_links)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530766fi
767
Steve Kondikae271bc2015-11-15 02:50:53 +0100768test "x$with_links" = xyes && AC_DEFINE(USE_LINKS,1,[Define to 1 if hardlinks should be used in terminfo database])
769test "x$with_symlinks" = xyes && AC_DEFINE(USE_SYMLINKS,1,[Define to 1 if symbolic links should be used in terminfo database])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530770
771### use option --enable-broken-linker to force on use of broken-linker support
772AC_MSG_CHECKING(if you want broken-linker support code)
773AC_ARG_ENABLE(broken_linker,
774 [ --enable-broken_linker compile with broken-linker support code],
775 [with_broken_linker=$enableval],
Steve Kondikae271bc2015-11-15 02:50:53 +0100776 [with_broken_linker=${BROKEN_LINKER:-no}])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530777AC_MSG_RESULT($with_broken_linker)
778
779BROKEN_LINKER=0
Steve Kondikae271bc2015-11-15 02:50:53 +0100780if test "x$with_broken_linker" = xyes ; then
781 AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530782 BROKEN_LINKER=1
783elif test "$DFT_LWR_MODEL" = shared ; then
Steve Kondikae271bc2015-11-15 02:50:53 +0100784 case $cf_cv_system_name in
785 (cygwin*)
786 AC_DEFINE(BROKEN_LINKER,1,[Define to 1 to work around linkers which cannot link data-only modules])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530787 BROKEN_LINKER=1
788 CF_VERBOSE(cygwin linker is broken anyway)
789 ;;
790 esac
791fi
792AC_SUBST(BROKEN_LINKER)
793
794### use option --enable-bsdpad to have tputs process BSD-style prefix padding
795AC_MSG_CHECKING(if tputs should process BSD-style prefix padding)
796AC_ARG_ENABLE(bsdpad,
797 [ --enable-bsdpad recognize BSD-style prefix padding],
798 [with_bsdpad=$enableval],
799 [with_bsdpad=no])
800AC_MSG_RESULT($with_bsdpad)
Steve Kondikae271bc2015-11-15 02:50:53 +0100801test "x$with_bsdpad" = xyes && AC_DEFINE(BSD_TPUTS,1,[Define to 1 to recognize BSD-style prefix padding])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530802
803### use option --enable-widec to turn on use of wide-character support
804NCURSES_CH_T=chtype
805NCURSES_LIBUTF8=0
806
807NEED_WCHAR_H=0
808NCURSES_MBSTATE_T=0
809NCURSES_WCHAR_T=0
810NCURSES_WINT_T=0
811
812# Check to define _XOPEN_SOURCE "automatically"
Steve Kondikae271bc2015-11-15 02:50:53 +0100813CPPFLAGS_before_XOPEN="$CPPFLAGS"
814CF_XOPEN_SOURCE(500)
815CPPFLAGS_after_XOPEN="$CPPFLAGS"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530816
817# Work around breakage on OS X
818CF_SIGWINCH
819
820# Checks for CODESET support.
821AM_LANGINFO_CODESET
822
823# use these variables to work around a defect in gcc's fixincludes.
824NCURSES_OK_WCHAR_T=
825NCURSES_OK_WINT_T=
826
827AC_MSG_CHECKING(if you want wide-character code)
828AC_ARG_ENABLE(widec,
829 [ --enable-widec compile with wide-char/UTF-8 code],
830 [with_widec=$enableval],
831 [with_widec=no])
832AC_MSG_RESULT($with_widec)
Steve Kondikae271bc2015-11-15 02:50:53 +0100833if test "x$with_widec" = xyes ; then
834 if test "x$disable_lib_suffixes" = xno ; then
835 LIB_SUFFIX="w${LIB_SUFFIX}"
836 fi
837 AC_DEFINE(USE_WIDEC_SUPPORT,1,[Define to 1 to compile with wide-char/UTF-8 code])
838 AC_DEFINE(NCURSES_WIDECHAR,1,[Define to 1 to compile with wide-char/UTF-8 code])
839
840 CF_CHECK_WCHAR_H
841
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530842 # with_overwrite=no
843 NCURSES_CH_T=cchar_t
844 AC_CHECK_FUNCS(putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs)
Steve Kondikae271bc2015-11-15 02:50:53 +0100845 if test "x$ac_cv_func_putwc" != xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530846 CF_UTF8_LIB
847 if test "$cf_cv_utf8_lib" != no ; then
848 NCURSES_LIBUTF8=1
849 fi
850 fi
851 CF_WCHAR_TYPE(mbstate_t, NCURSES_MBSTATE_T)
852 CF_WCHAR_TYPE(wchar_t, NCURSES_WCHAR_T, NCURSES_OK_WCHAR_T)
853 CF_WCHAR_TYPE(wint_t, NCURSES_WINT_T, NCURSES_OK_WINT_T)
854
855 if test "$NCURSES_MBSTATE_T" != 0; then
Steve Kondikae271bc2015-11-15 02:50:53 +0100856 AC_DEFINE(NEED_MBSTATE_T_DEF,1,[Define to 1 if we must declare mbstate_t])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530857 fi
858fi
859AC_SUBST(NCURSES_CH_T)
860AC_SUBST(NCURSES_LIBUTF8)
861
862AC_SUBST(NEED_WCHAR_H)
863AC_SUBST(NCURSES_MBSTATE_T)
864AC_SUBST(NCURSES_WCHAR_T)
865AC_SUBST(NCURSES_WINT_T)
866
867AC_SUBST(NCURSES_OK_WCHAR_T)
868AC_SUBST(NCURSES_OK_WINT_T)
869
870### use option --disable-lp64 to allow long chtype
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530871AC_MSG_CHECKING(whether to enable _LP64 definition in curses.h)
872AC_ARG_ENABLE(lp64,
873 [ --disable-lp64 allow chtype to be long (ignore _LP64)],
874 [with_lp64=$enableval],
Steve Kondikae271bc2015-11-15 02:50:53 +0100875 [with_lp64=$cf_dft_with_lp64])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530876AC_MSG_RESULT($with_lp64)
877
Steve Kondikae271bc2015-11-15 02:50:53 +0100878if test "x$with_lp64" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530879 cf_cv_enable_lp64=1
880else
881 cf_cv_enable_lp64=0
882fi
883AC_SUBST(cf_cv_enable_lp64)
884
885CF_LARGEFILE
886
887### use option --disable-tparm-varargs to make tparm() conform to X/Open
888AC_MSG_CHECKING(if you want tparm not to use X/Open fixed-parameter list)
889AC_ARG_ENABLE(tparm-varargs,
890 [ --disable-tparm-varargs compile tparm() without varargs interface],
891 [with_tparm_varargs=$enableval],
892 [with_tparm_varargs=yes])
893AC_MSG_RESULT($with_tparm_varargs)
894NCURSES_TPARM_VARARGS=0
Steve Kondikae271bc2015-11-15 02:50:53 +0100895test "x$with_tparm_varargs" = xyes && NCURSES_TPARM_VARARGS=1
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530896AC_SUBST(NCURSES_TPARM_VARARGS)
897
898### use option --disable-tic-depends to make libtic not explicitly depend on ncurses/ncursesw
899if test "$with_ticlib" != no ; then
900AC_MSG_CHECKING(if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library)
901AC_ARG_ENABLE(tic-depends,
902 [ --disable-tic-depends link tic library without explicit dependency on ncurses library],
903 [with_tic_depends=$enableval],
904 [with_tic_depends=yes])
905AC_MSG_RESULT($with_tic_depends)
906else
907 with_tic_depends=no
908fi
909
910### use option --with-bool to override bool's type
911AC_MSG_CHECKING(for type of bool)
912AC_ARG_WITH(bool,
913 [ --with-bool=TYPE override fallback type of bool variable],
914 [NCURSES_BOOL="$withval"],
915 [NCURSES_BOOL=auto])
916AC_MSG_RESULT($NCURSES_BOOL)
917AC_SUBST(NCURSES_BOOL)
918
919AC_MSG_CHECKING(for alternate terminal capabilities file)
920AC_ARG_WITH(caps,
921 [ --with-caps=alt compile with alternate Caps file],
922 [TERMINFO_CAPS=Caps.$withval],
923 [TERMINFO_CAPS=Caps])
924test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
925AC_MSG_RESULT($TERMINFO_CAPS)
926AC_SUBST(TERMINFO_CAPS)
927
928### use option --with-chtype to override chtype's type
929AC_MSG_CHECKING(for type of chtype)
930AC_ARG_WITH(chtype,
931 [ --with-chtype=TYPE override type of chtype],
932 [NCURSES_CHTYPE="$withval"],
Steve Kondikae271bc2015-11-15 02:50:53 +0100933 [NCURSES_CHTYPE=$cf_dft_chtype])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530934AC_MSG_RESULT($NCURSES_CHTYPE)
935
936### use option --with-ospeed to override ospeed's type
937AC_MSG_CHECKING(for type of ospeed)
938AC_ARG_WITH(ospeed,
939 [ --with-ospeed=TYPE override type of ospeed variable],
940 [NCURSES_OSPEED="$withval"],
941 [NCURSES_OSPEED=short])
942AC_MSG_RESULT($NCURSES_OSPEED)
943AC_SUBST(NCURSES_OSPEED)
944
945### use option --with-mmask-t to override mmask_t's type
946AC_MSG_CHECKING(for type of mmask_t)
947AC_ARG_WITH(mmask-t,
948 [ --with-mmask-t=TYPE override type of mmask_t],
949 [NCURSES_MMASK_T="$withval"],
Steve Kondikae271bc2015-11-15 02:50:53 +0100950 [NCURSES_MMASK_T=$cf_dft_mmask_t])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530951AC_MSG_RESULT($NCURSES_MMASK_T)
952
Steve Kondikae271bc2015-11-15 02:50:53 +0100953### use option --with-ccharw-max to override CCHARW_MAX size
954AC_MSG_CHECKING(for size CCHARW_MAX)
955AC_ARG_WITH(ccharw-max,
956 [ --with-ccharw-max=XXX override size CCHARW_MAX],
957 [NCURSES_CCHARW_MAX="$withval"],
958 [NCURSES_CCHARW_MAX=5])
959AC_MSG_RESULT($NCURSES_CCHARW_MAX)
960AC_SUBST(NCURSES_CCHARW_MAX)
961
962### use option --with-tparm-arg to override tparm's argument type
963AC_MSG_CHECKING(for type of tparm args)
964AC_ARG_WITH(tparm-arg,
965 [ --with-tparm-arg=TYPE override parameter type of tparm],
966 [NCURSES_TPARM_ARG="$withval"],
967 [NCURSES_TPARM_ARG=$cf_dft_tparm_arg])
968AC_MSG_RESULT($NCURSES_TPARM_ARG)
969AC_SUBST(NCURSES_TPARM_ARG)
970
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530971### Enable compiling-in rcs id's
972AC_MSG_CHECKING(if RCS identifiers should be compiled-in)
973AC_ARG_WITH(rcs-ids,
974 [ --with-rcs-ids compile-in RCS identifiers],
975 [with_rcs_ids=$withval],
976 [with_rcs_ids=no])
977AC_MSG_RESULT($with_rcs_ids)
Steve Kondikae271bc2015-11-15 02:50:53 +0100978test "x$with_rcs_ids" = xyes && AC_DEFINE(USE_RCS_IDS,1,[Define to 1 to compile-in RCS identifiers])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530979
980###############################################################################
Steve Kondikae271bc2015-11-15 02:50:53 +0100981CF_MAN_PAGES([ captoinfo clear infocmp infotocap tabs tic toe tput tset ])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530982
983###############################################################################
984CF_HELP_MESSAGE(Extensions:)
985
986### Note that some functions (such as const) are normally disabled anyway.
987AC_MSG_CHECKING(if you want to build with function extensions)
988AC_ARG_ENABLE(ext-funcs,
989 [ --disable-ext-funcs disable function-extensions],
990 [with_ext_funcs=$enableval],
991 [with_ext_funcs=yes])
992AC_MSG_RESULT($with_ext_funcs)
Steve Kondikae271bc2015-11-15 02:50:53 +0100993if test "x$with_ext_funcs" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530994 NCURSES_EXT_FUNCS=1
Steve Kondikae271bc2015-11-15 02:50:53 +0100995 AC_DEFINE(HAVE_ASSUME_DEFAULT_COLORS,1,[Define to 1 to enable assume_default_colors() function])
996 AC_DEFINE(HAVE_CURSES_VERSION,1,[Define to 1 to enable curses_version() function])
997 AC_DEFINE(HAVE_HAS_KEY,1,[Define to 1 to enable has_key() function])
998 AC_DEFINE(HAVE_RESIZETERM,1,[Define to 1 to enable resizeterm() function])
999 AC_DEFINE(HAVE_RESIZE_TERM,1,[Define to 1 to enable resize_term() function])
1000 AC_DEFINE(HAVE_TERM_ENTRY_H,1,[Define to 1 to enable term_entry() function])
1001 AC_DEFINE(HAVE_USE_DEFAULT_COLORS,1,[Define to 1 to enable use_default_colors() function])
1002 AC_DEFINE(HAVE_USE_SCREEN,1,[Define to 1 to enable use_screen() function])
1003 AC_DEFINE(HAVE_USE_WINDOW,1,[Define to 1 to enable use_window() function])
1004 AC_DEFINE(HAVE_WRESIZE,1,[Define to 1 to enable wresize() function])
1005 AC_DEFINE(NCURSES_EXT_FUNCS,1,[Define to 1 to enable ncurses extended functions])
1006 GENERATED_EXT_FUNCS=generated
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301007else
1008 NCURSES_EXT_FUNCS=0
Steve Kondikae271bc2015-11-15 02:50:53 +01001009 GENERATED_EXT_FUNCS=
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301010fi
1011AC_SUBST(NCURSES_EXT_FUNCS)
Steve Kondikae271bc2015-11-15 02:50:53 +01001012AC_SUBST(GENERATED_EXT_FUNCS)
1013
1014AC_MSG_CHECKING(if you want to build with SCREEN extensions)
1015AC_ARG_ENABLE(sp-funcs,
1016 [ --enable-sp-funcs enable SCREEN-extensions],
1017 [with_sp_funcs=$enableval],
1018 [with_sp_funcs=$cf_dft_ext_spfuncs])
1019AC_MSG_RESULT($with_sp_funcs)
1020if test "x$with_sp_funcs" = xyes ; then
1021 NCURSES_SP_FUNCS=1
1022 AC_DEFINE(NCURSES_SP_FUNCS,1,[Define to 1 to enable SCREEN-extensions])
1023 GENERATED_SP_FUNCS=generated
1024else
1025 NCURSES_SP_FUNCS=0
1026 GENERATED_SP_FUNCS=
1027fi
1028AC_SUBST(NCURSES_SP_FUNCS)
1029AC_SUBST(GENERATED_SP_FUNCS)
1030
1031AC_MSG_CHECKING(if you want to build with terminal-driver)
1032AC_ARG_ENABLE(term-driver,
1033 [ --enable-term-driver enable terminal-driver],
1034 [with_term_driver=$enableval],
1035 [with_term_driver=no])
1036AC_MSG_RESULT($with_term_driver)
1037if test "x$with_term_driver" = xyes ; then
1038 AC_DEFINE(USE_TERM_DRIVER,1,[Define to 1 to enable terminal-driver])
1039 if test "x$with_termlib" != xno ; then
1040 AC_MSG_ERROR(The term-driver option conflicts with the termlib option)
1041 fi
1042 if test "x$with_sp_funcs" != xyes ; then
1043 AC_MSG_ERROR(The term-driver option relies upon sp-funcs)
1044 fi
1045fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301046
1047### use option --enable-const to turn on use of const beyond that in XSI.
1048AC_MSG_CHECKING(for extended use of const keyword)
1049AC_ARG_ENABLE(const,
1050 [ --enable-const compile with extra/non-standard const],
1051 [with_ext_const=$enableval],
Steve Kondikae271bc2015-11-15 02:50:53 +01001052 [with_ext_const=$cf_dft_ext_const])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301053AC_MSG_RESULT($with_ext_const)
1054NCURSES_CONST='/*nothing*/'
Steve Kondikae271bc2015-11-15 02:50:53 +01001055if test "x$with_ext_const" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301056 NCURSES_CONST=const
1057fi
1058AC_SUBST(NCURSES_CONST)
1059
1060### use option --enable-ext-colors to turn on use of colors beyond 16.
1061AC_MSG_CHECKING(if you want to use extended colors)
1062AC_ARG_ENABLE(ext-colors,
1063 [ --enable-ext-colors compile for 256-color support],
1064 [with_ext_colors=$enableval],
Steve Kondikae271bc2015-11-15 02:50:53 +01001065 [with_ext_colors=$cf_dft_ext_colors])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301066AC_MSG_RESULT($with_ext_colors)
1067NCURSES_EXT_COLORS=0
Steve Kondikae271bc2015-11-15 02:50:53 +01001068if test "x$with_ext_colors" = xyes ; then
1069 if test "x$with_widec" != xyes ; then
1070 AC_MSG_WARN(This option applies only to wide-character library)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301071 else
1072 # cannot be ABI 5 since it changes sizeof(cchar_t)
1073 CF_NCURSES_ABI_6
Steve Kondikae271bc2015-11-15 02:50:53 +01001074 NCURSES_EXT_COLORS=1
1075 AC_DEFINE(NCURSES_EXT_COLORS,1,[Define to 1 to compile for 256-color support])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301076 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301077fi
1078AC_SUBST(NCURSES_EXT_COLORS)
1079
1080### use option --enable-ext-mouse to modify coding to support 5-button mice
1081AC_MSG_CHECKING(if you want to use extended mouse encoding)
1082AC_ARG_ENABLE(ext-mouse,
1083 [ --enable-ext-mouse compile for extended mouse-encoding],
1084 [with_ext_mouse=$enableval],
Steve Kondikae271bc2015-11-15 02:50:53 +01001085 [with_ext_mouse=$cf_dft_ext_mouse])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301086AC_MSG_RESULT($with_ext_mouse)
1087NCURSES_MOUSE_VERSION=1
Steve Kondikae271bc2015-11-15 02:50:53 +01001088if test "x$with_ext_mouse" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301089 NCURSES_MOUSE_VERSION=2
1090 CF_NCURSES_ABI_6
1091fi
1092AC_SUBST(NCURSES_MOUSE_VERSION)
1093
Steve Kondikae271bc2015-11-15 02:50:53 +01001094### use option --enable-ext-putwin to turn on extended screendumps
1095AC_MSG_CHECKING(if you want to use extended putwin/screendump)
1096AC_ARG_ENABLE(ext-putwin,
1097 [ --enable-ext-putwin compile with extended putwin/screendump],
1098 [with_ext_putwin=$enableval],
1099 [with_ext_putwin=$cf_dft_ext_putwin])
1100AC_MSG_RESULT($with_ext_putwin)
1101if test "x$with_ext_putwin" = xyes ; then
1102 AC_DEFINE(NCURSES_EXT_PUTWIN,1,[Define to 1 to compile with extended putwin/screendump])
1103fi
1104
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301105AC_MSG_CHECKING(if you want \$NCURSES_NO_PADDING code)
1106AC_ARG_ENABLE(no-padding,
1107 [ --enable-no-padding compile with $NCURSES_NO_PADDING code],
1108 [with_no_padding=$enableval],
1109 [with_no_padding=$with_ext_funcs])
1110AC_MSG_RESULT($with_no_padding)
Steve Kondikae271bc2015-11-15 02:50:53 +01001111test "x$with_no_padding" = xyes && AC_DEFINE(NCURSES_NO_PADDING,1,[Define to 1 to compile with $NCURSES_NO_PADDING code])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301112
1113AC_CHECK_SIZEOF([signed char], 0)
1114if test "$ac_cv_sizeof_signed_char" = 1 ; then
1115 NCURSES_SBOOL="signed char"
1116else
1117 NCURSES_SBOOL="char"
1118fi
1119AC_MSG_CHECKING(if you want to use signed Boolean array in term.h)
1120AC_ARG_ENABLE(signed-char,
1121 [ --enable-signed-char compile using signed Boolean's in term.h],
1122 [with_signed_char=$enableval],
1123 [with_signed_char=no])
1124AC_MSG_RESULT($with_signed_char)
Steve Kondikae271bc2015-11-15 02:50:53 +01001125test "x$with_signed_char" != xyes && NCURSES_SBOOL="char"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301126AC_SUBST(NCURSES_SBOOL)
1127
1128### use option --enable-sigwinch to turn on use of SIGWINCH logic
1129AC_MSG_CHECKING(if you want SIGWINCH handler)
1130AC_ARG_ENABLE(sigwinch,
1131 [ --enable-sigwinch compile with SIGWINCH handler],
1132 [with_sigwinch=$enableval],
1133 [with_sigwinch=$with_ext_funcs])
1134AC_MSG_RESULT($with_sigwinch)
Steve Kondikae271bc2015-11-15 02:50:53 +01001135test "x$with_sigwinch" = xyes && AC_DEFINE(USE_SIGWINCH,1,[Define to 1 to compile with SIGWINCH handler])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301136
1137### use option --enable-tcap-names to allow user to define new capabilities
1138AC_MSG_CHECKING(if you want user-definable terminal capabilities like termcap)
1139AC_ARG_ENABLE(tcap-names,
1140 [ --enable-tcap-names compile with user-definable terminal capabilities],
1141 [with_tcap_names=$enableval],
1142 [with_tcap_names=$with_ext_funcs])
1143AC_MSG_RESULT($with_tcap_names)
1144NCURSES_XNAMES=0
Steve Kondikae271bc2015-11-15 02:50:53 +01001145test "x$with_tcap_names" = xyes && NCURSES_XNAMES=1
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301146AC_SUBST(NCURSES_XNAMES)
1147
1148###############################################################################
1149# These options are relatively safe to experiment with.
1150CF_HELP_MESSAGE(Development Code:)
1151AC_MSG_CHECKING(if you want all development code)
1152AC_ARG_WITH(develop,
1153 [ --without-develop disable development options],
1154 [with_develop=$withval],
1155 [with_develop=no])
1156AC_MSG_RESULT($with_develop)
1157
1158### use option --enable-hard-tabs to turn on use of hard-tabs optimize
1159AC_MSG_CHECKING(if you want hard-tabs code)
1160AC_ARG_ENABLE(hard-tabs,
1161 [ --enable-hard-tabs compile with hard-tabs code],,
1162 [enable_hard_tabs=$with_develop])
1163AC_MSG_RESULT($enable_hard_tabs)
Steve Kondikae271bc2015-11-15 02:50:53 +01001164test "x$enable_hard_tabs" = xyes && AC_DEFINE(USE_HARD_TABS,1,[Define to 1 to compile with hard-tabs code])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301165
1166### use option --enable-xmc-glitch to turn on use of magic-cookie optimize
1167AC_MSG_CHECKING(if you want limited support for xmc)
1168AC_ARG_ENABLE(xmc-glitch,
1169 [ --enable-xmc-glitch compile with support for xmc (magic-cookie)],,
1170 [enable_xmc_glitch=$with_develop])
1171AC_MSG_RESULT($enable_xmc_glitch)
Steve Kondikae271bc2015-11-15 02:50:53 +01001172test "x$enable_xmc_glitch" = xyes && AC_DEFINE(USE_XMC_SUPPORT,1,[Define to 1 to compile with support for xmc (magic-cookie)])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301173
1174###############################################################################
1175# These are just experimental, probably should not be in a package:
1176CF_HELP_MESSAGE(Experimental Code:)
1177
1178AC_MSG_CHECKING(if you do not want to assume colors are white-on-black)
1179AC_ARG_ENABLE(assumed-color,
1180 [ --disable-assumed-color do not assume anything about default-colors],
1181 [with_assumed_color=$enableval],
1182 [with_assumed_color=yes])
1183AC_MSG_RESULT($with_assumed_color)
Steve Kondikae271bc2015-11-15 02:50:53 +01001184test "x$with_assumed_color" = xyes && AC_DEFINE(USE_ASSUMED_COLOR,1,[Define to 1 to assume things about default-colors])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301185
1186### use option --enable-hashmap to turn on use of hashmap scrolling logic
1187AC_MSG_CHECKING(if you want hashmap scrolling-optimization code)
1188AC_ARG_ENABLE(hashmap,
1189 [ --disable-hashmap compile without hashmap scrolling-optimization],
1190 [with_hashmap=$enableval],
1191 [with_hashmap=yes])
1192AC_MSG_RESULT($with_hashmap)
Steve Kondikae271bc2015-11-15 02:50:53 +01001193test "x$with_hashmap" = xyes && AC_DEFINE(USE_HASHMAP,1,[Define to 1 to compile with hashmap scrolling-optimization])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301194
1195### use option --enable-colorfgbg to turn on use of $COLORFGBG environment
1196AC_MSG_CHECKING(if you want colorfgbg code)
1197AC_ARG_ENABLE(colorfgbg,
Steve Kondikae271bc2015-11-15 02:50:53 +01001198 [ --enable-colorfgbg compile-in experimental $COLORFGBG code],
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301199 [with_colorfgbg=$enableval],
1200 [with_colorfgbg=no])
1201AC_MSG_RESULT($with_colorfgbg)
Steve Kondikae271bc2015-11-15 02:50:53 +01001202test "x$with_colorfgbg" = xyes && AC_DEFINE(USE_COLORFGBG,1,[Define to 1 to compile-in experimental $COLORFGBG code])
1203
1204### use option --enable-interop to turn on use of bindings used for interop
1205AC_MSG_CHECKING(if you want interop bindings)
1206AC_ARG_ENABLE(interop,
1207 [ --enable-interop compile-in interop bindings],
1208 [with_exp_interop=$enableval],
1209 [with_exp_interop=$cf_dft_interop])
1210AC_MSG_RESULT($with_exp_interop)
1211
1212NCURSES_INTEROP_FUNCS=0
1213test "x$with_exp_interop" = xyes && NCURSES_INTEROP_FUNCS=1
1214AC_SUBST(NCURSES_INTEROP_FUNCS)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301215
1216# This is still experimental (20080329), but should ultimately be moved to
1217# the script-block --with-normal, etc.
1218CF_WITH_PTHREAD
1219
Steve Kondikae271bc2015-11-15 02:50:53 +01001220if test "x$with_pthread" != xno; then
1221 AC_CHECK_FUNC(pthread_kill,[
1222 AC_MSG_CHECKING(if you want to allow EINTR in wgetch with pthreads)
1223 AC_ARG_ENABLE(pthreads-eintr,
1224 [ --enable-pthreads-eintr enable EINTR in wgetch with pthreads],
1225 [use_pthreads_eintr=$enableval],
1226 [use_pthreads_eintr=no])
1227 AC_MSG_RESULT($use_pthreads_eintr)
1228 if test "x$use_pthreads_eintr" = xyes ; then
1229 AC_DEFINE(USE_PTHREADS_EINTR,1,[Define to 1 to enable EINTR in wgetch with pthreads])
1230 fi])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301231
Steve Kondikae271bc2015-11-15 02:50:53 +01001232 AC_MSG_CHECKING(if you want to use weak-symbols for pthreads)
1233 AC_ARG_ENABLE(weak-symbols,
1234 [ --enable-weak-symbols enable weak-symbols for pthreads],
1235 [use_weak_symbols=$enableval],
1236 [use_weak_symbols=no])
1237 AC_MSG_RESULT($use_weak_symbols)
1238 if test "x$use_weak_symbols" = xyes ; then
1239 CF_WEAK_SYMBOLS
1240 else
1241 cf_cv_weak_symbols=no
1242 fi
1243
1244 if test "x$cf_cv_weak_symbols" = xyes ; then
1245 AC_DEFINE(USE_WEAK_SYMBOLS,1,[Define to 1 to enable weak-symbols for pthreads])
1246 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301247fi
1248
1249PTHREAD=
Steve Kondikae271bc2015-11-15 02:50:53 +01001250if test "x$with_pthread" = "xyes" ; then
1251 AC_DEFINE(USE_PTHREADS,1,[Define to 1 to use pthreads feature])
1252 enable_reentrant=yes
1253 if test "x$cf_cv_weak_symbols" = xyes ; then
1254 PTHREAD=-lpthread
1255 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301256fi
1257AC_SUBST(PTHREAD)
1258
1259# Reentrant code has to be opaque; there's little advantage to making ncurses
1260# opaque outside of that, so there is no --enable-opaque option. We can use
1261# this option without --with-pthreads, but this will be always set for
1262# pthreads.
Steve Kondikae271bc2015-11-15 02:50:53 +01001263AC_MSG_CHECKING(if you want reentrant code)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301264AC_ARG_ENABLE(reentrant,
Steve Kondikae271bc2015-11-15 02:50:53 +01001265 [ --enable-reentrant compile with reentrant code],
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301266 [with_reentrant=$enableval],
1267 [with_reentrant=no])
1268AC_MSG_RESULT($with_reentrant)
Steve Kondikae271bc2015-11-15 02:50:53 +01001269if test "x$with_reentrant" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301270 cf_cv_enable_reentrant=1
1271 cf_cv_enable_opaque="NCURSES_INTERNALS"
1272 NCURSES_OPAQUE=1
1273 NCURSES_SIZE_T=int
Steve Kondikae271bc2015-11-15 02:50:53 +01001274 if test "x$cf_cv_weak_symbols" = xyes ; then
1275 CF_REMOVE_LIB(LIBS,$LIBS,pthread)
1276 CF_ADD_LIB(pthread,TEST_LIBS)
1277 CF_ADD_LIB(pthread,TEST_LIBS2)
1278 else
1279 # when not using weak symbols but with_reentrant,
1280 # add 't' to the library suffix on all platforms
1281 # except cygwin, where we only do that if ALSO
1282 # compiling with full thread support.
1283 case "$host" in
1284 (*cygwin* | *msys*)
1285 if test "$with_pthread" = "yes" ; then
1286 if test "x$disable_lib_suffixes" = "xno" ; then
1287 LIB_SUFFIX="t${LIB_SUFFIX}"
1288 fi
1289 fi ;;
1290 (*)
1291 if test "x$disable_lib_suffixes" = "xno" ; then
1292 LIB_SUFFIX="t${LIB_SUFFIX}"
1293 fi
1294 ;;
1295 esac
1296 fi
1297 AC_DEFINE(USE_REENTRANT,1,[Define to 1 to use reentrant feature])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301298 CF_NCURSES_ABI_6
1299else
1300 cf_cv_enable_reentrant=0
1301 cf_cv_enable_opaque="NCURSES_OPAQUE"
1302 NCURSES_OPAQUE=0
1303 NCURSES_SIZE_T=short
1304fi
1305AC_SUBST(cf_cv_enable_reentrant)
1306AC_SUBST(cf_cv_enable_opaque)
1307AC_SUBST(NCURSES_OPAQUE)
1308AC_SUBST(NCURSES_SIZE_T)
1309
Steve Kondikae271bc2015-11-15 02:50:53 +01001310### Allow using a different wrap-prefix
1311if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
1312 AC_MSG_CHECKING(for prefix used to wrap public variables)
1313 AC_ARG_WITH(wrap-prefix,
1314 [ --with-wrap-prefix=XXX override prefix used for public variables],
1315 [NCURSES_WRAP_PREFIX=$withval],
1316 [NCURSES_WRAP_PREFIX=_nc_])
1317 AC_MSG_RESULT($NCURSES_WRAP_PREFIX)
1318else
1319 NCURSES_WRAP_PREFIX=_nc_
1320fi
1321AC_SUBST(NCURSES_WRAP_PREFIX)
1322AC_DEFINE_UNQUOTED(NCURSES_WRAP_PREFIX,"$NCURSES_WRAP_PREFIX",[Define to override _nc_ prefix])
1323
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301324AC_MSG_CHECKING(if you want experimental safe-sprintf code)
1325AC_ARG_ENABLE(safe-sprintf,
1326 [ --enable-safe-sprintf compile with experimental safe-sprintf code],
1327 [with_safe_sprintf=$enableval],
1328 [with_safe_sprintf=no])
1329AC_MSG_RESULT($with_safe_sprintf)
Steve Kondikae271bc2015-11-15 02:50:53 +01001330test "x$with_safe_sprintf" = xyes && AC_DEFINE(USE_SAFE_SPRINTF,1,[Define to 1 to compile with experimental safe-sprintf code])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301331
1332### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
1333# when hashmap is used scroll hints are useless
1334if test "$with_hashmap" = no ; then
1335AC_MSG_CHECKING(if you want to experiment without scrolling-hints code)
1336AC_ARG_ENABLE(scroll-hints,
1337 [ --disable-scroll-hints compile without scroll-hints code],
1338 [with_scroll_hints=$enableval],
1339 [with_scroll_hints=yes])
1340AC_MSG_RESULT($with_scroll_hints)
Steve Kondikae271bc2015-11-15 02:50:53 +01001341test "x$with_scroll_hints" = xyes && AC_DEFINE(USE_SCROLL_HINTS,1,[Define to 1 to compile without scroll-hints code])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301342fi
1343
Steve Kondikae271bc2015-11-15 02:50:53 +01001344AC_MSG_CHECKING(if you want wgetch-events code)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301345AC_ARG_ENABLE(wgetch-events,
Steve Kondikae271bc2015-11-15 02:50:53 +01001346 [ --enable-wgetch-events compile with wgetch-events code],
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301347 [with_wgetch_events=$enableval],
1348 [with_wgetch_events=no])
1349AC_MSG_RESULT($with_wgetch_events)
Steve Kondikae271bc2015-11-15 02:50:53 +01001350test "x$with_wgetch_events" = xyes && AC_DEFINE(NCURSES_WGETCH_EVENTS,1,[Define to 1 to compile with wgetch-events code])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301351
1352###############################################################################
1353CF_HELP_MESSAGE(Testing/development Options:)
1354
1355### use option --disable-echo to suppress full display compiling commands
Steve Kondikae271bc2015-11-15 02:50:53 +01001356CF_DISABLE_ECHO
1357if test "x$enable_echo" = xyes; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301358 ECHO_LINK=
1359else
1360 ECHO_LINK='@ echo linking $@ ... ;'
1361 test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
1362 test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
1363fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301364AC_SUBST(ECHO_LINK)
1365
1366### use option --enable-warnings to turn on all gcc warnings
1367AC_MSG_CHECKING(if you want to see compiler warnings)
1368AC_ARG_ENABLE(warnings,
1369 [ --enable-warnings build: turn on GCC compiler warnings],
1370 [with_warnings=$enableval])
1371AC_MSG_RESULT($with_warnings)
1372
1373if test "x$with_warnings" = "xyes"; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001374 CF_ADD_ADAFLAGS(-gnatg)
1375 CF_GCC_WARNINGS(Wno-unknown-pragmas Wswitch-enum)
1376 if test "x$cf_with_cxx" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301377 CF_GXX_WARNINGS(Wno-unused)
1378 fi
1379fi
1380CF_GCC_ATTRIBUTES
Steve Kondikae271bc2015-11-15 02:50:53 +01001381CF_ENABLE_STRING_HACKS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301382
1383### use option --enable-assertions to turn on generation of assertion code
1384AC_MSG_CHECKING(if you want to enable runtime assertions)
1385AC_ARG_ENABLE(assertions,
1386 [ --enable-assertions test: turn on generation of assertion code],
1387 [with_assertions=$enableval],
1388 [with_assertions=no])
1389AC_MSG_RESULT($with_assertions)
1390if test -n "$GCC"
1391then
1392 if test "$with_assertions" = no
1393 then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301394 CPPFLAGS="$CPPFLAGS -DNDEBUG"
1395 else
Steve Kondikae271bc2015-11-15 02:50:53 +01001396 CF_ADD_ADAFLAGS(-gnata)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301397 fi
1398fi
1399
1400### use option --disable-leaks to suppress "permanent" leaks, for testing
1401CF_DISABLE_LEAKS
Steve Kondikae271bc2015-11-15 02:50:53 +01001402AC_DEFINE(HAVE_NC_ALLOC_H,1,[Define to 1 if we have nc_alloc.h header])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301403
1404### use option --enable-expanded to generate certain macros as functions
1405AC_ARG_ENABLE(expanded,
1406 [ --enable-expanded test: generate functions for certain macros],
Steve Kondikae271bc2015-11-15 02:50:53 +01001407 [test "x$enableval" = xyes && AC_DEFINE(NCURSES_EXPANDED,1,[Define to 1 to generate functions for certain macros])])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301408
1409### use option --disable-macros to suppress macros in favor of functions
1410AC_ARG_ENABLE(macros,
1411 [ --disable-macros test: use functions rather than macros],
Steve Kondikae271bc2015-11-15 02:50:53 +01001412 [test "$enableval" = no && AC_DEFINE(NCURSES_NOMACROS,1,[Define to 1 to use functions rather than macros])])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301413
1414# Normally we only add trace() to the debug-library. Allow this to be
1415# extended to all models of the ncurses library:
1416cf_all_traces=no
1417case "$CFLAGS $CPPFLAGS" in
Steve Kondikae271bc2015-11-15 02:50:53 +01001418(*-DTRACE*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301419 cf_all_traces=yes
1420 ;;
1421esac
1422
1423AC_MSG_CHECKING(whether to add trace feature to all models)
1424AC_ARG_WITH(trace,
1425[ --with-trace test: add trace() function to all models of ncurses],
1426[cf_with_trace=$withval],
1427[cf_with_trace=$cf_all_traces])
1428AC_MSG_RESULT($cf_with_trace)
1429
Steve Kondikae271bc2015-11-15 02:50:53 +01001430if test "x$cf_with_trace" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301431 LIB_TRACING=all
1432 ADA_TRACE=TRUE
1433 CF_ADD_CFLAGS(-DTRACE)
1434else
1435 LIB_TRACING=DEBUG
1436 ADA_TRACE=FALSE
1437fi
1438
1439AC_SUBST(ADA_TRACE)
1440
Steve Kondikae271bc2015-11-15 02:50:53 +01001441CF_DISABLE_GNAT_PROJECTS
1442
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301443### Checks for libraries.
Steve Kondikae271bc2015-11-15 02:50:53 +01001444case $cf_cv_system_name in
1445(*mingw32*|*mingw64*)
1446 CPPFLAGS="$CPPFLAGS -DWINVER=0x0501"
1447 LIBS=" -lpsapi $LIBS"
1448 ;;
1449(*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301450AC_CHECK_FUNC(gettimeofday,
Steve Kondikae271bc2015-11-15 02:50:53 +01001451 AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define to 1 if we have gettimeofday function]),[
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301452
1453AC_CHECK_LIB(bsd, gettimeofday,
Steve Kondikae271bc2015-11-15 02:50:53 +01001454 AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define to 1 if we have gettimeofday function])
1455 CF_ADD_LIB(bsd))])dnl CLIX: bzero, select, gettimeofday
1456 ;;
1457esac
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301458
Steve Kondikae271bc2015-11-15 02:50:53 +01001459CF_MATH_LIB(MATH_LIB,pow(sin(x),x))
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301460AC_SUBST(MATH_LIB)
1461
1462### Checks for header files.
1463AC_STDC_HEADERS
1464AC_HEADER_DIRENT
1465AC_HEADER_TIME
1466CF_REGEX
1467
1468dnl These are some other potentially nonportable headers.
1469AC_CHECK_HEADERS( \
1470fcntl.h \
1471getopt.h \
1472limits.h \
1473locale.h \
Steve Kondikae271bc2015-11-15 02:50:53 +01001474math.h \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301475poll.h \
1476sys/bsdtypes.h \
1477sys/ioctl.h \
1478sys/param.h \
1479sys/poll.h \
1480sys/select.h \
1481sys/time.h \
1482sys/times.h \
1483ttyent.h \
1484unistd.h \
1485wctype.h \
1486)
1487
Steve Kondikae271bc2015-11-15 02:50:53 +01001488CF_GETOPT_HEADER
1489
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301490# check for ISC (this may also define _POSIX_SOURCE)
1491# Note: even non-Posix ISC needs <sys/bsdtypes.h> to declare fd_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001492if test "x$ISC" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301493 AC_CHECK_LIB(cposix,main)
Steve Kondikae271bc2015-11-15 02:50:53 +01001494 AC_CHECK_LIB(inet,bzero,CF_ADD_LIB(inet))dnl also 'select()'
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301495fi
1496
1497CF_SYS_TIME_SELECT
1498
1499### checks for compiler characteristics
1500AC_LANG_C
1501AC_C_CONST
1502CF_C_INLINE(NCURSES_INLINE,1200)
1503CF_SIG_ATOMIC_T
1504
1505if test $NCURSES_CHTYPE = auto ; then
1506 CF_TYPEOF_CHTYPE
1507else
1508 cf_cv_typeof_chtype=$NCURSES_CHTYPE
1509fi
1510test "$cf_cv_typeof_chtype" = unsigned && cf_cv_typeof_chtype=""
1511AC_SUBST(cf_cv_typeof_chtype)
1512
1513CF_UNSIGNED_LITERALS
1514cf_cv_1UL="1"
1515test ".$cf_cv_unsigned_literals" = .yes && cf_cv_1UL="${cf_cv_1UL}U"
1516test ".$cf_cv_typeof_chtype" = .long && cf_cv_1UL="${cf_cv_1UL}L"
1517AC_SUBST(cf_cv_1UL)
1518
1519if test $NCURSES_MMASK_T = auto ; then
1520 cf_cv_typeof_mmask_t=long
1521else
1522 cf_cv_typeof_mmask_t=$NCURSES_MMASK_T
1523fi
1524test "$cf_cv_typeof_mmask_t" = unsigned && cf_cv_typeof_mmask_t=""
1525AC_SUBST(cf_cv_typeof_mmask_t)
1526
1527### Checks for external-data
1528CF_ERRNO
1529CF_LINK_DATAONLY
1530
1531### Checks for library functions.
1532AC_CHECK_FUNCS( \
1533getcwd \
1534getegid \
1535geteuid \
Steve Kondikae271bc2015-11-15 02:50:53 +01001536getopt \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301537getttynam \
1538issetugid \
1539poll \
Steve Kondikae271bc2015-11-15 02:50:53 +01001540putenv \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301541remove \
1542select \
1543setbuf \
1544setbuffer \
Steve Kondikae271bc2015-11-15 02:50:53 +01001545setenv \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301546setvbuf \
1547sigaction \
1548sigvec \
1549strdup \
1550strstr \
1551tcgetpgrp \
1552times \
1553vsnprintf \
1554)
Steve Kondikae271bc2015-11-15 02:50:53 +01001555
1556if test "x$ac_cv_func_getopt" = xno &&
1557 test "x$cf_with_progs$cf_with_tests" != xnono; then
1558 AC_MSG_ERROR(getopt is required for building programs)
1559fi
1560
1561if test "x$with_getcap" = "xyes" ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301562 CF_CGETENT
1563fi
1564
1565CF_ISASCII
1566CF_STRUCT_SIGACTION
1567CF_FUNC_NANOSLEEP
1568CF_FUNC_TERMIOS
1569CF_FUNC_VSSCANF
1570CF_MKSTEMP
1571
1572# setup for prototype of fallback for vsscanf()
1573CF_SUBST_IF(["$cf_cv_func_vsscanf" = vsscanf], HAVE_VSSCANF, 1, 0)
1574
1575dnl FIXME (may need this) AC_SYS_RESTARTABLE_SYSCALLS
Steve Kondikae271bc2015-11-15 02:50:53 +01001576if test "x$cross_compiling" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301577 AC_MSG_WARN(cross compiling: assume setvbuf params not reversed)
1578else
1579 AC_FUNC_SETVBUF_REVERSED
1580fi
Steve Kondikae271bc2015-11-15 02:50:53 +01001581AC_CHECK_TYPE(intptr_t, long)
1582AC_CHECK_TYPE(ssize_t, int)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301583CF_TYPE_SIGACTION
1584CF_SIZECHANGE
1585CF_FUNC_MEMMOVE
1586CF_FUNC_POLL
Steve Kondikae271bc2015-11-15 02:50:53 +01001587CF_VA_COPY
1588AC_FUNC_VFORK
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301589
1590# special check for test/ditto.c
1591CF_FUNC_OPENPTY
1592if test "$cf_cv_func_openpty" != no ; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001593 AC_DEFINE_UNQUOTED(USE_OPENPTY_HEADER,<$cf_cv_func_openpty>,[Define to actual header for openpty function])
1594 AC_DEFINE(USE_XTERM_PTY,1,[Define to 1 if we should assume xterm pseudoterminal interface])
1595 if test "x$cf_cv_lib_util" = xyes ; then
1596 CF_ADD_LIB(util,TEST_LIBS)
1597 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301598fi
1599AC_SUBST(TEST_LIBS)
Steve Kondikae271bc2015-11-15 02:50:53 +01001600AC_SUBST(TEST_LIBS2)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301601
1602if test "$with_hashed_db" != no ; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001603 AC_DEFINE(USE_HASHED_DB,1,[Define to 1 if we should build terminfo in hashed database])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301604 CF_HASHED_DB($with_hashed_db)
1605fi
1606
1607dnl We'll do our own -g libraries, unless the user's overridden via $CFLAGS
1608if test -z "$cf_user_CFLAGS" && test "$with_no_leaks" = no ; then
1609 CF_STRIP_G_OPT(CFLAGS)
1610 CF_STRIP_G_OPT(CXXFLAGS)
1611fi
1612
1613# Just in case, check if the C compiler has a bool type.
1614CF_BOOL_DECL(cf_cv_cc_bool_type)
1615
1616# Check for C++ compiler characteristics (and ensure that it's there!)
1617if test -n "$CXX" ; then
1618 AC_LANG_CPLUSPLUS
1619 CF_STDCPP_LIBRARY
1620 CF_PROG_CC_C_O(CXX)
1621
1622 case $GXX_VERSION in
Steve Kondikae271bc2015-11-15 02:50:53 +01001623 (1*|2.[0-6]*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301624 cf_cxx_library=yes
1625 ;;
Steve Kondikae271bc2015-11-15 02:50:53 +01001626 (*-2.7*|2.7*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301627 CF_GPP_LIBRARY
1628 ;;
Steve Kondikae271bc2015-11-15 02:50:53 +01001629 (*)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301630 cf_cxx_library=no
1631 ;;
1632 esac
1633
Steve Kondikae271bc2015-11-15 02:50:53 +01001634 AC_CHECK_HEADERS(typeinfo)
1635 CF_CXX_IOSTREAM_NAMESPACE
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301636 CF_BOOL_DECL
1637 CF_BOOL_SIZE
1638 CF_ETIP_DEFINES
1639 CF_CPP_PARAM_INIT
1640 CF_CPP_STATIC_CAST
Steve Kondikae271bc2015-11-15 02:50:53 +01001641 CF_CXX_AR_FLAGS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301642else
1643 cf_cxx_library=no
1644 cf_cv_builtin_bool=1
1645
1646 # Just because we are not configuring against C++ right now does not
1647 # mean that a user will not want to use C++. Some distributors disable
1648 # the C++ portion of this configuration as a shortcut (or just to avoid
1649 # compiling the demo in the c++ directory). So we need a reasonable
1650 # default for the 'bool' type.
1651 #
1652 # Caveat: since the storage of the bool type is not standardized, it
1653 # may change.
1654
1655 if test "$NCURSES_BOOL" != auto ; then
1656 cf_cv_type_of_bool=$NCURSES_BOOL
1657 cf_cv_header_stdbool_h=0
1658 else
1659 if test "$cf_cv_header_stdbool_h" = 1 ; then
1660 CF_BOOL_SIZE
1661 else
1662 AC_MSG_CHECKING(for fallback type of bool)
Steve Kondikae271bc2015-11-15 02:50:53 +01001663 case "$host_cpu" in
1664 (i?86) cf_cv_type_of_bool=char ;;
1665 (*) cf_cv_type_of_bool=int ;;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301666 esac
1667 AC_MSG_RESULT($cf_cv_type_of_bool)
1668 fi
1669 fi
1670fi
1671AC_SUBST(CXXLIBS)
1672
1673# If the C compiler did not declare bool, and we did not determine that the C++
1674# compiler does not declare bool, turn on an ifdef in curses.h that makes the
1675# ncurses library use the same type as C++ bool. Note that this allows one to
1676# specify the type of bool in a configure-script option and postpone
1677# integration with the C++ compiler provided that the types are compatible.
1678USE_CXX_BOOL=1
1679if test $cf_cv_cc_bool_type = 1
1680then
1681 # oops: C has a bool. Unlikely, but C++ could differ.
1682 USE_CXX_BOOL=0
1683elif test $cf_cv_builtin_bool = 0
1684then
1685 # C++ has no bool
1686 USE_CXX_BOOL=0
1687else
1688 # this is the normal case
1689 USE_CXX_BOOL='defined(__cplusplus)'
1690fi
1691AC_SUBST(USE_CXX_BOOL)
1692
1693CF_HELP_MESSAGE(Ada95 Binding Options:)
1694
1695dnl If the Ada95 source-tree is present, add that to the build unless it will
1696dnl not work, or was not requested.
1697if test -f "${srcdir}/Ada95/Makefile.in" ; then
1698
1699dnl libtool does not know anything about GNAT, though a change made in 1998
1700dnl provided for it "someday". Disable the ada subtree if we are using
1701dnl libtool -TD 20070714
Steve Kondikae271bc2015-11-15 02:50:53 +01001702 if test "$cf_with_ada" != "no" ; then
1703 if test "$with_libtool" != "no"; then
1704 AC_MSG_WARN(libtool does not support Ada - disabling feature)
1705 cf_with_ada=no
1706 fi
1707 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301708
1709dnl Check for availability of GNU Ada Translator (GNAT).
1710dnl At the moment we support no other Ada95 compiler.
Steve Kondikae271bc2015-11-15 02:50:53 +01001711 if test "$cf_with_ada" != "no" ; then
1712 CF_PROG_GNAT
1713 if test "x$cf_cv_prog_gnat_correct" = xyes; then
1714 CF_ADD_ADAFLAGS(-gnatpn)
1715 CF_FIXUP_ADAFLAGS
1716
1717 CF_GNATPREP_OPT_T
1718
1719 CF_GNAT_GENERICS
1720 CF_GNAT_SIGINT
1721 CF_GNAT_PROJECTS
1722
1723 CF_WITH_ADA_COMPILER
1724
1725 cf_ada_package=terminal_interface
1726 AC_SUBST(cf_ada_package)
1727
1728 CF_WITH_ADA_INCLUDE
1729 CF_WITH_ADA_OBJECTS
1730 CF_WITH_ADA_SHAREDLIB
1731 fi
1732 fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301733else
Steve Kondikae271bc2015-11-15 02:50:53 +01001734 cf_with_ada=no
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301735fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301736
Steve Kondikae271bc2015-11-15 02:50:53 +01001737# do this "late" to avoid conflict with header-checks
1738if test "x$with_widec" = xyes ; then
1739 AC_CHECK_SIZEOF(wchar_t)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301740fi
1741
1742### Construct the ncurses library-subsets, if any, from this set of keywords:
1743### none, base, ext_funcs, ext_tinfo, ticlib, termlib, widechar
1744###
1745### ticlib modules may be a separate library, otherwise contained in termlib.
1746### termlib modules may be a separate library, otherwise contained in ncurses.
1747###
1748### The of "+" or " " between the tokens controls the way the script
1749### chooses to split module lists into libraries.
1750###
1751### (see CF_LIB_RULES).
1752AC_MSG_CHECKING(for library subsets)
1753LIB_SUBSETS=
1754
Steve Kondikae271bc2015-11-15 02:50:53 +01001755if test "x$cf_with_progs" = xyes || test "$with_ticlib" != no || test "$with_termcap" != no; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301756 LIB_SUBSETS="${LIB_SUBSETS}ticlib"
1757 if test "$with_ticlib" != no ; then
1758 LIB_SUBSETS="${LIB_SUBSETS} "
1759 else
1760 LIB_SUBSETS="${LIB_SUBSETS}+"
1761 fi
1762fi
1763
1764LIB_SUBSETS="${LIB_SUBSETS}termlib"
Steve Kondikae271bc2015-11-15 02:50:53 +01001765test "x$with_ext_funcs" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+ext_tinfo"
1766
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301767if test "$with_termlib" != no ; then
1768 LIB_SUBSETS="${LIB_SUBSETS} "
1769else
1770 LIB_SUBSETS="${LIB_SUBSETS}+"
1771fi
1772
1773LIB_SUBSETS="${LIB_SUBSETS}base"
Steve Kondikae271bc2015-11-15 02:50:53 +01001774
1775# Most term-driver calls are to tinfo, but some like init_pair are to the
1776# base library (so it resides in base).
1777if test "$with_term_driver" != no ; then
1778 LIB_SUBSETS="${LIB_SUBSETS}+port_drivers"
1779 case $cf_cv_system_name in
1780 (*mingw32*|*mingw64*)
1781 LIB_SUBSETS="${LIB_SUBSETS}+port_tinfo+port_win32con"
1782 CPPFLAGS="$CPPFLAGS -DUSE_WIN32CON_DRIVER"
1783 ;;
1784 (*)
1785 LIB_SUBSETS="${LIB_SUBSETS}+port_tinfo"
1786 ;;
1787 esac
1788fi
1789
1790test "x$with_widec" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+widechar"
1791test "x$with_ext_funcs" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301792
1793AC_MSG_RESULT($LIB_SUBSETS)
1794
1795### Construct the list of include-directories to be generated
1796CF_INCLUDE_DIRS
1797CF_ADA_INCLUDE_DIRS
1798
1799### Build up pieces for makefile rules
1800AC_MSG_CHECKING(default library suffix)
1801CF_LIB_TYPE($DFT_LWR_MODEL,DFT_ARG_SUFFIX)dnl
1802AC_SUBST(DFT_ARG_SUFFIX)dnl the string to append to "-lncurses" ("")
1803AC_MSG_RESULT($DFT_ARG_SUFFIX)
1804
1805AC_MSG_CHECKING(default library-dependency suffix)
1806CF_LIB_SUFFIX($DFT_LWR_MODEL,DFT_LIB_SUFFIX,DFT_DEP_SUFFIX)dnl
1807AC_SUBST(DFT_DEP_SUFFIX)dnl the corresponding library-suffix (".a")
1808AC_MSG_RESULT($DFT_DEP_SUFFIX)
1809
1810AC_MSG_CHECKING(default object directory)
1811CF_OBJ_SUBDIR($DFT_LWR_MODEL,DFT_OBJ_SUBDIR)dnl
1812AC_SUBST(DFT_OBJ_SUBDIR)dnl the default object-directory ("obj")
1813AC_MSG_RESULT($DFT_OBJ_SUBDIR)
1814
Steve Kondikae271bc2015-11-15 02:50:53 +01001815if test "x$cf_with_cxx" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301816AC_MSG_CHECKING(c++ library-dependency suffix)
1817if test "$with_libtool" != "no"; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001818 # libtool thinks it can make c++ shared libraries (perhaps only g++)
1819 CXX_LIB_SUFFIX=$DFT_DEP_SUFFIX
1820elif test "$with_shared_cxx" != "no"; then
1821 # also for g++ users...
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301822 CXX_LIB_SUFFIX=$DFT_DEP_SUFFIX
1823else
Steve Kondikae271bc2015-11-15 02:50:53 +01001824 # we normally make a static library because C/C++ library rules differ
1825 CF_LIB_SUFFIX(normal,CXX_LIB_SUFFIX,CXX_DEP_SUFFIX)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301826fi
1827AC_MSG_RESULT($CXX_LIB_SUFFIX)
1828AC_SUBST(CXX_LIB_SUFFIX)
1829fi
1830
1831# do not want -ldl in build except as needed for -lncurses dependency
Steve Kondikae271bc2015-11-15 02:50:53 +01001832if test "x$with_dlsym" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301833if test $DFT_LWR_MODEL = shared || \
1834 test $DFT_LWR_MODEL = libtool ; then
1835 CF_REMOVE_LIB(LIBS,$LIBS,dl)
1836fi
1837fi
1838### Set up low-level terminfo dependencies for makefiles.
1839
1840# TICS_LIST and TINFO_LIST are needed to build libtic.so and libterm.so, but
1841# do not need libdl
1842TICS_LIST=
Steve Kondikae271bc2015-11-15 02:50:53 +01001843if test "x$with_dlsym" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301844 CF_REMOVE_LIB(TINFO_LIST,$SHLIB_LIST,dl)
1845fi
1846
Steve Kondikae271bc2015-11-15 02:50:53 +01001847USE_ARG_SUFFIX="${DFT_ARG_SUFFIX}${EXTRA_SUFFIX}"
1848USE_LIB_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}"
1849USE_CFG_SUFFIX=${DFT_ARG_SUFFIX}${cf_cv_abi_version}
1850if test -n "$EXTRA_SUFFIX" && test "x$EXTRA_SUFFIX" != "x${cf_cv_abi_version}"
1851then
1852 USE_CFG_SUFFIX="${USE_CFG_SUFFIX}${EXTRA_SUFFIX}"
1853fi
1854AC_SUBST(USE_ARG_SUFFIX)
1855AC_SUBST(USE_CFG_SUFFIX)
1856AC_SUBST(USE_LIB_SUFFIX)
1857
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301858if test "$with_ticlib" != no ; then
1859
Steve Kondikae271bc2015-11-15 02:50:53 +01001860 if test "x$with_ticlib" != xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301861 TICS_NAME=$with_ticlib
Steve Kondikae271bc2015-11-15 02:50:53 +01001862 TICS_ARG_SUFFIX="${with_ticlib}`echo ${USE_ARG_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301863 TICS_DEP_SUFFIX="${with_ticlib}`echo ${DFT_DEP_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1864 TICS_LIB_SUFFIX="${with_ticlib}"
1865 else
Steve Kondikae271bc2015-11-15 02:50:53 +01001866 TICS_ARG_SUFFIX="${TICS_NAME}${USE_ARG_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301867 TICS_DEP_SUFFIX="${TICS_NAME}${DFT_DEP_SUFFIX}"
Steve Kondikae271bc2015-11-15 02:50:53 +01001868 TICS_LIB_SUFFIX="${TICS_NAME}${USE_LIB_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301869 fi
Steve Kondikae271bc2015-11-15 02:50:53 +01001870 TICS_LDFLAGS="-L${LIB_DIR}"
1871 TICS_LIBS="-l${TICS_LIB_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301872else
Steve Kondikae271bc2015-11-15 02:50:53 +01001873 TICS_LDFLAGS="-L${LIB_DIR}"
1874 TICS_LIBS="-l${LIB_NAME}${USE_ARG_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301875fi
1876AC_SUBST(TICS_ARG_SUFFIX)
1877AC_SUBST(TICS_DEP_SUFFIX)
1878AC_SUBST(TICS_LIB_SUFFIX)
Steve Kondikae271bc2015-11-15 02:50:53 +01001879AC_SUBST(TICS_LDFLAGS)
1880AC_SUBST(TICS_LIBS)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301881
1882if test "$with_termlib" != no ; then
1883
Steve Kondikae271bc2015-11-15 02:50:53 +01001884 if test "x$with_termlib" != xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301885 TINFO_NAME=$with_termlib
Steve Kondikae271bc2015-11-15 02:50:53 +01001886 TINFO_SUFFIX="`echo ${DFT_LIB_SUFFIX}|sed -e "s/^${USE_LIB_SUFFIX}//"`"
1887 TINFO_ARG_SUFFIX="${with_termlib}`echo ${USE_ARG_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301888 TINFO_DEP_SUFFIX="${with_termlib}`echo ${DFT_DEP_SUFFIX}|sed -e "s/^${LIB_SUFFIX}//"`"
1889 TINFO_LIB_SUFFIX="${with_termlib}"
1890 else
1891 TINFO_SUFFIX=${DFT_LIB_SUFFIX}
Steve Kondikae271bc2015-11-15 02:50:53 +01001892 TINFO_ARG_SUFFIX="${TINFO_NAME}${USE_ARG_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301893 TINFO_DEP_SUFFIX="${TINFO_NAME}${DFT_DEP_SUFFIX}"
Steve Kondikae271bc2015-11-15 02:50:53 +01001894 TINFO_LIB_SUFFIX="${TINFO_NAME}${USE_LIB_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301895 fi
1896
1897 TEST_DEPS="${LIB_DIR}/${LIB_PREFIX}${TINFO_DEP_SUFFIX}"
1898 TEST_DEP2="${LIB_2ND}/${LIB_PREFIX}${TINFO_DEP_SUFFIX}"
1899 if test "$DFT_LWR_MODEL" = "libtool"; then
1900 TEST_ARGS="${TEST_DEPS}"
1901 TEST_ARG2="${TEST_DEP2}"
Steve Kondikae271bc2015-11-15 02:50:53 +01001902 TINFO_LDFLAGS="-L${LIB_DIR}"
1903 TINFO_LIBS="$TEST_ARGS"
1904 TICS_LIST="$SHLIB_LIST $TEST_ARGS"
1905 SHLIB_LIST="${SHLIB_LIST} $TEST_ARGS"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301906 else
1907 TEST_ARGS="-l${TINFO_ARG_SUFFIX}"
1908 TEST_ARG2="-l${TINFO_ARG_SUFFIX}"
Steve Kondikae271bc2015-11-15 02:50:53 +01001909 if test "x$with_term_driver" != xno ; then
1910 TICS_LIST="$SHLIB_LIST -l${LIB_NAME}${USE_ARG_SUFFIX}"
1911 TICS_LIBS="$TICS_LIBS -l${LIB_NAME}${USE_ARG_SUFFIX}"
1912 TINFO_LIBS="-l${LIB_NAME}${USE_ARG_SUFFIX} $TEST_ARGS"
1913 else
1914 TICS_LIST="$SHLIB_LIST -l${TINFO_LIB_SUFFIX}"
1915 TINFO_LIBS="$TEST_ARGS"
1916 fi
1917 TINFO_LDFLAGS="-L${LIB_DIR}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301918 SHLIB_LIST="$SHLIB_LIST -l${TINFO_LIB_SUFFIX}"
1919 fi
1920else
1921 # the next lines are needed for linking libtic over libncurses
1922 TINFO_NAME=${LIB_NAME}
1923 TINFO_SUFFIX=${DFT_LIB_SUFFIX}
Steve Kondikae271bc2015-11-15 02:50:53 +01001924 TINFO_ARG_SUFFIX=${LIB_NAME}${USE_ARG_SUFFIX}
1925 if test "x$with_tic_depends" = xyes ; then
1926 TICS_LIST="$SHLIB_LIST -l${LIB_NAME}${USE_ARG_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301927 else
1928 TICS_LIST="$SHLIB_LIST"
1929 fi
1930
Steve Kondikae271bc2015-11-15 02:50:53 +01001931 TINFO_LDFLAGS="-L${LIB_DIR}"
1932 TINFO_LIBS="-l${LIB_NAME}${USE_ARG_SUFFIX}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301933fi
1934
1935if test "$DFT_LWR_MODEL" = shared ; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001936 case $cf_cv_system_name in
1937 (cygwin*|msys*)
1938 # "lib" files have ".dll.a" suffix, "cyg"or "msys-" files have ".dll"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301939 TINFO_SUFFIX=.dll
1940 ;;
1941 esac
1942fi
1943
1944AC_SUBST(TINFO_ARG_SUFFIX)
1945AC_SUBST(TINFO_DEP_SUFFIX)
1946AC_SUBST(TINFO_LIB_SUFFIX)
Steve Kondikae271bc2015-11-15 02:50:53 +01001947AC_SUBST(TINFO_LDFLAGS)
1948AC_SUBST(TINFO_LIBS)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301949
Steve Kondikae271bc2015-11-15 02:50:53 +01001950if test "x$with_dlsym" = xyes ; then
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301951 CF_REMOVE_LIB(TICS_LIST,$TICS_LIST,dl)
1952fi
1953
1954if test "$DFT_LWR_MODEL" = "libtool"; then
Steve Kondikae271bc2015-11-15 02:50:53 +01001955 OBJEXT=lo
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301956fi
1957
1958# needed for Ada95
Steve Kondikae271bc2015-11-15 02:50:53 +01001959TINFO_LDFLAGS2=`echo "$TINFO_LDFLAGS" | sed -e 's,-L\.\./,-L../../,'`
1960AC_SUBST(TINFO_LDFLAGS2)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301961
1962case $DFT_LWR_MODEL in
Steve Kondikae271bc2015-11-15 02:50:53 +01001963(normal|debug|profile)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301964 CF_LDFLAGS_STATIC
1965 ;;
1966esac
1967
1968AC_MSG_CHECKING(where we will install curses.h)
Steve Kondikae271bc2015-11-15 02:50:53 +01001969AC_SUBST(includesubdir)
1970includesubdir=
1971if test "$with_overwrite" = no && \
1972 ( test "x$includedir" = 'x${prefix}/include' || \
1973 test "x$includedir" = "x${prefix}/include" )
1974then
1975 includesubdir="/ncurses${USE_LIB_SUFFIX}"
1976fi
1977AC_MSG_RESULT(${includedir}${includesubdir})
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301978
1979### Resolve a conflict between normal and wide-curses by forcing applications
1980### that will need libutf8 to add it to their configure script.
1981if test "$with_overwrite" != no ; then
1982if test "$NCURSES_LIBUTF8" = 1 ; then
1983 NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)'
1984 AC_MSG_WARN(Wide-character applications must define HAVE_LIBUTF8_H to include curses.h)
1985fi
1986fi
Steve Kondikae271bc2015-11-15 02:50:53 +01001987WITH_OVERWRITE=$with_overwrite
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301988
1989AC_SUBST(WITH_OVERWRITE)
1990AC_SUBST(TICS_LIST)
1991AC_SUBST(TINFO_LIST)
1992AC_SUBST(SHLIB_LIST)
1993
1994# used to separate tack out of the tree
1995NCURSES_TREE=
1996AC_SUBST(NCURSES_TREE)
1997
1998### predefined stuff for the test programs
Steve Kondikae271bc2015-11-15 02:50:53 +01001999AC_DEFINE(HAVE_SLK_COLOR,1,[Define to 1 if we have slk_color for test-programs])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302000
2001### Construct the list of subdirectories for which we'll customize makefiles
2002### with the appropriate compile-rules.
2003
2004CF_SRC_MODULES($modules_to_build)
2005
Steve Kondikae271bc2015-11-15 02:50:53 +01002006if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = "xyes"; then
2007 SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${USE_CFG_SUFFIX}-config:Ada95/gen/adacurses-config.in"
2008 SUB_MAKEFILES="$SUB_MAKEFILES man/adacurses${USE_CFG_SUFFIX}-config.1:man/MKada_config.in"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302009fi
2010
2011CF_DIRS_TO_MAKE
2012
Steve Kondikae271bc2015-11-15 02:50:53 +01002013# symbols that differ when compiling Ada95 by itself.
2014NCURSES_SHLIB2=$SHELL' $(top_srcdir)/misc/shlib'
2015AC_SUBST(NCURSES_SHLIB2)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302016
Steve Kondikae271bc2015-11-15 02:50:53 +01002017# values to use as strings
2018AC_DEFINE_UNQUOTED(NCURSES_PATHSEP,'$PATH_SEPARATOR',[Define to override ':' as library path-separator])
2019
2020AC_DEFINE_UNQUOTED(NCURSES_VERSION_STRING, "${NCURSES_MAJOR}.${NCURSES_MINOR}.${NCURSES_PATCH}",[Define to 1 if machine has ample memory for tic])
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302021
2022### Now that we're done running tests, add the compiler-warnings, if any
2023CF_ADD_CFLAGS($EXTRA_CFLAGS)
2024
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302025### Define substitutions for header files to avoid name-pollution
Steve Kondikae271bc2015-11-15 02:50:53 +01002026CF_SUBST_IF(["x$cf_cv_have_tcgetattr" = xyes], HAVE_TCGETATTR, 1, 0)
2027CF_SUBST_IF(["x$ac_cv_header_stdint_h" = xyes], HAVE_STDINT_H, 1, 0)
2028CF_SUBST_IF(["x$ac_cv_header_termio_h" = xyes], HAVE_TERMIO_H, 1, 0)
2029CF_SUBST_IF(["x$ac_cv_header_termios_h" = xyes], HAVE_TERMIOS_H, 1, 0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302030
2031################################################################################
Steve Kondikae271bc2015-11-15 02:50:53 +01002032test "x$use_database" = xyes && \
2033SUB_MAKEFILES="$SUB_MAKEFILES misc/run_tic.sh:misc/run_tic.in"
2034
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302035SUB_MAKEFILES="$SUB_MAKEFILES misc/ncurses-config:misc/ncurses-config.in"
Steve Kondikae271bc2015-11-15 02:50:53 +01002036SUB_MAKEFILES="$SUB_MAKEFILES man/ncurses${USE_CFG_SUFFIX}-config.1:man/MKncu_config.in"
2037
2038if test "x$enable_pc_files" = xyes ; then \
2039SUB_MAKEFILES="$SUB_MAKEFILES misc/gen-pkgconfig:misc/gen-pkgconfig.in"
2040MAKE_PC_FILES=
2041else
2042MAKE_PC_FILES="#"
2043fi
2044AC_SUBST(MAKE_PC_FILES)
2045AC_SUBST(cross_compiling)
2046
2047AC_PATH_PROG(TIC_PATH,tic,unknown,$PATH:/usr/local/ncurses/bin)
2048if test -n "$FALLBACK_LIST"
2049then
2050 if test "$TIC_PATH" = unknown
2051 then
2052 AC_MSG_WARN(no tic program found for fallbacks)
2053 fi
2054fi
2055AC_SUBST(TIC_PATH)
2056
2057if test "x$cf_with_tests" != xno ; then
2058 MAKE_TESTS=
2059else
2060 MAKE_TESTS="#"
2061fi
2062AC_SUBST(MAKE_TESTS)
2063
2064ADAHTML_DIR=../../doc/html/ada
2065AC_SUBST(ADAHTML_DIR)
2066
2067# these could be configurable, but are not currently
2068PANEL_NAME=panel
2069MENU_NAME=menu
2070FORM_NAME=form
2071CXX_NAME=ncurses++
2072
2073AC_SUBST(PANEL_NAME)
2074AC_SUBST(MENU_NAME)
2075AC_SUBST(FORM_NAME)
2076AC_SUBST(CXX_NAME)
2077
2078# workaround for g++ versus Solaris (20131116)
2079case $cf_cv_system_name in
2080(solaris2*)
2081 case "x$CPPFLAGS" in
2082 (*-D_XOPEN_SOURCE_EXTENDED*)
2083 CF_VERBOSE(moving _XOPEN_SOURCE_EXTENDED to work around g++ problem)
2084 CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED"
2085 CPPFLAGS=`echo "x$CPPFLAGS" | sed -e 's/^.//' -e 's/-D_XOPEN_SOURCE_EXTENDED//'`
2086 ;;
2087 esac
2088 ;;
2089esac
2090
2091# Help to automatically enable the extended curses features when using either
2092# the *-config or the ".pc" files by adding defines.
2093AC_MSG_CHECKING(for defines to add to ncurses${USE_CFG_SUFFIX}-config script)
2094PKG_CFLAGS=
2095for cf_loop1 in $CPPFLAGS_after_XOPEN
2096do
2097 cf_found=no
2098 for cf_loop2 in $CPPFLAGS_before_XOPEN
2099 do
2100 if test "x$cf_loop1" = "x$cf_loop2"
2101 then
2102 cf_found=yes
2103 break
2104 fi
2105 done
2106 test "$cf_found" = no && PKG_CFLAGS="$PKG_CFLAGS $cf_loop1"
2107done
2108AC_MSG_RESULT($PKG_CFLAGS)
2109AC_SUBST(PKG_CFLAGS)
2110
2111# AC_CHECK_SIZEOF demands a literal parameter, no variables. So we do this.
2112case "x$NCURSES_OSPEED" in
2113(*short*)
2114 cf_compatible=1
2115 ;;
2116(*)
2117 cf_compatible=0
2118 ;;
2119esac
2120AC_DEFINE_UNQUOTED(NCURSES_OSPEED_COMPAT,$cf_compatible,[Define to 1 if termcap variable ospeed is short])
2121
2122case "x$cf_cv_typeof_chtype" in
2123(xshort|xint|xlong)
2124 cf_cv_typeof_chtype="unsigned $cf_cv_typeof_chtype"
2125 ;;
2126esac
2127
2128case "x$cf_cv_typeof_mmask_t" in
2129(xshort|xint|xlong)
2130 cf_cv_typeof_mmask_t="unsigned $cf_cv_typeof_mmask_t"
2131 ;;
2132esac
2133
2134# substitute into misc/Makefile to suppress
2135# (un)install.data from the
2136# (un)install rules.
2137if test "x$cf_with_db_install" = "xno"; then
2138 MISC_INSTALL_DATA=
2139 MISC_UNINSTALL_DATA=
2140else
2141 MISC_INSTALL_DATA=install.data
2142 MISC_UNINSTALL_DATA=uninstall.data
2143fi
2144AC_SUBST(MISC_INSTALL_DATA)
2145AC_SUBST(MISC_UNINSTALL_DATA)
2146
2147SUB_SCRIPTS=
2148
2149dnl Override the package used for exported symbols
2150if test -n "$PACKAGE"
2151then
2152 PACKAGE="${PACKAGE}${DFT_ARG_SUFFIX}"
2153 export PACKAGE
2154 echo "package: $PACKAGE"
2155fi
2156
2157UNALTERED_SYMS=
2158cf_filter_syms=no
2159
2160if test -n "$RESULTING_SYMS"
2161then
2162 cf_filter_syms=$cf_dft_filter_syms
2163 CF_VERBOSE(will map symbols to ABI=$cf_cv_abi_version)
2164fi
2165
2166if test "x$WILDCARD_SYMS" = xno
2167then
2168 cf_filter_syms=yes
2169fi
2170
2171UNALTERED_SYMS=`echo "$RESULTING_SYMS" | sed -e 's/\\$/\\\\$/g'`
2172if test $cf_filter_syms = yes
2173then
2174 RESULTING_SYMS=resulting.map
2175fi
2176AC_SUBST(UNALTERED_SYMS)
2177
2178if test "x$cross_compiling" = xyes ; then
2179 ADAGEN_LDFLAGS='$(CROSS_LDFLAGS)'
2180else
2181 ADAGEN_LDFLAGS='$(NATIVE_LDFLAGS)'
2182fi
2183AC_SUBST(ADAGEN_LDFLAGS)
2184
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302185AC_OUTPUT( \
2186 include/MKterm.h.awk \
2187 include/curses.head:include/curses.h.in \
Steve Kondikae271bc2015-11-15 02:50:53 +01002188 include/ncurses_dll.h \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302189 include/termcap.h \
2190 include/unctrl.h \
Steve Kondikae271bc2015-11-15 02:50:53 +01002191 $SUB_SCRIPTS \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302192 $SUB_MAKEFILES \
2193 Makefile,[
Steve Kondikae271bc2015-11-15 02:50:53 +01002194if test "x$cf_with_tests" != xno ; then
2195 CF_PRG_RULES([$srcdir/test/mk-test.awk INSTALL=no ECHO_LINK="$ECHO_LD"], test)
2196fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302197CF_LIB_RULES($SRC_SUBDIRS)
Steve Kondikae271bc2015-11-15 02:50:53 +01002198
2199if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = "xyes"; then
2200if test -z "$USE_OLD_MAKERULES" ; then
2201 $AWK -f $srcdir/Ada95/mk-1st.awk <$srcdir/Ada95/src/modules >>Ada95/src/Makefile
2202fi
2203fi
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302204],[
2205### Special initialization commands, used to pass information from the
2206### configuration-run into config.status
2207
2208AWK="$AWK"
Steve Kondikae271bc2015-11-15 02:50:53 +01002209ALTERNATE_SYMS="$ALTERNATE_SYMS"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302210DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX"
2211DFT_LWR_MODEL="$DFT_LWR_MODEL"
Steve Kondikae271bc2015-11-15 02:50:53 +01002212ECHO_LD="$ECHO_LD"
2213EXTRA_SUFFIX="$EXTRA_SUFFIX"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302214LDCONFIG="$LDCONFIG"
Steve Kondikae271bc2015-11-15 02:50:53 +01002215LIBTOOL_VERSION="$LIBTOOL_VERSION"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302216LIB_NAME="$LIB_NAME"
Steve Kondikae271bc2015-11-15 02:50:53 +01002217LIB_PREFIX="$LIB_PREFIX"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302218LIB_SUBSETS="$LIB_SUBSETS"
2219LIB_SUFFIX="$LIB_SUFFIX"
2220LIB_TRACING="$LIB_TRACING"
Steve Kondikae271bc2015-11-15 02:50:53 +01002221LN_S="$LN_S"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302222MAKE_TERMINFO="$MAKE_TERMINFO"
2223NCURSES_MAJOR="$NCURSES_MAJOR"
2224NCURSES_MINOR="$NCURSES_MINOR"
2225NCURSES_OSPEED="$NCURSES_OSPEED"
2226NCURSES_PATCH="$NCURSES_PATCH"
2227SRC_SUBDIRS="$SRC_SUBDIRS"
2228TERMINFO="$TERMINFO"
Steve Kondikae271bc2015-11-15 02:50:53 +01002229TICS_ARG_SUFFIX="$TICS_ARG_SUFFIX"
2230TICS_LIB_SUFFIX="$TICS_LIB_SUFFIX"
2231TICS_NAME="$TICS_NAME"
2232TIC_PATH="$TIC_PATH"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302233TINFO_ARG_SUFFIX="$TINFO_ARG_SUFFIX"
2234TINFO_LIB_SUFFIX="$TINFO_LIB_SUFFIX"
2235TINFO_NAME="$TINFO_NAME"
2236TINFO_SUFFIX="$TINFO_SUFFIX"
Steve Kondikae271bc2015-11-15 02:50:53 +01002237UNALTERED_SYMS="$UNALTERED_SYMS"
2238USE_ARG_SUFFIX="$USE_ARG_SUFFIX"
2239USE_CFG_SUFFIX="$USE_CFG_SUFFIX"
2240USE_LIB_SUFFIX="$USE_LIB_SUFFIX"
2241USE_OLD_MAKERULES="$USE_OLD_MAKERULES"
2242WILDCARD_SYMS="$WILDCARD_SYMS"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302243WITH_CURSES_H="$with_curses_h"
Steve Kondikae271bc2015-11-15 02:50:53 +01002244WITH_ECHO="${enable_echo:=yes}"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302245WITH_OVERWRITE="$with_overwrite"
2246cf_LIST_MODELS="$cf_list_models"
2247cf_cv_abi_version="$cf_cv_abi_version"
2248cf_cv_do_relink="$cf_cv_do_relink"
2249cf_cv_do_symlinks="$cf_cv_do_symlinks"
2250cf_cv_enable_lp64="$cf_cv_enable_lp64"
2251cf_cv_enable_opaque="$cf_cv_enable_opaque"
2252cf_cv_prog_CC_c_o=$cf_cv_prog_CC_c_o
2253cf_cv_prog_CXX_c_o=$cf_cv_prog_CXX_c_o
Steve Kondikae271bc2015-11-15 02:50:53 +01002254cf_cv_prog_gnat_correct=$cf_cv_prog_gnat_correct
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302255cf_cv_rel_version="$cf_cv_rel_version"
2256cf_cv_rm_so_locs="$cf_cv_rm_so_locs"
2257cf_cv_shared_soname='$cf_cv_shared_soname'
2258cf_cv_shlib_version="$cf_cv_shlib_version"
2259cf_cv_shlib_version_infix="$cf_cv_shlib_version_infix"
2260cf_cv_system_name="$cf_cv_system_name"
Steve Kondikae271bc2015-11-15 02:50:53 +01002261cf_cv_term_driver="$with_term_driver"
2262cf_with_ada="$cf_with_ada"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302263cf_with_cxx_binding="$cf_with_cxx_binding"
Steve Kondikae271bc2015-11-15 02:50:53 +01002264cf_with_db_install="$cf_with_db_install"
2265cf_with_manpages="$cf_with_manpages"
2266cf_with_tests="$cf_with_tests"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302267host="$host"
2268target="$target"
Steve Kondikae271bc2015-11-15 02:50:53 +01002269with_shared_cxx="$with_shared_cxx"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302270
2271],cat)dnl
Steve Kondikae271bc2015-11-15 02:50:53 +01002272${MAKE:-make} preinstall