From d9c041db4fd9f626981716321bed4a909ccce6ab Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Thu, 2 Feb 2017 22:44:00 -0800 Subject: [PATCH] add config header, update copyright year --- module/rdp.h | 2 +- module/rdpCapture.c | 6 +++++- module/rdpCapture.h | 2 +- module/rdpClientCon.c | 6 +++++- module/rdpClientCon.h | 2 +- module/rdpComposite.c | 6 +++++- module/rdpComposite.h | 2 +- module/rdpCopyArea.c | 6 +++++- module/rdpCopyArea.h | 2 +- module/rdpCopyPlane.c | 6 +++++- module/rdpCopyPlane.h | 2 +- module/rdpCursor.c | 6 +++++- module/rdpCursor.h | 2 +- module/rdpDraw.c | 6 +++++- module/rdpDraw.h | 2 +- module/rdpFillPolygon.c | 6 +++++- module/rdpFillPolygon.h | 2 +- module/rdpFillSpans.c | 6 +++++- module/rdpFillSpans.h | 2 +- module/rdpGC.c | 6 +++++- module/rdpGC.h | 2 +- module/rdpGlyphs.c | 6 +++++- module/rdpGlyphs.h | 2 +- module/rdpImageGlyphBlt.c | 6 +++++- module/rdpImageGlyphBlt.h | 2 +- module/rdpImageText16.c | 6 +++++- module/rdpImageText16.h | 2 +- module/rdpImageText8.c | 6 +++++- module/rdpImageText8.h | 2 +- module/rdpInput.c | 6 +++++- module/rdpInput.h | 2 +- module/rdpMain.c | 6 +++++- module/rdpMain.h | 2 +- module/rdpMisc.c | 6 +++++- module/rdpMisc.h | 2 +- module/rdpPixmap.c | 6 +++++- module/rdpPixmap.h | 2 +- module/rdpPolyArc.c | 6 +++++- module/rdpPolyArc.h | 2 +- module/rdpPolyFillArc.c | 6 +++++- module/rdpPolyFillArc.h | 2 +- module/rdpPolyFillRect.c | 6 +++++- module/rdpPolyFillRect.h | 2 +- module/rdpPolyGlyphBlt.c | 6 +++++- module/rdpPolyGlyphBlt.h | 2 +- module/rdpPolyPoint.c | 6 +++++- module/rdpPolyPoint.h | 2 +- module/rdpPolyRectangle.c | 6 +++++- module/rdpPolyRectangle.h | 2 +- module/rdpPolySegment.c | 6 +++++- module/rdpPolySegment.h | 2 +- module/rdpPolyText16.c | 6 +++++- module/rdpPolyText16.h | 2 +- module/rdpPolyText8.c | 6 +++++- module/rdpPolyText8.h | 2 +- module/rdpPolylines.c | 6 +++++- module/rdpPolylines.h | 2 +- module/rdpPri.c | 6 +++++- module/rdpPri.h | 2 +- module/rdpPushPixels.c | 6 +++++- module/rdpPushPixels.h | 2 +- module/rdpPutImage.c | 6 +++++- module/rdpPutImage.h | 2 +- module/rdpRandR.c | 6 +++++- module/rdpRandR.h | 2 +- module/rdpReg.c | 6 +++++- module/rdpReg.h | 2 +- module/rdpSetSpans.c | 6 +++++- module/rdpSetSpans.h | 2 +- module/rdpSimd.c | 6 +++++- module/rdpSimd.h | 2 +- module/rdpTrapezoids.c | 6 +++++- module/rdpTrapezoids.h | 2 +- module/rdpXv.c | 6 +++++- module/rdpXv.h | 2 +- tests/yuv2rgb/yuv2rgb_speed.c | 2 +- xrdpdev/xrdpdev.c | 6 +++++- xrdpkeyb/rdpKeyboard.c | 6 +++++- xrdpmouse/rdpMouse.c | 6 +++++- 79 files changed, 239 insertions(+), 79 deletions(-) diff --git a/module/rdp.h b/module/rdp.h index 21fd9fa9..1ea4d8f0 100644 --- a/module/rdp.h +++ b/module/rdp.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpCapture.c b/module/rdpCapture.c index 680bf744..c0594089 100644 --- a/module/rdpCapture.c +++ b/module/rdpCapture.c @@ -1,6 +1,6 @@ /* Copyright 2014 Laxmikant Rashinkar -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -22,6 +22,10 @@ capture */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpCapture.h b/module/rdpCapture.h index a799b661..b6c90950 100644 --- a/module/rdpCapture.h +++ b/module/rdpCapture.h @@ -1,6 +1,6 @@ /* Copyright 2014 Laxmikant Rashinkar -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpClientCon.c b/module/rdpClientCon.c index 17da34f8..f1d31573 100644 --- a/module/rdpClientCon.c +++ b/module/rdpClientCon.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ Client connection to xrdp */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpClientCon.h b/module/rdpClientCon.h index 5d770386..0f798023 100644 --- a/module/rdpClientCon.h +++ b/module/rdpClientCon.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpComposite.c b/module/rdpComposite.c index e5f94b8c..ced45e7a 100644 --- a/module/rdpComposite.c +++ b/module/rdpComposite.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ composite(alpha blending) calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpComposite.h b/module/rdpComposite.h index d9968109..08fd7da9 100644 --- a/module/rdpComposite.h +++ b/module/rdpComposite.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpCopyArea.c b/module/rdpCopyArea.c index 92e4b628..48508622 100644 --- a/module/rdpCopyArea.c +++ b/module/rdpCopyArea.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpCopyArea.h b/module/rdpCopyArea.h index 9d6e9e88..5b8b3ee5 100644 --- a/module/rdpCopyArea.h +++ b/module/rdpCopyArea.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpCopyPlane.c b/module/rdpCopyPlane.c index 1736442c..0da8b35a 100644 --- a/module/rdpCopyPlane.c +++ b/module/rdpCopyPlane.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpCopyPlane.h b/module/rdpCopyPlane.h index f6ec7c86..78170d93 100644 --- a/module/rdpCopyPlane.h +++ b/module/rdpCopyPlane.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpCursor.c b/module/rdpCursor.c index 91d0d68b..843bbfa2 100644 --- a/module/rdpCursor.c +++ b/module/rdpCursor.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ cursor */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpCursor.h b/module/rdpCursor.h index b2330e1a..ded5f2d7 100644 --- a/module/rdpCursor.h +++ b/module/rdpCursor.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpDraw.c b/module/rdpDraw.c index 2f916006..b9c0d990 100644 --- a/module/rdpDraw.c +++ b/module/rdpDraw.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ misc draw calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpDraw.h b/module/rdpDraw.h index cc3e1798..73263800 100644 --- a/module/rdpDraw.h +++ b/module/rdpDraw.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpFillPolygon.c b/module/rdpFillPolygon.c index 66ea3604..f77ec723 100644 --- a/module/rdpFillPolygon.c +++ b/module/rdpFillPolygon.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpFillPolygon.h b/module/rdpFillPolygon.h index 16c30fb4..8caa06c5 100644 --- a/module/rdpFillPolygon.h +++ b/module/rdpFillPolygon.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpFillSpans.c b/module/rdpFillSpans.c index 606dbfc2..771f0c0b 100644 --- a/module/rdpFillSpans.c +++ b/module/rdpFillSpans.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpFillSpans.h b/module/rdpFillSpans.h index 2c49f001..27ce1bea 100644 --- a/module/rdpFillSpans.h +++ b/module/rdpFillSpans.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpGC.c b/module/rdpGC.c index 7e8ba608..7fd49b02 100644 --- a/module/rdpGC.c +++ b/module/rdpGC.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ GC related calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpGC.h b/module/rdpGC.h index 2ab43b26..933cb512 100644 --- a/module/rdpGC.h +++ b/module/rdpGC.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpGlyphs.c b/module/rdpGlyphs.c index ccdb399a..3e79d908 100644 --- a/module/rdpGlyphs.c +++ b/module/rdpGlyphs.c @@ -1,5 +1,5 @@ /* -Copyright 2012-2016 Jay Sorg +Copyright 2012-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ glyph (font) calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpGlyphs.h b/module/rdpGlyphs.h index eb8b9dfa..476802cf 100644 --- a/module/rdpGlyphs.h +++ b/module/rdpGlyphs.h @@ -1,5 +1,5 @@ /* -Copyright 2012-2016 Jay Sorg +Copyright 2012-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpImageGlyphBlt.c b/module/rdpImageGlyphBlt.c index 399dc456..ebb487f5 100644 --- a/module/rdpImageGlyphBlt.c +++ b/module/rdpImageGlyphBlt.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpImageGlyphBlt.h b/module/rdpImageGlyphBlt.h index 22b2b0fa..92852114 100644 --- a/module/rdpImageGlyphBlt.h +++ b/module/rdpImageGlyphBlt.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpImageText16.c b/module/rdpImageText16.c index dbfd9f13..574019c4 100644 --- a/module/rdpImageText16.c +++ b/module/rdpImageText16.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpImageText16.h b/module/rdpImageText16.h index 178c7bf6..3be28cc1 100644 --- a/module/rdpImageText16.h +++ b/module/rdpImageText16.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpImageText8.c b/module/rdpImageText8.c index 91bf20b2..efaa4307 100644 --- a/module/rdpImageText8.c +++ b/module/rdpImageText8.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpImageText8.h b/module/rdpImageText8.h index 7ee1dfb4..3c376122 100644 --- a/module/rdpImageText8.h +++ b/module/rdpImageText8.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpInput.c b/module/rdpInput.c index a9adf540..73c1858c 100644 --- a/module/rdpInput.c +++ b/module/rdpInput.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpInput.h b/module/rdpInput.h index 8a3f7538..85eb635b 100644 --- a/module/rdpInput.h +++ b/module/rdpInput.h @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpMain.c b/module/rdpMain.c index beb49c4f..59b7e029 100644 --- a/module/rdpMain.c +++ b/module/rdpMain.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ rdp module main */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpMain.h b/module/rdpMain.h index 4dd36dd3..b3511980 100644 --- a/module/rdpMain.h +++ b/module/rdpMain.h @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpMisc.c b/module/rdpMisc.c index c64a08aa..9cf401be 100644 --- a/module/rdpMisc.c +++ b/module/rdpMisc.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ the rest */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpMisc.h b/module/rdpMisc.h index 5b5a1046..3a23f101 100644 --- a/module/rdpMisc.h +++ b/module/rdpMisc.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPixmap.c b/module/rdpPixmap.c index 839b9a32..0e36e448 100644 --- a/module/rdpPixmap.c +++ b/module/rdpPixmap.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ pixmap calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPixmap.h b/module/rdpPixmap.h index 655b6eeb..41675802 100644 --- a/module/rdpPixmap.h +++ b/module/rdpPixmap.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyArc.c b/module/rdpPolyArc.c index 756e4f43..dc9363b4 100644 --- a/module/rdpPolyArc.c +++ b/module/rdpPolyArc.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyArc.h b/module/rdpPolyArc.h index cb4b0a2b..0cdb7218 100644 --- a/module/rdpPolyArc.h +++ b/module/rdpPolyArc.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyFillArc.c b/module/rdpPolyFillArc.c index 00db0060..5bf60052 100644 --- a/module/rdpPolyFillArc.c +++ b/module/rdpPolyFillArc.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyFillArc.h b/module/rdpPolyFillArc.h index e21dcc8d..610d9828 100644 --- a/module/rdpPolyFillArc.h +++ b/module/rdpPolyFillArc.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyFillRect.c b/module/rdpPolyFillRect.c index 515b065c..d28557c0 100644 --- a/module/rdpPolyFillRect.c +++ b/module/rdpPolyFillRect.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyFillRect.h b/module/rdpPolyFillRect.h index abf321fd..a5cfec59 100644 --- a/module/rdpPolyFillRect.h +++ b/module/rdpPolyFillRect.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyGlyphBlt.c b/module/rdpPolyGlyphBlt.c index 5e957905..7e9b6449 100644 --- a/module/rdpPolyGlyphBlt.c +++ b/module/rdpPolyGlyphBlt.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyGlyphBlt.h b/module/rdpPolyGlyphBlt.h index 6dcb919b..23252b75 100644 --- a/module/rdpPolyGlyphBlt.h +++ b/module/rdpPolyGlyphBlt.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyPoint.c b/module/rdpPolyPoint.c index 857aaa42..c15c4c7c 100644 --- a/module/rdpPolyPoint.c +++ b/module/rdpPolyPoint.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyPoint.h b/module/rdpPolyPoint.h index 8359e224..57b99b50 100644 --- a/module/rdpPolyPoint.h +++ b/module/rdpPolyPoint.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyRectangle.c b/module/rdpPolyRectangle.c index 30de262f..bfa4797e 100644 --- a/module/rdpPolyRectangle.c +++ b/module/rdpPolyRectangle.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyRectangle.h b/module/rdpPolyRectangle.h index 0e819dd0..0340f5f7 100644 --- a/module/rdpPolyRectangle.h +++ b/module/rdpPolyRectangle.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolySegment.c b/module/rdpPolySegment.c index 73785c44..ca2f43f4 100644 --- a/module/rdpPolySegment.c +++ b/module/rdpPolySegment.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolySegment.h b/module/rdpPolySegment.h index 541f909a..9889fc6c 100644 --- a/module/rdpPolySegment.h +++ b/module/rdpPolySegment.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyText16.c b/module/rdpPolyText16.c index 404504ea..1c06bee6 100644 --- a/module/rdpPolyText16.c +++ b/module/rdpPolyText16.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyText16.h b/module/rdpPolyText16.h index 2d40c1ba..917789e7 100644 --- a/module/rdpPolyText16.h +++ b/module/rdpPolyText16.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolyText8.c b/module/rdpPolyText8.c index d2400023..afe51ea6 100644 --- a/module/rdpPolyText8.c +++ b/module/rdpPolyText8.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolyText8.h b/module/rdpPolyText8.h index d89c23c8..0ff1501d 100644 --- a/module/rdpPolyText8.h +++ b/module/rdpPolyText8.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPolylines.c b/module/rdpPolylines.c index 211f1ea9..3cba08a0 100644 --- a/module/rdpPolylines.c +++ b/module/rdpPolylines.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPolylines.h b/module/rdpPolylines.h index 341ebb45..9d020d30 100644 --- a/module/rdpPolylines.h +++ b/module/rdpPolylines.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPri.c b/module/rdpPri.c index 4a5e89a9..69734d4c 100644 --- a/module/rdpPri.c +++ b/module/rdpPri.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ to deal with privates changing in xorg versions */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPri.h b/module/rdpPri.h index 820ef7a6..4e7ae09c 100644 --- a/module/rdpPri.h +++ b/module/rdpPri.h @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPushPixels.c b/module/rdpPushPixels.c index 69c28ee9..fd5cdb01 100644 --- a/module/rdpPushPixels.c +++ b/module/rdpPushPixels.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPushPixels.h b/module/rdpPushPixels.h index 1ac2b1b1..b7a70e4a 100644 --- a/module/rdpPushPixels.h +++ b/module/rdpPushPixels.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpPutImage.c b/module/rdpPutImage.c index fdb4214c..d099a417 100644 --- a/module/rdpPutImage.c +++ b/module/rdpPutImage.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpPutImage.h b/module/rdpPutImage.h index 652024ca..846af244 100644 --- a/module/rdpPutImage.h +++ b/module/rdpPutImage.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpRandR.c b/module/rdpRandR.c index 17173580..d3746de3 100644 --- a/module/rdpRandR.c +++ b/module/rdpRandR.c @@ -1,5 +1,5 @@ /* -Copyright 2011-2016 Jay Sorg +Copyright 2011-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ RandR draw calls */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpRandR.h b/module/rdpRandR.h index 7aaa224b..4709c6e4 100644 --- a/module/rdpRandR.h +++ b/module/rdpRandR.h @@ -1,5 +1,5 @@ /* -Copyright 2011-2016 Jay Sorg +Copyright 2011-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpReg.c b/module/rdpReg.c index 578dddf6..89bfc588 100644 --- a/module/rdpReg.c +++ b/module/rdpReg.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ to deal with regions changing in xorg versions */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpReg.h b/module/rdpReg.h index a924d803..266facdd 100644 --- a/module/rdpReg.h +++ b/module/rdpReg.h @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpSetSpans.c b/module/rdpSetSpans.c index 3162ade8..2eee4740 100644 --- a/module/rdpSetSpans.c +++ b/module/rdpSetSpans.c @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpSetSpans.h b/module/rdpSetSpans.h index 2b3e3102..6faf70c3 100644 --- a/module/rdpSetSpans.h +++ b/module/rdpSetSpans.h @@ -1,5 +1,5 @@ /* -Copyright 2005-2016 Jay Sorg +Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpSimd.c b/module/rdpSimd.c index c56f65c9..49a3653e 100644 --- a/module/rdpSimd.c +++ b/module/rdpSimd.c @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ SIMD function assigning */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpSimd.h b/module/rdpSimd.h index 0702facf..f4fbcdc0 100644 --- a/module/rdpSimd.h +++ b/module/rdpSimd.h @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpTrapezoids.c b/module/rdpTrapezoids.c index 469e7878..4e639a18 100644 --- a/module/rdpTrapezoids.c +++ b/module/rdpTrapezoids.c @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -19,6 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpTrapezoids.h b/module/rdpTrapezoids.h index 9bc1e0fc..af652de7 100644 --- a/module/rdpTrapezoids.h +++ b/module/rdpTrapezoids.h @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/module/rdpXv.c b/module/rdpXv.c index 7dac9653..7b202172 100644 --- a/module/rdpXv.c +++ b/module/rdpXv.c @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ XVideo */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/module/rdpXv.h b/module/rdpXv.h index dd1a85a4..3a52931e 100644 --- a/module/rdpXv.h +++ b/module/rdpXv.h @@ -1,5 +1,5 @@ /* -Copyright 2014-2016 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/tests/yuv2rgb/yuv2rgb_speed.c b/tests/yuv2rgb/yuv2rgb_speed.c index a5855e14..19d74ca8 100644 --- a/tests/yuv2rgb/yuv2rgb_speed.c +++ b/tests/yuv2rgb/yuv2rgb_speed.c @@ -1,5 +1,5 @@ /* -Copyright 2014-2015 Jay Sorg +Copyright 2014-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/xrdpdev/xrdpdev.c b/xrdpdev/xrdpdev.c index 1630d53b..698bfe26 100644 --- a/xrdpdev/xrdpdev.c +++ b/xrdpdev/xrdpdev.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ This is the main driver file */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/xrdpkeyb/rdpKeyboard.c b/xrdpkeyb/rdpKeyboard.c index dee6730a..a320bcee 100644 --- a/xrdpkeyb/rdpKeyboard.c +++ b/xrdpkeyb/rdpKeyboard.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ xrdp keyboard module */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include diff --git a/xrdpmouse/rdpMouse.c b/xrdpmouse/rdpMouse.c index 1cfbac80..3d37f007 100644 --- a/xrdpmouse/rdpMouse.c +++ b/xrdpmouse/rdpMouse.c @@ -1,5 +1,5 @@ /* -Copyright 2013-2016 Jay Sorg +Copyright 2013-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +21,10 @@ xrdp mouse module */ +#if defined(HAVE_CONFIG_H) +#include "config_ac.h" +#endif + #include #include #include