mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix dynamic link problem in SSL bundle
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ff84259b2a
commit
b28eb06393
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2002-08-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* SSL/GNUmakefile: Added -lgnustep-base and -lobjc to SSL_BUNDLE_LIBS
|
||||
So that bundle is linked with a dependency on these libraries ... to
|
||||
ensure that dynamic linkage works when the bundle is loaded in from
|
||||
java via jigs.
|
||||
|
||||
2002-08-15 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* SSL/configure.ac: Simplified check for libraries. Added socket
|
||||
|
|
|
@ -50,7 +50,7 @@ SSL_OBJC_FILES = GSSSLHandle.m
|
|||
# The principal class in the bundle
|
||||
SSL_PRINCIPAL_CLASS = GSSSLHandle
|
||||
|
||||
SSL_BUNDLE_LIBS = $(SSLLIBS)
|
||||
SSL_BUNDLE_LIBS = $(SSLLIBS) -lgnustep-base -lobjc
|
||||
|
||||
endif
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ ADDITIONAL_INCLUDE_DIRS = -I./$(GNUSTEP_TARGET_DIR) \
|
|||
-I../Headers/gnustep -I../Headers
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS =
|
||||
ADDITIONAL_LDFLAGS =
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS = -L../Source/$(GNUSTEP_OBJ_DIR)
|
||||
|
|
Loading…
Reference in a new issue