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 /libxrdp | |
parent | 24d44def601a7ebae5b79743a9c34ca024997531 (diff) | |
download | xrdp-proprietary-b2d3dcf16979a54ecc3cf4fbfc6ee0e4a4f3521b.tar.gz xrdp-proprietary-b2d3dcf16979a54ecc3cf4fbfc6ee0e4a4f3521b.zip |
Include config_ac.h from all source files
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/libxrdp.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_bitmap32_compress.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_bitmap_compress.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_caps.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_channel.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_fastpath.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_iso.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_jpeg_compress.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_mcs.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_mppc_enc.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_orders.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_orders_rail.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_rdp.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_sec.c | 4 | ||||
-rw-r--r-- | libxrdp/xrdp_surface.c | 4 |
15 files changed, 60 insertions, 0 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index 25d25a99..074e4ddd 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -18,6 +18,10 @@ * this is the interface to libxrdp */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "xrdp_orders_rail.h" diff --git a/libxrdp/xrdp_bitmap32_compress.c b/libxrdp/xrdp_bitmap32_compress.c index daec9f28..4f6cf253 100644 --- a/libxrdp/xrdp_bitmap32_compress.c +++ b/libxrdp/xrdp_bitmap32_compress.c @@ -24,6 +24,10 @@ RDP 6.0 Bitmap Compression http://msdn.microsoft.com/en-us/library/cc241877.aspx */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #define FLAGS_RLE 0x10 diff --git a/libxrdp/xrdp_bitmap_compress.c b/libxrdp/xrdp_bitmap_compress.c index 56898776..91eea60a 100644 --- a/libxrdp/xrdp_bitmap_compress.c +++ b/libxrdp/xrdp_bitmap_compress.c @@ -20,6 +20,10 @@ * This does not do 32 bpp compression, nscodec, rfx, etc */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #define BC_MAX_BYTES (16 * 1024) diff --git a/libxrdp/xrdp_caps.c b/libxrdp/xrdp_caps.c index c4ec7b02..43d5d949 100644 --- a/libxrdp/xrdp_caps.c +++ b/libxrdp/xrdp_caps.c @@ -19,6 +19,10 @@ * RDP Capability Sets */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" /*****************************************************************************/ diff --git a/libxrdp/xrdp_channel.c b/libxrdp/xrdp_channel.c index 2da0ecdb..9fd9feab 100644 --- a/libxrdp/xrdp_channel.c +++ b/libxrdp/xrdp_channel.c @@ -18,6 +18,10 @@ * channel layer */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" /* todo, move these to constants.h */ diff --git a/libxrdp/xrdp_fastpath.c b/libxrdp/xrdp_fastpath.c index 33e9c9d0..41f6340b 100644 --- a/libxrdp/xrdp_fastpath.c +++ b/libxrdp/xrdp_fastpath.c @@ -17,6 +17,10 @@ * limitations under the License. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" /*****************************************************************************/ diff --git a/libxrdp/xrdp_iso.c b/libxrdp/xrdp_iso.c index b89e1616..861a5e5d 100644 --- a/libxrdp/xrdp_iso.c +++ b/libxrdp/xrdp_iso.c @@ -19,6 +19,10 @@ * iso layer */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "log.h" diff --git a/libxrdp/xrdp_jpeg_compress.c b/libxrdp/xrdp_jpeg_compress.c index d337af1b..e516861d 100644 --- a/libxrdp/xrdp_jpeg_compress.c +++ b/libxrdp/xrdp_jpeg_compress.c @@ -18,6 +18,10 @@ * jpeg compressor */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #if defined(XRDP_TJPEG) diff --git a/libxrdp/xrdp_mcs.c b/libxrdp/xrdp_mcs.c index 8ed821e9..f66398ed 100644 --- a/libxrdp/xrdp_mcs.c +++ b/libxrdp/xrdp_mcs.c @@ -18,6 +18,10 @@ * mcs layer */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "log.h" diff --git a/libxrdp/xrdp_mppc_enc.c b/libxrdp/xrdp_mppc_enc.c index ff6caf4d..93ff84a2 100644 --- a/libxrdp/xrdp_mppc_enc.c +++ b/libxrdp/xrdp_mppc_enc.c @@ -18,6 +18,10 @@ * limitations under the License. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #define MPPC_ENC_DEBUG 0 diff --git a/libxrdp/xrdp_orders.c b/libxrdp/xrdp_orders.c index b0c28ed8..3ce0ecb5 100644 --- a/libxrdp/xrdp_orders.c +++ b/libxrdp/xrdp_orders.c @@ -18,6 +18,10 @@ * orders */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #if defined(XRDP_NEUTRINORDP) diff --git a/libxrdp/xrdp_orders_rail.c b/libxrdp/xrdp_orders_rail.c index 3c5d5b63..19da4c2c 100644 --- a/libxrdp/xrdp_orders_rail.c +++ b/libxrdp/xrdp_orders_rail.c @@ -16,6 +16,10 @@ * limitations under the License. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "xrdp_rail.h" diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index 571ee093..c43d8ca7 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -18,6 +18,10 @@ * rdp layer */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include <openssl/ssl.h> #include "libxrdp.h" #include "log.h" diff --git a/libxrdp/xrdp_sec.c b/libxrdp/xrdp_sec.c index b5d33863..2ef51d49 100644 --- a/libxrdp/xrdp_sec.c +++ b/libxrdp/xrdp_sec.c @@ -18,6 +18,10 @@ * secure layer */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "log.h" diff --git a/libxrdp/xrdp_surface.c b/libxrdp/xrdp_surface.c index 701ee3b5..85978c0a 100644 --- a/libxrdp/xrdp_surface.c +++ b/libxrdp/xrdp_surface.c @@ -17,6 +17,10 @@ * limitations under the License. */ +#if defined(HAVE_CONFIG_H) +#include <config_ac.h> +#endif + #include "libxrdp.h" #include "freerdp/codec/rfx.h" |