Include "e_os.h" instead of "../e_os.h", and trust the building
authorRichard Levitte <levitte@openssl.org>
Wed, 10 Sep 2003 09:15:09 +0000 (09:15 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 10 Sep 2003 09:15:09 +0000 (09:15 +0000)
procedure to give the correct -I options to the compiler.  This is
*especially* true for test programs that appear in two places, with
different paths to e_os.h depending on where they are built.

fips/aes/fips_aesavs.c
fips/des/fips_desmovs.c
fips/dsa/fips_dsatest.c
fips/rand/fips_randtest.c

index 532586a496ca33a89617505d5710a1205cea5cb4..5ffbb086c141fc9331f4a61f3b9209725e194b00 100644 (file)
@@ -19,7 +19,7 @@
 #include <openssl/evp.h>
 #include <openssl/fips.h>
 #include <openssl/err.h>
-#include "../e_os.h"
+#include "e_os.h"
 
 #define AES_BLOCK_SIZE 16
 
index db44b8a6e44c55482c3d89d680ccbb7592cc1e88..177cff26e0db173eb1b72b7ba81dfd1435171a84 100644 (file)
@@ -20,7 +20,7 @@
 #include <openssl/evp.h>
 #include <openssl/fips.h>
 #include <openssl/err.h>
-#include "../e_os.h"
+#include "e_os.h"
 
 /*#define AES_BLOCK_SIZE 16*/
 
index 7a54d38c789758b3ead5d940b444fc0551eb665f..8fc4d01fc0746908826d991f51b0bb2211efc8c6 100644 (file)
@@ -62,7 +62,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#include "../e_os.h"
+#include "e_os.h"
 
 #include <openssl/crypto.h>
 #include <openssl/rand.h>
index 5fcee19d5247632393e956a839be031aa916d19e..011678a5a5af605153c22e88f9e74451b9b8f5a0 100644 (file)
 #include <openssl/rand.h>
 #include <openssl/fips_rand.h>
 
-#include "../e_os.h"
+#include "e_os.h"
 
 #ifndef FIPS
 int main(int argc, char *argv[])