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 4.3, version 2.45, from autoconf version] AC_ACVERSION)
9 AC_INIT(readline, 4.3, bug-readline@gnu.org)
11 dnl make sure we are using a recent autoconf version
14 AC_CONFIG_SRCDIR(readline.h)
15 AC_CONFIG_AUX_DIR(./support)
16 AC_CONFIG_HEADERS(config.h)
18 dnl update the value of RL_READLINE_VERSION in readline.h when this changes
23 dnl configure defaults
26 dnl arguments to configure
27 AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
29 if test "$opt_curses" = "yes"; then
33 dnl option parsing for optional features
37 AC_ARG_ENABLE(shared, AC_HELP_STRING([--enable-shared], [build shared libraries [[default=YES]]]), opt_shared_libs=$enableval)
38 AC_ARG_ENABLE(static, AC_HELP_STRING([--enable-static], [build static libraries [[default=YES]]]), opt_static_libs=$enableval)
41 echo "Beginning configuration for readline-$LIBVERSION for ${host_cpu}-${host_vendor}-${host_os}"
44 # We want these before the checks, so the checks can modify their values.
45 test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
52 # If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
53 test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O"
55 AC_PROG_GCC_TRADITIONAL
57 AC_CHECK_PROG(AR, ar, , ar)
58 dnl Set default for ARFLAGS, since autoconf does not have a macro for it.
59 dnl This allows people to set it when running configure or make
60 test -n "$ARFLAGS" || ARFLAGS="cr"
73 AC_CHECK_TYPE(ssize_t, int)
78 AC_CHECK_FUNCS(lstat memmove putenv select setenv setlocale \
79 strcasecmp strpbrk tcgetattr vsnprintf isascii isxdigit)
83 AC_CHECK_HEADERS(unistd.h stdlib.h varargs.h stdarg.h string.h strings.h \
84 limits.h sys/ptem.h sys/pte.h sys/stream.h sys/select.h \
85 termcap.h termios.h termio.h sys/file.h locale.h memory.h )
87 BASH_SYS_SIGNAL_VINTAGE
88 BASH_SYS_REINSTALL_SIGHANDLERS
90 BASH_FUNC_POSIX_SETJMP
94 BASH_CHECK_GETPW_FUNCS
103 BASH_STRUCT_DIRENT_D_INO
104 BASH_STRUCT_DIRENT_D_FILENO
108 aix*) prefer_curses=yes ;;
110 BASH_CHECK_LIB_TERMCAP
111 if test "$TERMCAP_LIB" = "./lib/termcap/libtermcap.a"; then
112 if test "$prefer_curses" = yes; then
115 TERMCAP_LIB=-ltermcap #default
122 *cray*) LOCAL_CFLAGS=-DCRAY ;;
123 *s390*) LOCAL_CFLAGS=-fsigned-char ;;
127 isc*) LOCAL_CFLAGS=-Disc386 ;;
130 # shared library configuration section
132 # Shared object configuration section. These values are generated by
133 # ${srcdir}/support/shobj-conf
135 if test -f ${srcdir}/support/shobj-conf; then
136 AC_MSG_CHECKING(configuration for building shared libraries)
137 eval `${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C "${CC}" -c ${host_cpu} -o ${host_os} -v ${host_vendor}`
139 AC_SUBST(SHOBJ_CFLAGS)
141 AC_SUBST(SHOBJ_LDFLAGS)
142 AC_SUBST(SHOBJ_XLDFLAGS)
144 AC_SUBST(SHOBJ_STATUS)
145 AC_SUBST(SHLIB_STATUS)
146 AC_SUBST(SHLIB_XLDFLAGS)
147 AC_SUBST(SHLIB_LIBSUFF)
148 AC_SUBST(SHLIB_LIBVERSION)
150 AC_MSG_RESULT($SHLIB_STATUS)
152 # SHLIB_STATUS is either `supported' or `unsupported'. If it's
153 # `unsupported', turn off any default shared library building
154 if test "$SHLIB_STATUS" = 'unsupported'; then
158 # shared library versioning
159 # quoted for m4 so I can use character classes
160 SHLIB_MAJOR=[`expr "$LIBVERSION" : '\([0-9]\)\..*'`]
161 SHLIB_MINOR=[`expr "$LIBVERSION" : '[0-9]\.\([0-9]\).*'`]
162 AC_SUBST(SHLIB_MAJOR)
163 AC_SUBST(SHLIB_MINOR)
166 if test "$opt_static_libs" = "yes"; then
168 STATIC_INSTALL_TARGET=install-static
170 if test "$opt_shared_libs" = "yes"; then
172 SHARED_INSTALL_TARGET=install-shared
175 AC_SUBST(STATIC_TARGET)
176 AC_SUBST(SHARED_TARGET)
177 AC_SUBST(STATIC_INSTALL_TARGET)
178 AC_SUBST(SHARED_INSTALL_TARGET)
181 msdosdjgpp*) BUILD_DIR=`pwd.exe` ;; # to prevent //d/path/file
182 *) BUILD_DIR=`pwd` ;;
188 AC_SUBST(LOCAL_CFLAGS)
189 AC_SUBST(LOCAL_LDFLAGS)
200 AC_SUBST(TERMCAP_LIB)
202 AC_OUTPUT([Makefile doc/Makefile examples/Makefile shlib/Makefile],
204 # Makefile uses this timestamp file to record whether config.h is up to date.