]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/configure.in
ncurses 6.1 - patch 20181117
[ncurses.git] / test / configure.in
1 dnl***************************************************************************
2 dnl Copyright (c) 1998-2017,2018 Free Software Foundation, Inc.              *
3 dnl                                                                          *
4 dnl Permission is hereby granted, free of charge, to any person obtaining a  *
5 dnl copy of this software and associated documentation files (the            *
6 dnl "Software"), to deal in the Software without restriction, including      *
7 dnl without limitation the rights to use, copy, modify, merge, publish,      *
8 dnl distribute, distribute with modifications, sublicense, and/or sell       *
9 dnl copies of the Software, and to permit persons to whom the Software is    *
10 dnl furnished to do so, subject to the following conditions:                 *
11 dnl                                                                          *
12 dnl The above copyright notice and this permission notice shall be included  *
13 dnl in all copies or substantial portions of the Software.                   *
14 dnl                                                                          *
15 dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 dnl IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 dnl DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 dnl OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 dnl THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 dnl                                                                          *
23 dnl Except as contained in this notice, the name(s) of the above copyright   *
24 dnl holders shall not be used in advertising or otherwise to promote the     *
25 dnl sale, use or other dealings in this Software without prior written       *
26 dnl authorization.                                                           *
27 dnl***************************************************************************
28 dnl
29 dnl Author: Thomas E. Dickey 1996-on
30 dnl
31 dnl $Id: configure.in,v 1.150 2018/06/17 01:22:00 tom Exp $
32 dnl This is a simple configuration-script for the ncurses test programs that
33 dnl allows the test-directory to be separately configured against a reference
34 dnl system (i.e., sysvr4 curses)
35 dnl
36 dnl If you're configuring ncurses, you shouldn't need to use this script.
37 dnl It's only for testing purposes.
38 dnl
39 dnl For additional information, see
40 dnl             https://invisible-island.net/autoconf/
41 dnl             https://invisible-island.net/ncurses/ncurses-examples.html
42 dnl ---------------------------------------------------------------------------
43 AC_PREREQ(2.52.20170501)
44 AC_INIT(ncurses.c)
45 AC_CONFIG_HEADER(ncurses_cfg.h:ncurses_tst.hin)
46
47 CF_INHERIT_SCRIPT(config.guess)
48 CF_INHERIT_SCRIPT(config.sub)
49 CF_CHECK_CACHE
50
51 AC_ARG_PROGRAM
52
53 CF_HELP_MESSAGE(General Options:)
54
55 AC_PROG_MAKE_SET
56 CF_PROG_CC
57 AC_C_INLINE
58 AC_PROG_CPP
59 AC_PROG_AWK
60 CF_PROG_INSTALL
61 CF_INSTALL_OPTS
62 CF_PROG_LINT
63 CF_MAKE_TAGS
64
65 CF_MATH_LIB(MATH_LIB,pow(sin(x),x))
66 AC_SUBST(MATH_LIB)
67
68 dnl Things that we don't need (or must override) if we're not building ncurses
69 CF_TOP_BUILDDIR
70 CC_G_OPT="-g"                                   AC_SUBST(CC_G_OPT)
71 CC_SHARED_OPTS=unknown                  AC_SUBST(CC_SHARED_OPTS)
72 CPPFLAGS="$CPPFLAGS"                    AC_SUBST(CPPFLAGS)
73 DFT_DEP_SUFFIX=""                               AC_SUBST(DFT_DEP_SUFFIX)
74 DFT_OBJ_SUBDIR=`pwd|sed -e's:.*/::'`    AC_SUBST(DFT_OBJ_SUBDIR)
75 DFT_UPR_MODEL="NORMAL"                  AC_SUBST(DFT_UPR_MODEL)
76 LD="ld"                                                 AC_SUBST(LD)
77 LDFLAGS_SHARED=""                               AC_SUBST(LDFLAGS_SHARED)
78 LDFLAGS_STATIC=""                               AC_SUBST(LDFLAGS_STATIC)
79 LD_MODEL=""                                             AC_SUBST(LD_MODEL)
80 LD_SHARED_OPTS=""                               AC_SUBST(LD_SHARED_OPTS)
81 LIBTOOL=""                                              AC_SUBST(LIBTOOL)
82 LIBTOOL_OPTS=""                                 AC_SUBST(LIBTOOL_OPTS)
83 LIB_CLEAN=""                                    AC_SUBST(LIB_CLEAN)
84 LIB_COMPILE=""                                  AC_SUBST(LIB_COMPILE)
85 LIB_LINK='${CC}'                                AC_SUBST(LIB_LINK)
86 LINK_TESTS=""                                   AC_SUBST(LINK_TESTS)
87 LOCAL_LDFLAGS=""                                AC_SUBST(LOCAL_LDFLAGS)
88 PACKAGE="ncurses-examples"              AC_SUBST(PACKAGE)
89 PTHREAD="-lm"                                   AC_SUBST(PTHREAD)
90 TEST_ARGS=""                                    AC_SUBST(TEST_ARGS)
91 TEST_DEPS=""                                    AC_SUBST(TEST_DEPS)
92 TEST_LIBS=""                                    AC_SUBST(TEST_LIBS)
93 TINFO_LDFLAGS=''                                AC_SUBST(TINFO_LDFLAGS)
94 TINFO_LIBS='$(LIBS_CURSES)'             AC_SUBST(TINFO_LIBS)
95 cf_cv_abi_version=""                    AC_SUBST(cf_cv_abi_version)
96 cf_cv_rel_version=""                    AC_SUBST(cf_cv_rel_version)
97 includesubdir=""                                AC_SUBST(includesubdir)
98
99 cf_cv_screen=curses
100 cf_cv_libtype=
101
102 AC_EXEEXT
103 AC_OBJEXT
104
105 CF_GCC_ATTRIBUTES
106 CF_ENABLE_STRING_HACKS
107 CF_XOPEN_SOURCE(600)
108 CF_SIG_ATOMIC_T
109
110 # Work around breakage on OS X
111 CF_SIGWINCH
112
113 # Checks for CODESET support.
114 AM_LANGINFO_CODESET
115
116 dnl ---------------------------------------------------------------------------
117 CF_PKG_CONFIG
118 CF_DISABLE_ECHO
119
120 dnl ---------------------------------------------------------------------------
121 CF_HELP_MESSAGE(Curses Version-dependent Options:)
122 CF_NCURSES_WRAP_PREFIX
123
124 AC_MSG_CHECKING(if you want to check for wide-character functions)
125 CF_ARG_DISABLE(widec,
126         [  --disable-widec         disable checks for wide-character functions],
127         cf_enable_widec=no,
128         cf_enable_widec=yes,
129         yes)
130 AC_MSG_RESULT($cf_enable_widec)
131
132 dnl ---------------------------------------------------------------------------
133 CF_HELP_MESSAGE(Curses Version-dependent Options:)
134 CF_WITH_NCURSES_ETC
135
136 case $cf_cv_screen in
137 (ncurses*)
138         cf_cv_libtype=`echo "$cf_cv_screen" | sed -e 's/^ncurses//'`
139         ;;
140 esac
141
142 CF_WITH_X11_RGB
143
144 dnl If we've not specified a library, assume we're using sysvr4 libraries
145 dnl installed conventionally (e.g., SunOS 5.x - solaris).
146
147 dnl Autoconf builds up the $LIBS in reverse order
148
149 cf_curses_headers=
150
151 case $cf_cv_screen in
152 (pdcurses)
153         cf_default_panel=no
154         cf_default_form=no
155         cf_default_menu=no
156         cf_default_tinfo=no
157         ;;
158 (xcurses|bsdcurses)
159         cf_default_panel=no
160         cf_default_form=no
161         cf_default_menu=no
162         cf_default_tinfo=yes
163         ;;
164 (*)
165         cf_default_panel=yes
166         cf_default_form=yes
167         cf_default_menu=yes
168         cf_default_tinfo=yes
169         case $cf_cv_screen in
170         (ncurses*)
171                 cf_curses_headers="nc_alloc.h nomacros.h term_entry.h"
172                 ;;
173         esac
174         ;;
175 esac
176
177 AC_MSG_CHECKING(if you want to check for panel functions)
178 CF_ARG_DISABLE(panel,
179         [  --disable-panel         disable checks for panel functions],
180         cf_enable_panel=no,
181         cf_enable_panel=$cf_default_panel,
182         yes)
183 AC_MSG_RESULT($cf_enable_panel)
184 if test $cf_enable_panel = yes
185 then
186         CF_CHECK_CURSES_LIB(panel,$cf_cv_libtype,new_panel,0)
187         cf_curses_headers="$cf_curses_headers panel.h"
188 fi
189
190 AC_MSG_CHECKING(if you want to check for menu functions)
191 CF_ARG_DISABLE(menu,
192         [  --disable-menu          disable checks for menu functions],
193         cf_enable_menu=no,
194         cf_enable_menu=$cf_default_menu,
195         yes)
196 AC_MSG_RESULT($cf_enable_menu)
197 if test $cf_enable_menu = yes
198 then
199         case $cf_cv_screen in
200         (ncurses*)
201                 ;;
202         (curses*)
203                 CF_NETBSD_MENU_H
204                 ;;
205         esac
206         CF_CHECK_CURSES_LIB(menu,$cf_cv_libtype,menu_driver,[0,0])
207         cf_curses_headers="$cf_curses_headers menu.h"
208 fi
209
210 AC_MSG_CHECKING(if you want to check for form functions)
211 CF_ARG_DISABLE(form,
212         [  --disable-form          disable checks for form functions],
213         cf_enable_form=no,
214         cf_enable_form=$cf_default_form,
215         yes)
216 AC_MSG_RESULT($cf_enable_form)
217 if test $cf_enable_form = yes
218 then
219         case $cf_cv_screen in
220         (ncurses*)
221                 ;;
222         (curses*)
223                 CF_NETBSD_FORM_H
224                 ;;
225         esac
226         CF_CHECK_CURSES_LIB(form,$cf_cv_libtype,form_driver,[0,0])
227         cf_curses_headers="$cf_curses_headers form.h"
228 fi
229
230 # look for curses-related headers
231 AC_CHECK_HEADERS( $cf_curses_headers )
232
233 AC_STDC_HEADERS
234 AC_HEADER_TIME
235 AC_CHECK_HEADERS( \
236 getopt.h \
237 locale.h \
238 math.h \
239 stdarg.h \
240 stdint.h \
241 sys/ioctl.h \
242 sys/select.h \
243 sys/time.h \
244 termios.h \
245 unistd.h \
246 )
247
248 CF_GETOPT_HEADER
249
250 AC_CHECK_FUNCS( \
251 getopt \
252 gettimeofday \
253 tdestroy \
254 tsearch \
255 )
256
257 # use a compile-check to work with ncurses*-config and subdirectory includes
258 AC_CACHE_CHECK(if we can use termcap.h,cf_cv_have_termcap_h,[
259         AC_TRY_COMPILE([
260 #include <curses.h>
261 #include <termcap.h>
262 ],
263         [return 0;],
264         [cf_cv_have_termcap_h=yes],
265         [cf_cv_have_termcap_h=no])])
266 test "x$cf_cv_have_termcap_h" = xyes && AC_DEFINE(HAVE_TERMCAP_H)
267
268 if test "x$ac_cv_func_getopt" = xno; then
269         AC_MSG_ERROR(getopt is required for building programs)
270 fi
271
272 if test "$cf_enable_widec" = yes; then
273 AC_CHECK_FUNCS( \
274 mblen \
275 mbrlen \
276 mbrtowc \
277 mbsrtowcs \
278 mbstowcs \
279 mbtowc \
280 wcsrtombs \
281 wcstombs \
282 )
283 fi
284
285 CF_CURSES_FUNCS( \
286 alloc_pair \
287 assume_default_colors \
288 chgat \
289 color_content \
290 color_set \
291 copywin \
292 delscreen \
293 dupwin \
294 filter \
295 getbegx \
296 getcurx \
297 getmaxx \
298 getnstr \
299 getparx \
300 getwin \
301 halfdelay \
302 init_extended_color \
303 mvderwin \
304 mvvline \
305 mvwin \
306 mvwvline \
307 napms \
308 newpad \
309 putwin \
310 reset_color_pairs \
311 resize_term \
312 resizeterm \
313 restartterm \
314 ripoffline \
315 scr_dump \
316 setupterm \
317 slk_color \
318 slk_init \
319 termattrs \
320 tgetent \
321 tigetnum \
322 tigetstr \
323 tputs_sp \
324 typeahead \
325 use_default_colors \
326 use_env \
327 use_extended_names \
328 use_screen \
329 use_window \
330 vid_puts \
331 vidputs \
332 vsscanf \
333 vw_printw \
334 wchgat \
335 winsdelln \
336 winsstr \
337 wresize \
338 wsyncdown \
339 _tracef \
340 )
341
342 CF_TPUTS_PROTO
343 CF_NCURSES_EXT_FUNCS
344
345 if test "$cf_enable_widec" = yes
346 then
347         # workaround for systems with ncurses before 20111029, due to change of
348         # feature test macro from _XPG5 to _XOPEN_SOURCE
349         if test -n "$cf_cv_ncurses_version" && test "x$cf_cv_ncurses_version" != xno
350         then
351                 cf_define_xpg5=no
352                 AC_MSG_CHECKING(if _XPG5 should be defined to enable wide-characters)
353
354                 AC_TRY_COMPILE([
355 #include <${cf_cv_ncurses_header:-curses.h}>],
356                         [int x = _XPG5],,
357                         [cf_save_cppflags="$CPPFLAGS"
358                          CPPFLAGS="$CPPFLAGS -D_XPG5"
359                          AC_TRY_COMPILE([
360 #include <${cf_cv_ncurses_header:-curses.h}>],
361                                 [int x = _XPG5],
362                                 [cf_define_xpg5=yes])
363                          CPPFLAGS="$cf_save_cppflags"])
364                 AC_MSG_RESULT($cf_define_xpg5)
365
366                 if test "$cf_define_xpg5" = yes
367                 then
368                         CPPFLAGS="$CPPFLAGS -D_XPG5"
369                 fi
370         fi
371
372         AC_CACHE_CHECK(for wide-character functions,cf_cv_widechar_funcs,[
373         AC_TRY_LINK([
374 #include <${cf_cv_ncurses_header:-curses.h}>],
375         [
376                 static wchar_t src_wchar[2];
377                 static cchar_t dst_cchar;
378                 setcchar(&dst_cchar, src_wchar, A_NORMAL, 0, (void *) 0);
379                 ],
380                 [cf_cv_widechar_funcs=yes],
381                 [cf_cv_widechar_funcs=no])
382         ])
383         if test "$cf_cv_widechar_funcs" != no ; then
384                 AC_DEFINE(USE_WIDEC_SUPPORT,1,[Define to 1 to enable wide-character support in (n)curses])
385         else
386                 AC_DEFINE(USE_WIDEC_SUPPORT,0)
387         fi
388 else
389         AC_DEFINE(USE_WIDEC_SUPPORT,0)
390 fi
391
392 AC_CACHE_CHECK(if $cf_cv_screen library uses pthreads,cf_cv_use_pthreads,[
393 AC_TRY_LINK([
394 #include <${cf_cv_ncurses_header:-curses.h}>
395 extern void _nc_init_pthreads(void);
396 ],
397 [
398         initscr();
399         _nc_init_pthreads();
400         ],
401         [cf_cv_use_pthreads=yes],
402         [cf_cv_use_pthreads=no])
403 ])
404 test $cf_cv_use_pthreads = yes && AC_DEFINE(USE_PTHREADS)
405
406 CF_SYS_TIME_SELECT
407
408 # special check for test/ditto.c
409 CF_FUNC_OPENPTY
410 if test "$cf_cv_func_openpty" != no ; then
411         AC_DEFINE_UNQUOTED(USE_OPENPTY_HEADER,<$cf_cv_func_openpty>,[Define to actual header for openpty function])
412         AC_DEFINE(USE_XTERM_PTY,1,[Define to 1 if we should assume xterm pseudoterminal interface])
413         if test "x$cf_cv_lib_util" = xyes ; then
414                 CF_ADD_LIB(util,TEST_LIBS)
415         fi
416 fi
417
418 CF_FUNC_CURSES_VERSION
419
420 CF_CURSES_ACS_MAP
421 if test "$cf_enable_widec" = yes; then
422         CF_CURSES_WACS_MAP
423         CF_CURSES_WACS_SYMBOLS
424 fi
425
426 CF_CURSES_CHECK_TYPE(attr_t,long)
427
428 if test "$cf_enable_widec" = yes; then
429         CF_WCHAR_TYPE(mbstate_t, NCURSES_MBSTATE_T, NCURSES_OK_MBSTATE_T)
430         CF_WCHAR_TYPE(wchar_t,   NCURSES_WCHAR_T,   NCURSES_OK_WCHAR_T)
431         CF_WCHAR_TYPE(wint_t,    NCURSES_WINT_T,    NCURSES_OK_WINT_T)
432
433         if test "$NCURSES_OK_MBSTATE_T" = 0 ; then
434                 CF_CURSES_CHECK_TYPE(mbstate_t,long)
435         fi
436
437         if test "$NCURSES_OK_WCHAR_T" = 0 ; then
438                 CF_CURSES_CHECK_TYPE(wchar_t,long)
439         fi
440
441         if test "$NCURSES_OK_WINT_T" = 0 ; then
442                 CF_CURSES_CHECK_TYPE(wint_t,long)
443         fi
444 fi
445
446 CF_CURSES_CHECK_DATA(\
447 curscr \
448 ospeed \
449 boolnames \
450 boolfnames \
451 ttytype)
452
453 dnl ---------------------------------------------------------------------------
454 CF_HELP_MESSAGE(Testing/development Options:)
455 CF_ENABLE_WARNINGS(Wno-unknown-pragmas)
456 CF_DISABLE_LEAKS
457 CF_DISABLE_RPATH_HACK
458
459 TEST_ARGS="$LIBS"
460 LIBS=
461
462 dnl ---------------------------------------------------------------------------
463
464 AC_OUTPUT(Makefile,[
465 CF_PRG_RULES([$srcdir/mk-test.awk INSTALL=yes ECHO_LINK="$ECHO_LD"], .)
466         cat >>Makefile <<TEST_EOF
467
468 # These rules are generated so we do not rely on suffix rules, which do not
469 # work consistently for different make-programs (the '\$(MODEL)/' confuses
470 # some, and the '\$x' confuses others).
471 TEST_EOF
472
473 LIST=`sed -e 's/[[      ]].*//' -e '/^[[#@]]/d' $srcdir/modules`
474 for N in $LIST
475 do
476         cat >>Makefile <<TEST_EOF
477
478 \$(MODEL)/$N.o : \$(srcdir)/$N.c \\
479         \$(srcdir)/test.priv.h \\
480         ncurses_cfg.h
481         $SHOW_CC
482         $ECHO_CC\$(CC) -c \$(CFLAGS_DEFAULT) -DMODULE_NAME="$N" \$(srcdir)/$N.c
483 TEST_EOF
484 done
485
486 if test -f ../config.guess && test -f ../config.sub
487 then
488         cat >>Makefile <<TEST_EOF
489
490 # if we used CF_INHERIT for getting these files, we can remove them
491 distclean::
492         rm -f config.guess config.sub
493 TEST_EOF
494 fi
495 ],[
496 AWK="$AWK"
497 ECHO_CC="$ECHO_CC"
498 ECHO_LD="$ECHO_LD"
499 SHOW_CC="$SHOW_LD"
500 ],cat)