diff options
author | Andy Polyakov <appro@openssl.org> | 2007-07-31 20:24:41 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2007-07-31 20:24:41 +0200 |
commit | d6c764573c8e58f4c11ae5150ff5db4aa160cb4f (patch) | |
tree | 60e5682245d60fbac19960cc9f250a08e6f50a25 /apps | |
parent | Typo in ppccpuid.pl. (diff) | |
download | openssl-d6c764573c8e58f4c11ae5150ff5db4aa160cb4f.tar.xz openssl-d6c764573c8e58f4c11ae5150ff5db4aa160cb4f.zip |
Proper support for shared build under MacOS X.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/Makefile b/apps/Makefile index 6b57f0d3ed..009444fb58 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -154,11 +154,7 @@ $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ shlib_target="$(SHLIB_TARGET)"; \ fi; \ - if [ "$${shlib_target}" = "darwin-shared" ] ; then \ - LIBRARIES="$(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO)" ; \ - else \ - LIBRARIES="$(LIBSSL) $(LIBKRB5) $(LIBCRYPTO)" ; \ - fi; \ + LIBRARIES="$(LIBSSL) $(LIBKRB5) $(LIBCRYPTO)" ; \ $(MAKE) -f $(TOP)/Makefile.shared -e \ APPNAME=$(EXE) OBJECTS="$(PROGRAM).o $(E_OBJ)" \ LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |