Include "config.h" (if it exists) in all yaSSL files via their "runtime.hpp".

Fixes bug#19040 "yaSSL does not compile on AIX".


extra/yassl/taocrypt/include/runtime.hpp:
  Include "config.h" (if it exists) in all yaSSL files. This is needed to ensure the same 
  configure settings are used for yaSSL as for the other modules linked together.
  Example: the settings for "large file" on AIX.
  Fixes bug#19040 "yaSSL does not compile on AIX".
This commit is contained in:
unknown 2006-05-17 19:08:18 +02:00
parent 6ee68c82fb
commit 8d4cbe39a6

View File

@ -28,6 +28,10 @@
#ifndef yaSSL_NEW_HPP
#define yaSSL_NEW_HPP
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef __sun