mirror of
https://https.git.savannah.gnu.org/git/libtool.git
synced 2026-01-27 01:44:28 +00:00
installation to the libtoolize master tree, so that libltdl is useable even in the extreme case of when automake and autoconf are not installed on the developers machine. Part of this change requires some duplication of rules between Makefile.am (which builds libltdl for this distribution) and libltdl/Makefile.am (which is used by projects that libltoolize --ltdl --copy), so libtool now really does use a single toplevel Makefile.am, and we generate libltdl/Makefile.am from that: * m4, config: Moved from here... * libltdl/m4, libltdl/config: ...to here, to reduce the amount of kludging needed in bootstrap for autoreconf to run. * tests/cdemo/Makefile.am, tests/demo/Makefile.am, tests/depdemo/Makefile.am, tests/f77demo/Makefile.am, tests/fcdemo/Makefile.am, tests/mdemo/Makefile.am, tests/mdemo2/Makefile.am, tests/pdemo/Makefile.am, tests/tagdemo/Makefile.am (ACLOCAL_AMFLAGS): Adjust to compensate. * tests/cdemo/configure.ac, tests/demo/configure.ac, tests/depdemo/configure.ac, tests/f77demo/configure.ac, tests/fcdemo/configure.ac, tests/mdemo/configure.ac, tests/mdemo2/configure.ac, tests/pdemo/configure.ac, tests/tagdemo/configure.ac (AC_CONFIG_AUX_DIR): Ditto. * libltdl/m4/ltdl.m4: Increment serial number. (LTDL_INIT): Accept an optional directory argument to prefix each of the LD_DLLOADERS locations. Default to empty for backwards compatibility. * Makefile.maint: Adjust to compensate. * configure.ac (AC_CONFIG_AUX_DIR, AC_CONFIG_MACRO_DIR): Adjust. (AC_CONFIG_LIBOBJ_DIR): Set here so that we can build LTLIBOBJS from in a subdirectory from the amalgamated Makefile.am. (AM_PROG_CC_C_O, AM_INIT_AUTOMAKE): Use subdir-objects. (AC_CONFIG_FILES): Remove libltdl/Makefile.am. * libltdl/Makefile.am: Removed from repository, and merged into Makefile.am as we now generate it... * Makefile.am (libltdl/Makefile.am): ...from here, by extracting the merged rules, and tweaking paths to accomodate the difference in directory from Makefile.am to libltdl/Makefile.am. (nobase_dist_pkgdata_DATA): Automake generated installation rules change timestamps of installed files, so renamed this... (configauxfiles): ...to this... (libtoolize): ...substitute it... (install-data-local): ...install manually, preserving timestamps... (install-data-hook): ...and set execute bit as appropriate. (uninstall-hook): Not forgetting to remove them at uninstall. (libltdl/Makefile.in): New rule. Called from... * bootstrap: ...here to avoid relying on config.status at bootstrap time. (auxdir, m4dir): Extract from configure.ac for ease of future maintenance. Adjust all references. (reconfdirs): Call autoreconf for libltdl too -- even though we don't use it for the build, libltdl/configure and friends are installed with `libtoolize --ltdl --copy'. * libtoolize.m4sh: Add files from the installed config master tree to libtoolize --ltdl project subdirectory. Diagnose duplicated files when --ltdl is used in an autotooled project. It's perfectly fine to run `libtoolize --ltdl --copy' in a tree that has no configure.ac or configure.in; we want libltdl to be useful even to projects that don't use autotools themselves. (libtoolize_flags): Removed. Changed all callers. (func_massage_pkgconfig_files): New function. * tests/standalone.at: New tests for using libltdl without supporting configury in the parent project. * tests/testsuite.at: Run them! * NEWS: Updated.
149 lines
5.5 KiB
Bash
Executable File
149 lines
5.5 KiB
Bash
Executable File
#! /bin/sh
|
|
# bootstrap -- Helps bootstrapping libtool, when checked out from CVS.
|
|
#
|
|
# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc,
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
# It is okay for the bootstrap process to require unreleased autoconf
|
|
# or automake, as long as any released libtool will work with at least
|
|
# the newest stable versions of each. Generally, newer versions offer
|
|
# better features, and configure.ac documents oldest version of each
|
|
# required for bootstrap (AC_PREREQ, and AM_INIT_AUTOMAKE).
|
|
|
|
: ${AUTORECONF=autoreconf}
|
|
: ${AUTOM4TE=autom4te}
|
|
: ${MAKE=make}
|
|
: ${GREP=grep}
|
|
: ${EGREP=egrep}
|
|
: ${FGREP=fgrep}
|
|
: ${SED=sed}
|
|
: ${LN_S='ln -s'}
|
|
: ${MAKEINFO=makeinfo}
|
|
|
|
test -f ./configure.ac || {
|
|
echo "bootstrap: can't find ./configure.ac, please rerun from top_srcdir"
|
|
exit 1
|
|
}
|
|
|
|
|
|
# Extract auxdir and m4dir from configure.ac:
|
|
my_sed_traces='s,#.*$,,; s,^dnl .*$,,; s, dnl .*$,,;
|
|
/AC_CONFIG_AUX_DIR[^_]/ {
|
|
s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,auxdir=\1,; p;
|
|
};
|
|
/AC_CONFIG_MACRO_DIR/ {
|
|
s,^.*AC_CONFIG_MACRO_DIR([[ ]*\([^])]*\).*$,m4dir=\1,; p;
|
|
};
|
|
d;'
|
|
eval `cat configure.ac 2>/dev/null | $SED "$my_sed_traces"`
|
|
|
|
|
|
# Upgrade caveat:
|
|
cat <<'EOF'
|
|
WARNING: If bootstrapping with this script fails, it may be due to an
|
|
WARNING: incompatible installed `libtool.m4' being pulled in to
|
|
WARNING: `aclocal.m4'. The best way to work around such a problem is to
|
|
WARNING: uninstall your system libtool files, or failing that, overwrite
|
|
WARNING: them with all m4 file as shipped with this distribution (except
|
|
WARNING: `lt~obsolete.m4'). After that, retry this bootstrap.
|
|
EOF
|
|
|
|
rm -rf `find . -path './{arch}' -prune -o \( -name autom4te.cache -o -name libtool \) -print`
|
|
|
|
# Delete stale files from previous libtool versions.
|
|
rm -f acinclude.m4 libltdl/config.h
|
|
|
|
if test -z "$reconfdirs"; then
|
|
reconfdirs=". libltdl `ls -1d tests/*demo tests/*demo[0-9]`"
|
|
fi
|
|
|
|
# Extract the package name and version number from configure.ac:
|
|
set dummy `$SED '/AC_INIT/{s/[][,()]/ /g; p;};d' configure.ac`
|
|
shift
|
|
|
|
# Whip up a dirty Makefile:
|
|
test -f Makefile \
|
|
|| $SED '/^if /,/^endif$/d;/^else$/,/^endif$/d' Makefile.am > Makefile
|
|
|
|
# Building distributed files from configure is bad for automake, so we
|
|
# generate them here, and have Makefile rules to keep them up to date.
|
|
# We don't have all the substitution values to build ltmain.sh from this
|
|
# script yet, but we need config/ltmain.sh for the libtool commands in
|
|
# configure, and ltversion.m4 to generate configure in the first place:
|
|
rm -f $auxdir/ltmain.sh $m4dir/ltversion.m4
|
|
|
|
$MAKE $auxdir/ltmain.sh $m4dir/ltversion.m4 ./doc/notes.txt \
|
|
./libtoolize.in ./tests/defs.in ./tests/package.m4 \
|
|
./tests/testsuite ./libltdl/Makefile.am \
|
|
srcdir=. top_srcdir=. PACKAGE="$2" VERSION="$3" \
|
|
PACKAGE_BUGREPORT="bug-$2@gnu.org" M4SH="$AUTOM4TE --language=m4sh" \
|
|
AUTOTEST="$AUTOM4TE --language=autotest" SED="$SED" MAKEINFO="$MAKEINFO"
|
|
|
|
test -f clcommit.m4sh && $MAKE -f Makefile.maint commit \
|
|
srcdir=. top_srcdir=. PACKAGE="$2" VERSION="$3" M4SH="$AUTOM4TE -l m4sh" \
|
|
SED="$SED" GREP="$GREP" FGREP="$FGREP" EGREP="$EGREP" LN_S="$LN_S"
|
|
|
|
rm -f Makefile
|
|
|
|
# Make a dummy libtoolize script for autoreconf:
|
|
test -f clcommit.m4sh && cat > $auxdir/libtoolize <<'EOF'
|
|
#! /bin/sh
|
|
# This is a dummy file for bootstrapping CVS libtool.
|
|
echo "$0: Bootstrap detected, no files installed." | sed 's,^.*/,,g'
|
|
exit 0
|
|
EOF
|
|
chmod 755 $auxdir/libtoolize
|
|
|
|
# Running the installed `libtoolize' will trash the local (newer) libtool.m4
|
|
# among others. Call the dummy script we made earlier.
|
|
LIBTOOLIZE=`pwd`/$auxdir/libtoolize
|
|
export LIBTOOLIZE
|
|
|
|
for sub in $reconfdirs; do
|
|
$AUTORECONF --force --verbose --install $sub
|
|
done
|
|
|
|
# Autoheader valiantly tries to prevent needless reconfigurations by
|
|
# not changing the timestamp of config-h.in unless the file contents
|
|
# are updated. Unfortunately config-h.in depends on aclocal.m4 which
|
|
# *is* updated, so running 'libtoolize --ltdl=. && configure && make'
|
|
# causes autoheader to be called... undesireable for users that do not
|
|
# have it! Fudge the timestamp to prevent that:
|
|
sleep 2 && touch libltdl/config-h.in
|
|
|
|
# Remove our dummy libtoolize
|
|
rm -f $auxdir/libtoolize
|
|
|
|
# These files can cause an infinite configure loop if left behind.
|
|
rm -f Makefile libltdl/Makefile libtool vcl.tmp
|
|
|
|
# This file is misgenerated earlier in bootstrap to satisfy automake 1.9.1
|
|
# and earlier, but has a new enough timestamp to not be updated. Force it
|
|
# to be regenerated at make-time with proper substitutions in place:
|
|
touch $auxdir/ltmain.in
|
|
|
|
# Commit script caveat:
|
|
cat <<'EOF'
|
|
WARNING: You might want to regenerate `commit' and `config/mailnotify'
|
|
WARNING: after you have run `configure' to discover the real whereabouts
|
|
WARNING: of `sed', `grep' etc. like this:
|
|
WARNING:
|
|
WARNING: rm -f $auxdir/mailnotify; make -f Makefile.maint commit
|
|
EOF
|
|
|
|
exit 0
|