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>2003-08-11 14:24:52 +0400
committerRichard Levitte <levitte@openssl.org>2003-08-11 14:24:52 +0400
commitec47bb7c817207b5904e8cfd01cb91aba119dd4e (patch)
treed28ab8cefc1e2c9835d7228bf81a0f8e5b7635af /apps
parentbf50d5b4ac6164e1bdca3ce0190cf65cfbdffa68 (diff)
- Add a configuration keyword "fips" to compile with FIPS
implementations. - Reorder the build so the standalone FIPS SHA1 checker is built first. - Add necessary defines to avoid symbol clashes between FIPS and non-FIPS implementations. - Change necessary signatures. - Correct bugs in FIPS build Makefiles. - make update
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 90e71dee76..775d53b057 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -145,7 +145,7 @@ $(DLIBCRYPTO):
$(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
$(RM) $(PROGRAM)
- if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
+ if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" -o "$(SHLIB_TARGET)" = "" ] ; then \
$(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \
else \
LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \