1 dnl Process this with autoconf to create configure
5 AM_INIT_AUTOMAKE(zlib, 1.1.3)
11 dnl We use these options to decide which functions to include.
12 AC_ARG_WITH(target-subdir,
13 [ --with-target-subdir=SUBDIR
14 configuring in a subdirectory])
15 AC_ARG_WITH(cross-host,
16 [ --with-cross-host=HOST configuring with a cross compiler])
18 dnl Default to --enable-multilib
19 AC_ARG_ENABLE(multilib,
20 [ --enable-multilib build many library versions (default)],
21 [case "${enableval}" in
24 *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
25 esac], [multilib=yes])dnl
27 dnl We may get other options which we dont document:
28 dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
30 if test "[$]{srcdir}" = "."; then
31 if test "[$]{with_target_subdir}" != "."; then
32 zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}../"
34 zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}"
37 zlib_basedir="[$]{srcdir}/"
39 AC_SUBST(zlib_basedir)
41 AC_ARG_WITH(system-zlib,
42 [ --with-system-zlib use installed libz])
45 # We need AC_EXEEXT to keep automake happy in cygnus mode. However,
46 # at least currently, we never actually build a program, so we never
47 # need to use $(EXEEXT). Moreover, the test for EXEEXT normally
48 # fails, because we are probably configuring with a cross compiler
49 # which cant create executables. So we include AC_EXEEXT to keep
50 # automake happy, but we dont execute it, since we dont care about
57 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
65 if test -n "$with_cross_host"; then
66 # We are being configured with a cross compiler. AC_REPLACE_FUNCS
67 # may not work correctly, because the compiler may not be able to
70 # We assume newlib. This lets us hard-code the functions we know
72 AC_DEFINE(HAVE_MEMCPY)
73 AC_DEFINE(HAVE_STRERROR)
75 # We ignore --with-system-zlib in this case.
79 AC_CHECK_FUNCS(memcpy strerror)
81 if test "$with_system_zlib" = yes; then
82 AC_CHECK_LIB(z, deflate, target_all=, target_all=libzgcj.la)
90 AC_CHECK_HEADERS(unistd.h)
92 AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
94 if test "${multilib}" = "yes"; then
95 multilib_arg="--enable-multilib"
101 [if test -n "$CONFIG_FILES"; then
102 ac_file=Makefile . ${zlib_basedir}/../config-ml.in
107 with_multisubdir=${with_multisubdir}
108 ac_configure_args="${multilib_arg} ${ac_configure_args}"
109 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
110 zlib_basedir=${zlib_basedir}