diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-04-27 19:30:10 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-04-27 19:30:10 +0000 |
commit | da80c673e9f5d0b05118f4f0b8698402fd2c6dd2 (patch) | |
tree | 2d09f3e68d89826243539797069be161e8141129 /cpp/src/qpid/client/LoadPlugins.cpp | |
parent | 69cc57051a56a9c80d599a9d3a2e286f62c2fb8a (diff) | |
download | qpid-python-da80c673e9f5d0b05118f4f0b8698402fd2c6dd2.tar.gz |
Fix compile error - missing config.h check and QPIDC_MODULE_DIR, QPIDC_CONF_FILE
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@769117 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/LoadPlugins.cpp')
-rw-r--r-- | cpp/src/qpid/client/LoadPlugins.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/LoadPlugins.cpp b/cpp/src/qpid/client/LoadPlugins.cpp index eca6aa47fc..82cdedc7fe 100644 --- a/cpp/src/qpid/client/LoadPlugins.cpp +++ b/cpp/src/qpid/client/LoadPlugins.cpp @@ -19,7 +19,9 @@ * */ -#include "config.h" +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include "qpid/Modules.h" #include "qpid/sys/Shlib.h" #include <string> |