mirror of https://github.com/openssl/openssl.git
				
				
				
			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@openssl.org>
This commit is contained in:
		
							parent
							
								
									45b71abe70
								
							
						
					
					
						commit
						d784bcffa3
					
				|  | @ -489,7 +489,7 @@ link_app.irix: | ||||||
| link_dso.hpux: | link_dso.hpux: | ||||||
| 	@if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
 | 	@if $(DETECT_GNU_LD); then $(DO_GNU_DSO); else \
 | ||||||
| 	SHLIB=$(LIBNAME).sl; \
 | 	SHLIB=$(LIBNAME).sl; \
 | ||||||
| 	expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=lib$(LIBNAME).so; \
 | 	expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=$(LIBNAME).so; \
 | ||||||
| 	SHLIB_SUFFIX=; \
 | 	SHLIB_SUFFIX=; \
 | ||||||
| 	ALLSYMSFLAGS=''; \
 | 	ALLSYMSFLAGS=''; \
 | ||||||
| 	NOALLSYMSFLAGS=''; \
 | 	NOALLSYMSFLAGS=''; \
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue