* sibcall.c (optimize_sibling_and_tail_recursive_calls): Call
[official-gcc.git] / zlib / configure.in
bloba56262ebcd17baa39c3fceff6bf59273f7148a88
1 dnl Process this with autoconf to create configure
3 AC_INIT(zlib.h)
5 dnl We may get other options which we dont document:
6 dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
8 if test "x[$]{with_target_subdir}" != x && \
9    test "[$]{srcdir}" = "."; then
10   if test "[$]{with_target_subdir}" != "."; then
11     zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}../"
12   else
13     zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}"
14   fi
15 else
16   zlib_basedir="[$]{srcdir}/"
18 AC_SUBST(zlib_basedir)
19 AC_CONFIG_AUX_DIR($zlib_basedir..)
20 if :; then :; else
21   # This overrides the previous occurrence for automake, but not for
22   # autoconf, which is exactly what we want.
23   AC_CONFIG_AUX_DIR(..)
26 AC_CANONICAL_SYSTEM
28 # This works around an automake problem.
29 mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
30 AC_SUBST(mkinstalldirs)
32 AM_INIT_AUTOMAKE(zlib, 1.1.3)
34 AM_MAINTAINER_MODE
36 dnl We use these options to decide which functions to include.
37 AC_ARG_WITH(target-subdir,
38 [  --with-target-subdir=SUBDIR
39                           configuring in a subdirectory])
40 AC_ARG_WITH(cross-host,
41 [  --with-cross-host=HOST  configuring with a cross compiler])
43 dnl Default to --enable-multilib
44 AC_ARG_ENABLE(multilib,
45 [  --enable-multilib       build many library versions (default)],
46 [case "${enableval}" in
47   yes) multilib=yes ;;
48   no)  multilib=no ;;
49   *)   AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
50  esac], [test -z "$with_target_subdir" && multilib=no || multilib=yes])dnl
52 AC_ARG_WITH(system-zlib,
53 [  --with-system-zlib      use installed libz])
55 LIB_AC_PROG_CC
56 # We need AC_EXEEXT to keep automake happy in cygnus mode.  However,
57 # at least currently, we never actually build a program, so we never
58 # need to use $(EXEEXT).  Moreover, the test for EXEEXT normally
59 # fails, because we are probably configuring with a cross compiler
60 # which cant create executables.  So we include AC_EXEEXT to keep
61 # automake happy, but we dont execute it, since we dont care about
62 # the result.
63 if false; then
64   AC_EXEEXT
66 AM_PROG_LIBTOOL
68 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
69    COMPPATH=.
70 else
71    COMPPATH=..
73 AC_SUBST(COMPPATH)
75 # Find CPP now so that any conditional tests below won't do it and
76 # thereby make the resulting definitions conditional.
77 AC_PROG_CPP
79 if test -n "$with_cross_host"; then
80    # We are being configured with a cross compiler.  AC_REPLACE_FUNCS
81    # may not work correctly, because the compiler may not be able to
82    # link executables.
84    # We assume newlib.  This lets us hard-code the functions we know
85    # we'll have.
86    AC_DEFINE(HAVE_MEMCPY)
87    AC_DEFINE(HAVE_STRERROR)
89    # We ignore --with-system-zlib in this case.
90    target_all=libzgcj.la
91 else
92    AC_FUNC_MMAP
93    AC_CHECK_FUNCS(memcpy strerror)
95    if test "$with_system_zlib" = yes; then
96       AC_CHECK_LIB(z, deflate, target_all=, target_all=libzgcj.la)
97    else
98       target_all=libzgcj.la
99    fi
102 AC_SUBST(target_all)
104 AC_CHECK_HEADERS(unistd.h)
106 AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
107 AM_CONDITIONAL(TARGET_LIBRARY, test -n "$with_target_subdir")
109 if test "${multilib}" = "yes"; then
110   multilib_arg="--enable-multilib"
111 else
112   multilib_arg=
115 AC_OUTPUT(Makefile,
116 [if test -n "$CONFIG_FILES"; then
117   ac_file=Makefile . ${zlib_basedir}/../config-ml.in
118 fi],
119 srcdir=${srcdir}
120 host=${host}
121 target=${target}
122 with_multisubdir=${with_multisubdir}
123 ac_configure_args="${multilib_arg} ${ac_configure_args}"
124 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
125 zlib_basedir=${zlib_basedir}
126 CC="${CC}"
127 CXX="${CXX}"