From 8d4cbe39a69e3d87ee00d05f26306caa8e2b296a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 17 May 2006 19:08:18 +0200 Subject: 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". --- extra/yassl/taocrypt/include/runtime.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extra/yassl/taocrypt/include/runtime.hpp b/extra/yassl/taocrypt/include/runtime.hpp index 3a5cf62865a..09ca7524ef3 100644 --- a/extra/yassl/taocrypt/include/runtime.hpp +++ b/extra/yassl/taocrypt/include/runtime.hpp @@ -28,6 +28,10 @@ #ifndef yaSSL_NEW_HPP #define yaSSL_NEW_HPP +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #ifdef __sun -- cgit v1.2.1