From 623bb80b77eb905923bef484ed70e6aeece53c5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Mon, 20 Mar 2000 18:16:52 +0000 Subject: [PATCH] In some of the Makefiles CPP was not defined. --- crypto/bn/Makefile.ssl | 1 + crypto/rc4/Makefile.ssl | 1 + crypto/sha/Makefile.ssl | 1 + 3 files changed, 3 insertions(+) diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl index 29ca88ccd5..3902c41c72 100644 --- a/crypto/bn/Makefile.ssl +++ b/crypto/bn/Makefile.ssl @@ -5,6 +5,7 @@ DIR= bn TOP= ../.. CC= cc +CPP= $(CC) -E INCLUDES= -I.. -I../../include CFLAG=-g INSTALL_PREFIX= diff --git a/crypto/rc4/Makefile.ssl b/crypto/rc4/Makefile.ssl index d3dff0f4a1..53eac2064a 100644 --- a/crypto/rc4/Makefile.ssl +++ b/crypto/rc4/Makefile.ssl @@ -5,6 +5,7 @@ DIR= rc4 TOP= ../.. CC= cc +CPP= $(CC) -E INCLUDES= CFLAG=-g INSTALL_PREFIX= diff --git a/crypto/sha/Makefile.ssl b/crypto/sha/Makefile.ssl index d30e7244c0..0e6e7b8940 100644 --- a/crypto/sha/Makefile.ssl +++ b/crypto/sha/Makefile.ssl @@ -5,6 +5,7 @@ DIR= sha TOP= ../.. CC= cc +CPP= $(CC) -E INCLUDES= CFLAG=-g INSTALL_PREFIX= -- 2.34.1