diff options
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | m4/slibtool.m4 | 2 | ||||
-rw-r--r-- | project/tagver.mk | 2 |
3 files changed, 17 insertions, 2 deletions
@@ -1,3 +1,18 @@ +0.7.1: + +This patch release enhances the slibtoolize's ability to serve as +a libtoolize drop-in replacement. In terms of new features, it is +now possible to configure the default binary tool (ar, as, nm, ranlib) +to be invoked by slibtool (as opposed to the non-prefixed tools that +are mandated by posix) when performing a native build. + + +project: new configure options: --with-preferred-host-{ar|as|nm|ranlib} +slibtool.m4: provide the LT_CONFIG_LTDL_DIR macro. +slibtool.m4: provide the LTDL_INIT macro. +slibtool.m4, m4/sltdl.m4: provide the LIBLTDL, LTDLINCL, and LTDLDEPS vars. +slibtoolize: fully support --ltdl, LTDL_INIT, and LT_CONFIG_LTDL_DIR. + 0.7.0: This minor release follows the initial release of sltdl alongside diff --git a/m4/slibtool.m4 b/m4/slibtool.m4 index dab1e6a..0d7c458 100644 --- a/m4/slibtool.m4 +++ b/m4/slibtool.m4 @@ -543,7 +543,7 @@ _SLIBTOOL_ARG_WITH([sysroot],[absolute path to the target's sysroot],[slibtool_s # -------------------- slibtool_set_flavor LIBTOOL='$(SLIBTOOL)' -SLIBTOOL="${SLIBTOOL} ${SLIBTOOL_FLAGS}" +SLIBTOOL="${SLIBTOOL}${SLIBTOOL_FLAGS:+ }${SLIBTOOL_FLAGS}" AC_SUBST([LIBTOOL]) AC_SUBST([SLIBTOOL]) diff --git a/project/tagver.mk b/project/tagver.mk index 0f290d4..26728a4 100644 --- a/project/tagver.mk +++ b/project/tagver.mk @@ -2,4 +2,4 @@ VER_NAMESPACE = SLBT VER_MAJOR = 0 VER_MINOR = 7 -VER_PATCH = 0 +VER_PATCH = 1 |