1998-11-02 16:34:05 +08:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# helps bootstrapping libtool, when checked out from CVS
|
|
|
|
# requires GNU autoconf and GNU automake
|
|
|
|
|
2000-09-16 08:33:37 +08:00
|
|
|
file=Makefile.in
|
|
|
|
|
2001-04-23 07:28:01 +08:00
|
|
|
: ${ACLOCAL=aclocal}
|
|
|
|
: ${AUTOMAKE=automake}
|
|
|
|
: ${AUTOCONF=autoconf}
|
|
|
|
: ${AUTOHEADER=autoheader}
|
|
|
|
|
1998-12-20 18:26:52 +08:00
|
|
|
rm -f acinclude.m4
|
|
|
|
ln -s libtool.m4 acinclude.m4
|
1999-01-14 17:33:48 +08:00
|
|
|
# fake the libtool scripts
|
|
|
|
touch ltmain.sh
|
2000-09-07 08:38:04 +08:00
|
|
|
touch ltconfig
|
1999-01-14 17:33:48 +08:00
|
|
|
touch libtoolize
|
2001-04-23 07:28:01 +08:00
|
|
|
$ACLOCAL
|
|
|
|
$AUTOMAKE --gnu --add-missing --copy
|
|
|
|
$AUTOCONF
|
1998-12-20 18:26:52 +08:00
|
|
|
|
1999-12-16 19:40:16 +08:00
|
|
|
for sub in libltdl demo depdemo mdemo cdemo; do
|
1998-12-20 18:26:52 +08:00
|
|
|
cd $sub
|
2000-11-01 07:30:59 +08:00
|
|
|
rm -f acinclude.m4 Makefile
|
1999-12-16 19:40:16 +08:00
|
|
|
cat ../libtool.m4 > acinclude.m4
|
* update all copyright notices to 2000
* doc/libtool.texi (using libltdl): document new lt_dlinfo struct,
replace NULL with @code{NULL}, document lt_dlsetdata(),
lt_dlgetdata() and lt_dlgetinfo()
* libltdl/Makefile.am: increment interface version number
* libltdl/configure.in: set version number to 1.1
* libltdl/ltdl.c: make some variables public by moving them
to the info struct, add support for application specific data
within module handles, new lt_dlsetdata(), lt_dlgetdata() and
lt_dlgetinfo() functions,
fix memory leaks, minor cleanups
* libltdl/ltdl.h: ditto
* mdemo/main.c: demonstrate use of lt_dlgetinfo,
improved handling of errors
* ltconfig.in: set hardcode_into_libs = yes for GNU/Hurd, Linux
and Solaris, only hardcode *all* run-paths if hardcode_into_libs
is set to 'all', otherwise hardcode only user-specified rpaths
into libraries
* ltmain.in: minor cleanups, we don't need to add user-specified
rpaths to compile_rpath, finalize_rpath is sufficient
* ltconfig.in: transform linux* -> *linux-gnu* _after_ host_os has
been set! (reported by Bruno Haible <haible@ilog.fr>)
* configure.in: AC_SUBST reload_flag, deplibs_check_method
and file_magic_cmd
* README: use 'libtool --version' instead of 'ltconfig --version'
(suggested by Francios Pinard <pinard@iro.umontreal.ca>
2000-01-13 08:28:09 +08:00
|
|
|
test "$sub" = libltdl && cat ../ltdl.m4 >> acinclude.m4
|
2001-04-23 07:28:01 +08:00
|
|
|
$ACLOCAL
|
|
|
|
test "$sub" = libltdl && $AUTOHEADER
|
|
|
|
$AUTOMAKE --gnits --add-missing
|
|
|
|
$AUTOCONF
|
1998-12-20 18:26:52 +08:00
|
|
|
cd ..
|
|
|
|
done
|
1999-05-21 01:54:09 +08:00
|
|
|
|
2000-11-01 07:30:59 +08:00
|
|
|
rm -f ltmain.sh ltconfig libtoolize Makefile
|
1998-12-20 18:26:52 +08:00
|
|
|
|
1998-11-02 16:34:05 +08:00
|
|
|
exit 0
|