zlib and configure
Alexandre Oliva
aoliva@redhat.com
Tue Oct 10 02:00:00 GMT 2000
On Oct 10, 2000, Nathan Sidwell <nathan@codesourcery.com> wrote:
> As you can see from the attached configure log from the sparc box,
> the zlib configure dies failing to find ../../config-ml.in
> Notice that on that box, srcdir appears to be set to ., even
> though I explicitly set it to the base directory of the build.
It seems that zlib is missing the magic spell in libiberty, namely:
if test "${srcdir}" = "."; then
if test -z "${with_target_subdir}"; then
libiberty_topdir="${srcdir}/.."
else
if test "${with_target_subdir}" != "."; then
libiberty_topdir="${srcdir}/${with_multisrctop}../.."
else
libiberty_topdir="${srcdir}/${with_multisrctop}.."
fi
fi
else
libiberty_topdir="${srcdir}/.."
fi
AC_CONFIG_AUX_DIR($libiberty_topdir)
Currently, its configure.in reads:
AC_CONFIG_AUX_DIR(..)
which is probably inappropriate.
--
Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist *Please* write to mailing lists, not to me
More information about the Gcc-bugs
mailing list