mirror of git://gcc.gnu.org/git/gcc.git
configure: Rebuilt.
* configure: Rebuilt. * configure.in: Added aux-dir hacks to satisfy automake and in-tree builds. From-SVN: r43740
This commit is contained in:
parent
fe3dac3d3c
commit
1abd48ad23
|
@ -1,3 +1,9 @@
|
||||||
|
2001-07-02 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* configure: Rebuilt.
|
||||||
|
* configure.in: Added aux-dir hacks to satisfy automake and
|
||||||
|
in-tree builds.
|
||||||
|
|
||||||
2001-05-21 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
2001-05-21 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
||||||
|
|
||||||
* configure.in: Use correct include dir for new Boehm GC.
|
* configure.in: Use correct include dir for new Boehm GC.
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,13 +2,17 @@ dnl Process this file with autoconf to create configure.
|
||||||
|
|
||||||
AC_INIT(ltdl.c)
|
AC_INIT(ltdl.c)
|
||||||
|
|
||||||
dnl We shouldn't be using these internal macros of autoconf,
|
|
||||||
dnl but CONFIG_AUX_DIR($with_auxdir) breaks automake.
|
|
||||||
AC_ARG_WITH(auxdir,
|
AC_ARG_WITH(auxdir,
|
||||||
[ --with-auxdir=DIR path to autoconf auxiliary files],
|
[ --with-auxdir=DIR path to autoconf auxiliary files],
|
||||||
[AC_CONFIG_AUX_DIRS($with_auxdir)],
|
[AC_CONFIG_AUX_DIR($with_auxdir)
|
||||||
|
dnl This is here just to satisfy automake.
|
||||||
|
ifelse(not,equal,[AC_CONFIG_AUX_DIR(../..)])],
|
||||||
[AC_CONFIG_AUX_DIR_DEFAULT])
|
[AC_CONFIG_AUX_DIR_DEFAULT])
|
||||||
|
|
||||||
|
# This is another blatant hack to work around automake bugs.
|
||||||
|
mkinstalldirs="$ac_aux_dir/mkinstalldirs"
|
||||||
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
if test -z "$enable_ltdl_install$enable_ltdl_convenience"; then
|
if test -z "$enable_ltdl_install$enable_ltdl_convenience"; then
|
||||||
if test -f ${srcdir}/ltconfig && test -f ${srcdir}/ltmain.sh; then
|
if test -f ${srcdir}/ltconfig && test -f ${srcdir}/ltmain.sh; then
|
||||||
# if libltdl is libtoolized, it is assumed to be stand-alone and
|
# if libltdl is libtoolized, it is assumed to be stand-alone and
|
||||||
|
|
Loading…
Reference in New Issue