From: Ossama Othman Date: Mon, 14 Jan 2002 19:04:40 +0000 (+0000) Subject: From Roger Leigh : X-Git-Tag: release-1-4-3~29 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=10602f60eb799bb5225848a76039d9508e453339;p=thirdparty%2Flibtool.git From Roger Leigh : * libtoolize.in (auxdirline): Fixed hardcoded value of "configure.in." Instead use "$configure_ac" variable. Corrects AC_CONFIG_AUX_DIR support when using new style `configure.ac.' * doc/libtool.texi: Corrected typo. "Safety" not "Saftey". --- diff --git a/ChangeLog b/ChangeLog index 13784b567..c1e8bd9c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2002-01-14 Ossama Othman + + From Roger Leigh : + * libtoolize.in (auxdirline): Fixed hardcoded value of + "configure.in." Instead use "$configure_ac" variable. Corrects + AC_CONFIG_AUX_DIR support when using new style `configure.ac.' + + * doc/libtool.texi: Corrected typo. "Safety" not "Saftey". + 2002-01-14 Robert Boehne * libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Add mips/mipsel to list of diff --git a/doc/libtool.texi b/doc/libtool.texi index 0e2101ded..f217bd984 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -165,7 +165,7 @@ Using libltdl * Libltdl interface:: How to use libltdl in your programs. * Modules for libltdl:: Creating modules that can be @code{dlopen}ed. -* Thread Saftey in libltdl:: Registering callbacks for multi-thread safety. +* Thread Safety in libltdl:: Registering callbacks for multi-thread safety. * User defined module data:: Associating data with loaded modules. * Module loaders for libltdl:: Creating user defined module loaders. * Distributing libltdl:: How to distribute libltdl with your package. @@ -2646,7 +2646,7 @@ distribution terms that you use for the rest of that program. @menu * Libltdl interface:: How to use libltdl in your programs. * Modules for libltdl:: Creating modules that can be @code{dlopen}ed. -* Thread Saftey in libltdl:: Registering callbacks for multi-thread safety. +* Thread Safety in libltdl:: Registering callbacks for multi-thread safety. * User defined module data:: Associating data with loaded modules. * Module loaders for libltdl:: Creating user defined module loaders. * Distributing libltdl:: How to distribute libltdl with your package. @@ -2943,7 +2943,7 @@ foo1_la_LDFLAGS = -module @end example -@node Thread Saftey in libltdl +@node Thread Safety in libltdl @section Using libtldl in a multi threaded environment Using the @code{lt_dlmutex_register()} function, and by providing some diff --git a/libtoolize.in b/libtoolize.in index 79f4a41e1..a95b5ed64 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -154,7 +154,7 @@ fi files='config.guess config.sub ltmain.sh' auxdir=. -auxdirline=`egrep '^AC_CONFIG_AUX_DIR' configure.in 2>/dev/null` +auxdirline=`egrep '^AC_CONFIG_AUX_DIR' $configure_ac 2>/dev/null` if test -n "$auxdirline"; then # Handle explicit AC_CONFIG_AUX_DIR settings. auxdir=`echo "$auxdirline" | sed 's/^AC_CONFIG_AUX_DIR(\([^)]*\)).*$/\1/'`