[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Mon Feb 22 15:12:35 UTC 2016


The branch master has been updated
       via  d784bcffa3dcd7ac4a0c77bfac4e686dcb771bd9 (commit)
      from  45b71abe7034c8985e1f932d88b4b1239bb27371 (commit)


- Log -----------------------------------------------------------------
commit d784bcffa3dcd7ac4a0c77bfac4e686dcb771bd9
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Feb 22 14:33:38 2016 +0100

    Fix DSO name on HP/UX
    
    If dlfcn is used, the name was set to lib$(LIBNAME).so when it should
    have been just $(LIBNAME).so.
    
    Reviewed-by: Andy Polyakov <appro at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 Makefile.shared | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.shared b/Makefile.shared
index 2617fbf..313de4e 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -489,7 +489,7 @@ link_app.irix:
 link_dso.hpux:
 	@if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
 	SHLIB=$(LIBNAME).sl; \
-	expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=lib$(LIBNAME).so; \
+	expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=$(LIBNAME).so; \
 	SHLIB_SUFFIX=; \
 	ALLSYMSFLAGS=''; \
 	NOALLSYMSFLAGS=''; \


More information about the openssl-commits mailing list