aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-06-08 15:35:57 +0000
committerUlf Möller <ulf@openssl.org>1999-06-08 15:35:57 +0000
commitbebf2787eaf121b6a4522fc8e072c740f0e4804e (patch)
tree14d91d7c9a1b42f2fbebcb78e8890fcd15c5dfad /crypto
parentf439123f38f2326e7a7cfd87cedb914dc28ae17b (diff)
downloadopenssl-bebf2787eaf121b6a4522fc8e072c740f0e4804e.tar.gz
Fix to compile the des app.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/des/Makefile.ssl5
-rw-r--r--crypto/des/des_ver.h1
2 files changed, 5 insertions, 1 deletions
diff --git a/crypto/des/Makefile.ssl b/crypto/des/Makefile.ssl
index e9300e70c0..2f4b370ed1 100644
--- a/crypto/des/Makefile.ssl
+++ b/crypto/des/Makefile.ssl
@@ -6,7 +6,7 @@ DIR= des
TOP= ../..
CC= cc
CPP= $(CC) -E
-INCLUDES=
+INCLUDES=-I../../include
CFLAG=-g
INSTALL_PREFIX=
OPENSSLDIR= /usr/local/ssl
@@ -59,6 +59,9 @@ lib: $(LIBOBJ)
$(RANLIB) $(LIB)
@touch lib
+des: des.o cbc3_enc.o lib
+ $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
+
# elf
asm/dx86-elf.o: asm/dx86unix.cpp
$(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o
diff --git a/crypto/des/des_ver.h b/crypto/des/des_ver.h
index 1a28f48f98..de3c02f110 100644
--- a/crypto/des/des_ver.h
+++ b/crypto/des/des_ver.h
@@ -56,5 +56,6 @@
* [including the GNU Public Licence.]
*/
+#include <openssl/e_os2.h>
OPENSSL_EXTERN char *DES_version; /* SSLeay version string */
OPENSSL_EXTERN char *libdes_version; /* old libdes version string */