Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-11 23:49:01 +0300
committerRichard Levitte <levitte@openssl.org>2002-11-11 23:49:01 +0300
commita1edc876641ad919ad85915291ed219ddf762ac3 (patch)
tree7cb2f640ac7edc7d9f1c913615c2cb838c645427 /apps
parent9cbc3356e7388b6b718e3d316ee727921bb83917 (diff)
Make the programs link against the static library on MacOS X.
PR: 335
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile.ssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index c827700845..8f98a6bdbd 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -141,7 +141,7 @@ $(DLIBCRYPTO):
$(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
$(RM) $(PROGRAM)
- if [ "$(SHLIB_TARGET)" = "hpux-shared" ] ; then \
+ if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
$(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \
else \
$(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \