From da8af2618143577c36ba7fe7656bb6e296616438 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 5 Feb 2023 18:01:35 -0800 Subject: Ensure all *.c files include config.h before any other headers Makes sure that any flags set in config.h that affect system headers are applied equally across all source files. Signed-off-by: Alan Coopersmith --- BitEdit.c | 5 +++-- Bitmap.c | 4 ++++ CutPaste.c | 4 ++++ Dialog.c | 4 ++++ Handlers.c | 4 ++++ ReqMach.c | 4 ++++ atobm.c | 4 ++++ 7 files changed, 27 insertions(+), 2 deletions(-) diff --git a/BitEdit.c b/BitEdit.c index a9ec29f..a1c6dab 100644 --- a/BitEdit.c +++ b/BitEdit.c @@ -30,8 +30,9 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ - - +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include #include diff --git a/Bitmap.c b/Bitmap.c index d074058..b7b1589 100644 --- a/Bitmap.c +++ b/Bitmap.c @@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/CutPaste.c b/CutPaste.c index 49d6f9c..7bd92c7 100644 --- a/CutPaste.c +++ b/CutPaste.c @@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/Dialog.c b/Dialog.c index bf00b05..b005538 100644 --- a/Dialog.c +++ b/Dialog.c @@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/Handlers.c b/Handlers.c index c29c0b3..02c2049 100644 --- a/Handlers.c +++ b/Handlers.c @@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include "BitmapP.h" diff --git a/ReqMach.c b/ReqMach.c index 1a27f02..df2905d 100644 --- a/ReqMach.c +++ b/ReqMach.c @@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/atobm.c b/atobm.c index 7d25906..d292876 100644 --- a/atobm.c +++ b/atobm.c @@ -31,6 +31,10 @@ from The Open Group. * Author: Jim Fulton, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include -- cgit v1.2.3