projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45b71ab
)
Fix DSO name on HP/UX
author
Richard Levitte
<levitte@openssl.org>
Mon, 22 Feb 2016 13:33:38 +0000
(14:33 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 22 Feb 2016 15:12:00 +0000
(16:12 +0100)
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@openssl.org>
Makefile.shared
patch
|
blob
|
history
diff --git
a/Makefile.shared
b/Makefile.shared
index 2617fbf4aac49624b7384c7e99ed602ef611a077..313de4e02f141139a67a8e48ff8c2fc91f89d2de 100644
(file)
--- 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=''; \