configure.in 5.25 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5 6
dnl
dnl Configure script for readline library
dnl
dnl report bugs to chet@po.cwru.edu
dnl
dnl Process this file with autoconf to produce a configure script.
7
AC_REVISION([for Readline 5.0, version 2.52, from autoconf version] AC_ACVERSION)
unknown's avatar
unknown committed
8

9
AC_INIT(readline, 5.0-rc1, bug-readline@gnu.org)
unknown's avatar
unknown committed
10 11

dnl make sure we are using a recent autoconf version
unknown's avatar
unknown committed
12
AC_PREREQ(2.50)
unknown's avatar
unknown committed
13

unknown's avatar
unknown committed
14
AC_CONFIG_SRCDIR(readline.h)
unknown's avatar
unknown committed
15
AC_CONFIG_AUX_DIR(./support)
unknown's avatar
unknown committed
16 17 18
AC_CONFIG_HEADERS(config.h)

dnl update the value of RL_READLINE_VERSION in readline.h when this changes
19
LIBVERSION=5.0
unknown's avatar
unknown committed
20 21 22 23 24 25 26

AC_CANONICAL_HOST

dnl configure defaults
opt_curses=no

dnl arguments to configure
unknown's avatar
unknown committed
27
AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
unknown's avatar
unknown committed
28 29 30 31 32

if test "$opt_curses" = "yes"; then
	prefer_curses=yes
fi

unknown's avatar
unknown committed
33
dnl option parsing for optional features
34
opt_multibyte=yes
unknown's avatar
unknown committed
35 36 37
opt_static_libs=yes
opt_shared_libs=yes

38
AC_ARG_ENABLE(multibyte, AC_HELP_STRING([--enable-multibyte], [enable multibyte characters if OS supports them]), opt_multibyte=$enableval)
unknown's avatar
unknown committed
39 40 41
AC_ARG_ENABLE(shared, AC_HELP_STRING([--enable-shared], [build shared libraries [[default=YES]]]), opt_shared_libs=$enableval)
AC_ARG_ENABLE(static, AC_HELP_STRING([--enable-static], [build static libraries [[default=YES]]]), opt_static_libs=$enableval)

42 43 44 45
if test $opt_multibyte = no; then
AC_DEFINE(NO_MULTIBYTE_SUPPORT)
fi

unknown's avatar
unknown committed
46 47 48 49
echo ""
echo "Beginning configuration for readline-$LIBVERSION for ${host_cpu}-${host_vendor}-${host_os}"
echo ""

unknown's avatar
unknown committed
50 51 52
# We want these before the checks, so the checks can modify their values.
test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1

unknown's avatar
unknown committed
53
AC_PROG_MAKE_SET
unknown's avatar
unknown committed
54
AC_PROG_CC
unknown's avatar
unknown committed
55
dnl AC_AIX
unknown's avatar
unknown committed
56 57 58 59 60 61 62
AC_MINIX

# If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O"

AC_PROG_GCC_TRADITIONAL
AC_PROG_INSTALL
unknown's avatar
unknown committed
63
AC_CHECK_PROG(AR, ar, , ar)
unknown's avatar
unknown committed
64 65 66 67 68 69 70 71
dnl Set default for ARFLAGS, since autoconf does not have a macro for it.
dnl This allows people to set it when running configure or make
test -n "$ARFLAGS" || ARFLAGS="cr"
AC_PROG_RANLIB

MAKE_SHELL=/bin/sh
AC_SUBST(MAKE_SHELL)

unknown's avatar
unknown committed
72 73 74 75 76 77 78 79
AC_C_CONST
AC_C_PROTOTYPES
AC_C_CHAR_UNSIGNED

AC_TYPE_SIGNAL

AC_TYPE_SIZE_T
AC_CHECK_TYPE(ssize_t, int)
unknown's avatar
unknown committed
80

81 82
AC_HEADER_STDC

unknown's avatar
unknown committed
83 84 85
AC_HEADER_STAT
AC_HEADER_DIRENT

unknown's avatar
unknown committed
86 87
AC_CHECK_FUNCS(lstat memmove putenv select setenv setlocale \
		strcasecmp strpbrk tcgetattr vsnprintf isascii isxdigit)
unknown's avatar
unknown committed
88 89 90

AC_FUNC_STRCOLL

unknown's avatar
unknown committed
91 92 93
AC_CHECK_HEADERS(unistd.h stdlib.h varargs.h stdarg.h string.h strings.h \
		limits.h sys/ptem.h sys/pte.h sys/stream.h sys/select.h \
		termcap.h termios.h termio.h sys/file.h locale.h memory.h )
unknown's avatar
unknown committed
94

unknown's avatar
unknown committed
95 96
BASH_SYS_SIGNAL_VINTAGE
BASH_SYS_REINSTALL_SIGHANDLERS
unknown's avatar
unknown committed
97 98 99 100

BASH_FUNC_POSIX_SETJMP
BASH_FUNC_LSTAT
BASH_FUNC_STRCOLL
101
BASH_FUNC_CTYPE_NONASCII
unknown's avatar
unknown committed
102

