2 dnl Configure script for readline library
4 dnl report bugs to chet@po.cwru.edu
6 dnl Process this file with autoconf to produce a configure script.
7 AC_REVISION([for Readline 2.2, version 2.07, from autoconf version] AC_ACVERSION)
11 AC_CONFIG_HEADER(config.h)
13 dnl make sure we are using a recent autoconf version
16 dnl AC_CONFIG_AUX_DIR(./support)
20 dnl configure defaults
24 dnl arguments to configure
25 AC_ARG_WITH(curses, --with-curses use the curses library instead of the termcap library,opt_curses=$withval)
27 if test "$opt_curses" = "yes"; then
31 # We want these before the checks, so the checks can modify their values.
32 test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
38 dnl BEGIN changes for CYGNUS cross-building for Cygwin
40 dnl load up the cross-building cache file -- add more cases and cache
41 dnl files as necessary
42 if test "x$cross_compiling" = "xyes"; then
45 cross_cache=${srcdir}/cross-build/cygwin.cache
46 if test -r "${cross_cache}"; then
47 echo "loading cross-build cache file ${cross_cache}"
50 LOCAL_CFLAGS="$LOCAL_CFLAGS -I${srcdir}/../libtermcap"
53 *) echo "configure: cross-compiling for a non-cygwin target is not supported" >&2
58 if test "x$cross_compiling" = "xyes"; then
59 CROSS_COMPILING_FLAG=-DCROSS_COMPILING
63 AC_SUBST(CROSS_COMPILING_FLAG)
65 if test -z "$CC_FOR_BUILD"; then
66 if test "x$cross_compiling" = "xno"; then
72 AC_SUBST(CC_FOR_BUILD)
74 dnl END changes for CYGNUS cross-building for Cygwin
78 # If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
79 test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O"
81 AC_PROG_GCC_TRADITIONAL
90 AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr setlocale lstat)
94 AC_CHECK_HEADERS(unistd.h stdlib.h varargs.h stdarg.h string.h \
95 sys/ptem.h sys/pte.h sys/stream.h sys/select.h \
96 termcap.h termios.h termio.h sys/file.h locale.h)
99 BASH_REINSTALL_SIGHANDLERS
101 BASH_FUNC_POSIX_SETJMP
103 BASH_CHECK_GETPW_FUNCS
112 BASH_STRUCT_DIRENT_D_INO
113 BASH_STRUCT_DIRENT_D_FILENO
117 aix*) prefer_curses=yes ;;
119 BASH_CHECK_LIB_TERMCAP
120 if test "$TERMCAP_LIB" = "./lib/termcap/libtermcap.a"; then
121 TERMCAP_LIB=-ltermcap #default
125 *cray*) LOCAL_CFLAGS=-DCRAY ;;
129 isc*) LOCAL_CFLAGS=-Disc386 ;;
136 AC_SUBST(LOCAL_CFLAGS)
137 AC_SUBST(LOCAL_LDFLAGS)
145 AC_SUBST(TERMCAP_LIB)
147 AC_OUTPUT([Makefile doc/Makefile examples/Makefile],
149 # Makefile uses this timestamp file to record whether config.h is up to date.