* gcc.dg/vmx/vmx.exp: Change DEFAULT_CFLAGS to DEFAULT_VMXCFLAGS.
[official-gcc.git] / zlib / configure.ac
blobe716daf9ff678fe8ba57b619e7cdc70fdfd38076
1 dnl Process this with autoconf to create configure
3 AC_PREREQ(2.59)
4 AC_INIT
5 AC_CONFIG_SRCDIR([zlib.h])
7 # This works around the fact that libtool configuration may change LD
8 # for this particular configuration, but some shells, instead of
9 # keeping the changes in LD private, export them just because LD is
10 # exported.
11 ORIGINAL_LD_FOR_MULTILIBS=$LD
13 dnl We may get other options which we dont document:
14 dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
16 if test "x[$]{with_target_subdir}" != x && \
17    test "[$]{srcdir}" = "."; then
18   if test "[$]{with_target_subdir}" != "."; then
19     zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}../"
20   else
21     zlib_basedir="[$]{srcdir}/[$]{with_multisrctop}"
22   fi
23 else
24   zlib_basedir="[$]{srcdir}/"
26 AC_SUBST(zlib_basedir)
27 AC_CONFIG_AUX_DIR($zlib_basedir..)
28 if :; then :; else
29   # This overrides the previous occurrence for automake, but not for
30   # autoconf, which is exactly what we want.
31   AC_CONFIG_AUX_DIR(..)
34 AC_CANONICAL_SYSTEM
36 # This works around an automake problem.
37 mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
38 AC_SUBST(mkinstalldirs)
40 AM_INIT_AUTOMAKE(zlib, 1.1.4)
42 AM_MAINTAINER_MODE
44 dnl We use these options to decide which functions to include.
45 AC_ARG_WITH(target-subdir,
46 [  --with-target-subdir=SUBDIR
47                           configuring in a subdirectory])
49 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
50    COMPPATH=.
51 else
52    COMPPATH=..
54 AC_SUBST(COMPPATH)
56 AC_ARG_WITH(cross-host,
57 [  --with-cross-host=HOST  configuring with a cross compiler])
59 dnl Default to --enable-multilib
60 AC_ARG_ENABLE(multilib,
61 [  --enable-multilib       build many library versions (default)],
62 [case "${enableval}" in
63   yes) multilib=yes ;;
64   no)  multilib=no ;;
65   *)   AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
66  esac], [test -z "$with_target_subdir" && multilib=no || multilib=yes])dnl
68 AC_ARG_WITH(system-zlib,
69 [  --with-system-zlib      use installed libz])
71 # Make sure we don't test executables when making cross-tools.
72 GCC_NO_EXECUTABLES
74 AC_PROG_CC
76 AM_PROG_LIBTOOL
78 # Find CPP now so that any conditional tests below won't do it and
79 # thereby make the resulting definitions conditional.
80 AC_PROG_CPP
82 if test -n "$with_cross_host"; then
83    # We are being configured with a cross compiler.  AC_REPLACE_FUNCS
84    # may not work correctly, because the compiler may not be able to
85    # link executables.
87    # We assume newlib.  This lets us hard-code the functions we know
88    # we'll have.
89    AC_DEFINE(HAVE_MEMCPY)
90    AC_DEFINE(HAVE_STRERROR)
92    # We ignore --with-system-zlib in this case.
93    target_all=libzgcj.la
94 else
95    AC_FUNC_MMAP
96    AC_CHECK_FUNCS(memcpy strerror)
98    if test "$with_system_zlib" = yes; then
99       AC_CHECK_LIB(z, deflate, target_all=, target_all=libzgcj.la)
100    else
101       target_all=libzgcj.la
102    fi
105 AC_SUBST(target_all)
107 AC_CHECK_HEADERS(unistd.h)
109 if test -n "$with_cross_host" &&
110    test x"$with_cross_host" != x"no"; then
111   toolexecdir='$(exec_prefix)/$(target_alias)'
112   toolexeclibdir='$(toolexecdir)/lib'
113 else
114   toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
115   toolexeclibdir='$(libdir)'
117 if test "$GCC" = yes && $CC -print-multi-os-directory > /dev/null 2>&1; then
118   multiosdir=/`$CC -print-multi-os-directory`
119   case $multiosdir in
120     /.) multiosdir= ;; # Avoid trailing /.
121   esac
122 else
123   multiosdir=
125 toolexeclibdir=${toolexeclibdir}${multiosdir}
126 AC_SUBST(toolexecdir)
127 AC_SUBST(toolexeclibdir)
129 AM_CONDITIONAL(TARGET_LIBRARY, test -n "$with_target_subdir")
131 if test "${multilib}" = "yes"; then
132   multilib_arg="--enable-multilib"
133 else
134   multilib_arg=
137 AC_CONFIG_FILES([Makefile])
139 AC_CONFIG_COMMANDS([default],
140 [[if test -n "$CONFIG_FILES"; then
141   LD="${ORIGINAL_LD_FOR_MULTILIBS}"
142   ac_file=Makefile . ${zlib_basedir}/../config-ml.in
143 fi]],
144 [[srcdir=${srcdir}
145 host=${host}
146 target=${target}
147 with_multisubdir=${with_multisubdir}
148 ac_configure_args="${multilib_arg} ${ac_configure_args}"
149 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
150 zlib_basedir=${zlib_basedir}
151 CC="${CC}"
152 CXX="${CXX}"
153 ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
156 AC_OUTPUT