unknown's avatar
unknown committed
103 104 105 106
BASH_CHECK_GETPW_FUNCS

AC_HEADER_TIOCGWINSZ

unknown's avatar
unknown committed
107 108 109
BASH_TYPE_SIGHANDLER
BASH_HAVE_TIOCSTAT
BASH_HAVE_FIONREAD
unknown's avatar
unknown committed
110
BASH_CHECK_SPEED_T
unknown's avatar
unknown committed
111 112 113 114 115 116 117 118 119 120
BASH_STRUCT_WINSIZE
BASH_STRUCT_DIRENT_D_INO
BASH_STRUCT_DIRENT_D_FILENO

dnl yuck
case "$host_os" in
aix*)   prefer_curses=yes ;;
esac
BASH_CHECK_LIB_TERMCAP
if test "$TERMCAP_LIB" = "./lib/termcap/libtermcap.a"; then
unknown's avatar
unknown committed
121 122 123 124 125
	if test "$prefer_curses" = yes; then
		TERMCAP_LIB=-lcurses
	else
		TERMCAP_LIB=-ltermcap	#default
	fi
unknown's avatar
unknown committed
126 127
fi

unknown's avatar
unknown committed
128 129
BASH_CHECK_MULTIBYTE

unknown's avatar
unknown committed
130 131
case "$host_cpu" in
*cray*)	LOCAL_CFLAGS=-DCRAY ;;
unknown's avatar
unknown committed
132
*s390*) LOCAL_CFLAGS=-fsigned-char ;;
unknown's avatar
unknown committed
133 134 135 136 137 138 139 140 141 142 143 144 145
esac

case "$host_os" in
isc*)	LOCAL_CFLAGS=-Disc386 ;;
esac

# shared library configuration section
#
# Shared object configuration section.  These values are generated by
# ${srcdir}/support/shobj-conf
#
if test -f ${srcdir}/support/shobj-conf; then
        AC_MSG_CHECKING(configuration for building shared libraries)
unknown's avatar
unknown committed
146
        eval `${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C "${CC}" -c ${host_cpu} -o ${host_os} -v ${host_vendor}`
unknown's avatar
unknown committed
147 148 149 150 151 152 153 154 155 156 157 158 159
        AC_SUBST(SHOBJ_CC)
        AC_SUBST(SHOBJ_CFLAGS)
        AC_SUBST(SHOBJ_LD)
        AC_SUBST(SHOBJ_LDFLAGS)
	AC_SUBST(SHOBJ_XLDFLAGS)
        AC_SUBST(SHOBJ_LIBS)
        AC_SUBST(SHOBJ_STATUS)
	AC_SUBST(SHLIB_STATUS)
	AC_SUBST(SHLIB_XLDFLAGS)
	AC_SUBST(SHLIB_LIBSUFF)
	AC_SUBST(SHLIB_LIBVERSION)
	AC_SUBST(SHLIB_LIBS)
        AC_MSG_RESULT($SHLIB_STATUS)
unknown's avatar
unknown committed
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

	# SHLIB_STATUS is either `supported' or `unsupported'.  If it's
	# `unsupported', turn off any default shared library building
	if test "$SHLIB_STATUS" = 'unsupported'; then
		opt_shared_libs=no
	fi

	# shared library versioning
	# quoted for m4 so I can use character classes
	SHLIB_MAJOR=[`expr "$LIBVERSION" : '\([0-9]\)\..*'`]
	SHLIB_MINOR=[`expr "$LIBVERSION" : '[0-9]\.\([0-9]\).*'`]
	AC_SUBST(SHLIB_MAJOR)
	AC_SUBST(SHLIB_MINOR)
fi

if test "$opt_static_libs" = "yes"; then
	STATIC_TARGET=static
	STATIC_INSTALL_TARGET=install-static
fi
if test "$opt_shared_libs" = "yes"; then
	SHARED_TARGET=shared
	SHARED_INSTALL_TARGET=install-shared
unknown's avatar
unknown committed
182 183
fi

unknown's avatar
unknown committed
184 185 186 187 188 189 190 191 192 193
AC_SUBST(STATIC_TARGET)
AC_SUBST(SHARED_TARGET)
AC_SUBST(STATIC_INSTALL_TARGET)
AC_SUBST(SHARED_INSTALL_TARGET)

case "$host_os" in
msdosdjgpp*)	BUILD_DIR=`pwd.exe` ;;	# to prevent //d/path/file
*)		BUILD_DIR=`pwd` ;;
esac

unknown's avatar
unknown committed
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
AC_SUBST(BUILD_DIR)

AC_SUBST(CFLAGS)
AC_SUBST(LOCAL_CFLAGS)
AC_SUBST(LOCAL_LDFLAGS)
AC_SUBST(LOCAL_DEFS)

AC_SUBST(AR)
AC_SUBST(ARFLAGS)

AC_SUBST(host_cpu)
AC_SUBST(host_os)

AC_SUBST(LIBVERSION)

AC_SUBST(TERMCAP_LIB)

AC_OUTPUT([Makefile doc/Makefile examples/Makefile shlib/Makefile],
[
# Makefile uses this timestamp file to record whether config.h is up to date.
echo > stamp-h
])