diff options
author | unknown <joerg@mysql.com> | 2006-05-17 19:08:18 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2006-05-17 19:08:18 +0200 |
commit | 8d4cbe39a69e3d87ee00d05f26306caa8e2b296a (patch) | |
tree | 210a0ad0a41c902dbe0a2665fc55903a581fdd4f /extra | |
parent | 6ee68c82fbf92624036b5b54dcf22c522ac4556f (diff) | |
download | mariadb-git-8d4cbe39a69e3d87ee00d05f26306caa8e2b296a.tar.gz |
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".
Diffstat (limited to 'extra')
-rw-r--r-- | extra/yassl/taocrypt/include/runtime.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
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 |