diff options
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | include/sltdl/sltdl.h | 2 | ||||
-rw-r--r-- | project/extras.mk | 3 | ||||
-rw-r--r-- | project/tagver.mk | 2 |
4 files changed, 15 insertions, 1 deletions
@@ -1,3 +1,12 @@ +0.5.1: + +The purpose of this patch release, with only two small changes since the +first tagged release, is to accelerate testing of slibtool and slibtoolize +integration on Adélie Linux. + +sltdl.h: api compatibility: provide the LT_PATHSEP_CHAR macro. +project: ltdl drop-in-replacement: create the target ${libdir} as needed. + 0.5.0: This is the first tagged release of sltdl, a clean implementation for modern diff --git a/include/sltdl/sltdl.h b/include/sltdl/sltdl.h index 2b9d399..cc3c58e 100644 --- a/include/sltdl/sltdl.h +++ b/include/sltdl/sltdl.h @@ -20,6 +20,8 @@ extern "C" { /* */ /**********************************************************************/ +#define LT_PATHSEP_CHAR ':' + typedef struct lt_modctx * lt_dlhandle; typedef struct lt_modctl * lt_dladvise; diff --git a/project/extras.mk b/project/extras.mk index c99ffaa..720ef23 100644 --- a/project/extras.mk +++ b/project/extras.mk @@ -11,16 +11,19 @@ install-headers-ltdl: mv $(DESTDIR)$(INCLUDEDIR)/ltdl.h.tmp $(DESTDIR)$(INCLUDEDIR)/ltdl.h install-shared-ltdl: + mkdir -p $(DESTDIR)$(LIBDIR) rm -f lib/libltdl.so.tmp ln -s $(DSO_SOLINK) lib/libltdl.so.tmp mv lib/libltdl.so.tmp $(DESTDIR)$(LIBDIR)/$(LIBLTDL_SOLINK) install-static-ltdl: + mkdir -p $(DESTDIR)$(LIBDIR) rm -f lib/libltdl.a.tmp ln -s $(STATIC_LIB_NAME) lib/libltdl.a.tmp mv lib/libltdl.a.tmp $(DESTDIR)$(LIBDIR)/$(LIBLTDL_ARLINK) install-implib-ltdl: + mkdir -p $(DESTDIR)$(LIBDIR) rm -f lib/libltdl.lib.a.tmp ln -s $(IMP_SOLINK) lib/libltdl.lib.a.tmp mv lib/libltdl.lib.a.tmp $(DESTDIR)$(LIBDIR)/$(LIBLTDL_IMPLIB) diff --git a/project/tagver.mk b/project/tagver.mk index aa41f60..29df266 100644 --- a/project/tagver.mk +++ b/project/tagver.mk @@ -2,4 +2,4 @@ VER_NAMESPACE = LT VER_MAJOR = 0 VER_MINOR = 5 -VER_PATCH = 0 +VER_PATCH = 1 |