1999-05-05 12:04:39 +02:00
|
|
|
dnl Process this with autoconf to create configure
|
|
|
|
|
|
|
|
AC_INIT(zlib.h)
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AM_INIT_AUTOMAKE(zlib, 1.1.3)
|
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
|
|
|
AC_CONFIG_AUX_DIR(..)
|
|
|
|
|
|
|
|
dnl We use these options to decide which functions to include.
|
|
|
|
AC_ARG_WITH(target-subdir,
|
1999-08-10 07:30:10 +02:00
|
|
|
[ --with-target-subdir=SUBDIR
|
|
|
|
configuring in a subdirectory])
|
1999-05-05 12:04:39 +02:00
|
|
|
AC_ARG_WITH(cross-host,
|
1999-08-10 07:30:10 +02:00
|
|
|
[ --with-cross-host=HOST configuring with a cross compiler])
|
1999-05-05 12:04:39 +02:00
|
|
|
|
|
|
|
dnl Default to --enable-multilib
|
|
|
|
AC_ARG_ENABLE(multilib,
|
1999-08-10 07:30:10 +02:00
|
|
|
[ --enable-multilib build many library versions (default)],
|
1999-05-05 12:04:39 +02:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) multilib=yes ;;
|
|
|
|
no) multilib=no ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
|
|
|
|
esac], [multilib=yes])dnl
|
|
|
|
|
|
|
|
dnl We may get other options which we dont document:
|
|
|
|
dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
|
|
|
|
|
|
|
|
if test "[$]{srcdir}" = "."; then
|
|
|
|
if test "[$]{with_target_subdir}" != "."; then
|
|
|
|
zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}../"
|
|
|
|
else
|
|
|
|
zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
zlib_basedir="[$]{srcdir}/"
|
|
|
|
fi
|
|
|
|
AC_SUBST(zlib_basedir)
|
|
|
|
|
1999-05-10 10:05:43 +02:00
|
|
|
AC_ARG_WITH(system-zlib,
|
1999-08-10 07:30:10 +02:00
|
|
|
[ --with-system-zlib use installed libz])
|
1999-05-10 10:05:43 +02:00
|
|
|
|
1999-05-05 12:04:39 +02:00
|
|
|
LIB_AC_PROG_CC
|
1999-10-05 00:08:42 +02:00
|
|
|
# We need AC_EXEEXT to keep automake happy in cygnus mode. However,
|
|
|
|
# at least currently, we never actually build a program, so we never
|
|
|
|
# need to use $(EXEEXT). Moreover, the test for EXEEXT normally
|
|
|
|
# fails, because we are probably configuring with a cross compiler
|
|
|
|
# which cant create executables. So we include AC_EXEEXT to keep
|
|
|
|
# automake happy, but we dont execute it, since we dont care about
|
|
|
|
# the result.
|
|
|
|
if false; then
|
|
|
|
AC_EXEEXT
|
|
|
|
fi
|
1999-05-05 12:04:39 +02:00
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
|
|
|
if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
|
|
|
|
COMPPATH=.
|
|
|
|
else
|
|
|
|
COMPPATH=..
|
|
|
|
fi
|
|
|
|
AC_SUBST(COMPPATH)
|
|
|
|
|
|
|
|
|
|
|
|
if test -n "$with_cross_host"; then
|
|
|
|
# We are being configured with a cross compiler. AC_REPLACE_FUNCS
|
|
|
|
# may not work correctly, because the compiler may not be able to
|
|
|
|
# link executables.
|
|
|
|
|
|
|
|
# We assume newlib. This lets us hard-code the functions we know
|
|
|
|
# we'll have.
|
|
|
|
AC_DEFINE(HAVE_MEMCPY)
|
|
|
|
AC_DEFINE(HAVE_STRERROR)
|
1999-05-10 10:05:43 +02:00
|
|
|
|
|
|
|
# We ignore --with-system-zlib in this case.
|
|
|
|
target_all=libzgcj.la
|
1999-05-05 12:04:39 +02:00
|
|
|
else
|
|
|
|
AC_FUNC_MMAP
|
|
|
|
AC_CHECK_FUNCS(memcpy strerror)
|
1999-05-10 10:05:43 +02:00
|
|
|
|
|
|
|
if test "$with_system_zlib" = yes; then
|
|
|
|
AC_CHECK_LIB(z, deflate, target_all=, target_all=libzgcj.la)
|
|
|
|
else
|
|
|
|
target_all=libzgcj.la
|
|
|
|
fi
|
1999-05-05 12:04:39 +02:00
|
|
|
fi
|
|
|
|
|
1999-05-10 10:05:43 +02:00
|
|
|
AC_SUBST(target_all)
|
|
|
|
|
1999-05-05 12:04:39 +02:00
|
|
|
AC_CHECK_HEADERS(unistd.h)
|
|
|
|
|
1999-06-21 15:03:47 +02:00
|
|
|
AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
|
2000-09-03 21:54:20 +02:00
|
|
|
AM_CONDITIONAL(TARGET_LIBRARY, test -n "$with_target_subdir")
|
1999-06-21 15:03:47 +02:00
|
|
|
|
1999-05-05 12:04:39 +02:00
|
|
|
if test "${multilib}" = "yes"; then
|
|
|
|
multilib_arg="--enable-multilib"
|
|
|
|
else
|
|
|
|
multilib_arg=
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_OUTPUT(Makefile,
|
|
|
|
[if test -n "$CONFIG_FILES"; then
|
|
|
|
ac_file=Makefile . ${zlib_basedir}/../config-ml.in
|
|
|
|
fi],
|
|
|
|
srcdir=${srcdir}
|
|
|
|
host=${host}
|
|
|
|
target=${target}
|
|
|
|
with_multisubdir=${with_multisubdir}
|
|
|
|
ac_configure_args="${multilib_arg} ${ac_configure_args}"
|
|
|
|
CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
zlib_basedir=${zlib_basedir}
|
|
|
|
CC="${CC}"
|
|
|
|
CXX="${CXX}"
|
|
|
|
)
|