Include "e_os.h" instead of "../e_os.h", and trust the building

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.
This commit is contained in:
Richard Levitte 2003-09-10 09:15:09 +00:00
parent fa68935f57
commit 27d63818e1
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/fips.h> #include <openssl/fips.h>
#include <openssl/err.h> #include <openssl/err.h>
#include "../e_os.h" #include "e_os.h"
#define AES_BLOCK_SIZE 16 #define AES_BLOCK_SIZE 16

View File

@ -20,7 +20,7 @@
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/fips.h> #include <openssl/fips.h>
#include <openssl/err.h> #include <openssl/err.h>
#include "../e_os.h" #include "e_os.h"
/*#define AES_BLOCK_SIZE 16*/ /*#define AES_BLOCK_SIZE 16*/

View File

@ -62,7 +62,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include "../e_os.h" #include "e_os.h"
#include <openssl/crypto.h> #include <openssl/crypto.h>
#include <openssl/rand.h> #include <openssl/rand.h>

View File

@ -108,7 +108,7 @@
#include <openssl/rand.h> #include <openssl/rand.h>
#include <openssl/fips_rand.h> #include <openssl/fips_rand.h>
#include "../e_os.h" #include "e_os.h"
#ifndef FIPS #ifndef FIPS
int main(int argc, char *argv[]) int main(int argc, char *argv[])