diff options
author | Pavel Roskin <plroskin@gmail.com> | 2017-03-02 20:33:23 -0800 |
---|---|---|
committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-04 00:52:34 -0800 |
commit | b2d3dcf16979a54ecc3cf4fbfc6ee0e4a4f3521b (patch) | |
tree | 168d3065b744f8f758eb7d9d57feab5d0a51c204 /common | |
parent | 24d44def601a7ebae5b79743a9c34ca024997531 (diff) | |
download | xrdp-proprietary-b2d3dcf16979a54ecc3cf4fbfc6ee0e4a4f3521b.tar.gz xrdp-proprietary-b2d3dcf16979a54ecc3cf4fbfc6ee0e4a4f3521b.zip |
Include config_ac.h from all source files
Diffstat (limited to 'common')
-rw-r--r-- | common/fifo.c | 4 | ||||
-rw-r--r-- | common/file.c | 4 | ||||
-rw-r--r-- | common/list.c | 4 | ||||
-rw-r--r-- | common/list16.c | 4 | ||||
-rw-r--r-- | common/log.c | 4 | ||||
-rw-r--r-- | common/pixman-region.c | 4 | ||||
-rw-r--r-- | common/ssl_calls.c | 4 | ||||
-rw-r--r-- | common/thread_calls.c | 4 | ||||
-rw-r--r-- | common/trans.c | 4 |
9 files changed, 36 insertions, 0 deletions
diff --git a/common/fifo.c b/common/fifo.c index e3f6f3bc..61e30144 100644 --- a/common/fifo.c +++ b/common/fifo.c @@ -18,6 +18,10 @@ * FIFO implementation to store pointer to data struct */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "fifo.h" #include "os_calls.h" diff --git a/common/file.c b/common/file.c index 66d781f7..236ac3d8 100644 --- a/common/file.c +++ b/common/file.c @@ -18,6 +18,10 @@ * read a config file */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "arch.h" #include "os_calls.h" #include "list.h" diff --git a/common/list.c b/common/list.c index b95b3444..71f2d84a 100644 --- a/common/list.c +++ b/common/list.c @@ -18,6 +18,10 @@ * simple list */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "arch.h" #include "os_calls.h" #include "list.h" diff --git a/common/list16.c b/common/list16.c index 5e5c3d7f..7ed4a169 100644 --- a/common/list16.c +++ b/common/list16.c @@ -18,6 +18,10 @@ * simple list */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "arch.h" #include "os_calls.h" #include "list16.h" diff --git a/common/log.c b/common/log.c index c8703df8..e8e64f2f 100644 --- a/common/log.c +++ b/common/log.c @@ -16,6 +16,10 @@ * limitations under the License. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> diff --git a/common/pixman-region.c b/common/pixman-region.c index 2d199de8..eb3fd179 100644 --- a/common/pixman-region.c +++ b/common/pixman-region.c @@ -63,6 +63,10 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #define PIXREGION_NIL(reg) ((reg)->data && !(reg)->data->numRects) /* not a region */ #define PIXREGION_NAR(reg) ((reg)->data == pixman_broken_data) diff --git a/common/ssl_calls.c b/common/ssl_calls.c index 9829a97b..1e50270b 100644 --- a/common/ssl_calls.c +++ b/common/ssl_calls.c @@ -19,6 +19,10 @@ * ssl calls */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include <stdlib.h> /* needed for openssl headers */ #include <openssl/ssl.h> #include <openssl/err.h> diff --git a/common/thread_calls.c b/common/thread_calls.c index d828b353..addad6fd 100644 --- a/common/thread_calls.c +++ b/common/thread_calls.c @@ -18,6 +18,10 @@ * thread calls */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #if defined(_WIN32) #include <windows.h> #elif defined(__APPLE__) diff --git a/common/trans.c b/common/trans.c index 8f2c4376..f77f959d 100644 --- a/common/trans.c +++ b/common/trans.c @@ -18,6 +18,10 @@ * generic transport */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "os_calls.h" #include "trans.h" #include "arch.h" |