Changeset: 95f8d970d972 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=95f8d970d972 Modified Files: gdk/gdk_interprocess.c gdk/gdk_interprocess.h sql/backends/monet5/UDF/pyapi/connection.c sql/backends/monet5/UDF/pyapi/emit.c sql/backends/monet5/UDF/pyapi/formatinput.c sql/backends/monet5/UDF/pyapi/pyapi.c sql/backends/monet5/UDF/pyapi/pyapi.h sql/backends/monet5/UDF/pyapi/pyloader.c sql/backends/monet5/UDF/pyapi/pytypes.c sql/backends/monet5/UDF/pyapi/type_conversion.c sql/backends/monet5/UDF/pyapi/unicode.c Branch: Dec2016 Log Message:
All C files should start with an include of monetdb_config.h. diffs (127 lines): diff --git a/gdk/gdk_interprocess.c b/gdk/gdk_interprocess.c --- a/gdk/gdk_interprocess.c +++ b/gdk/gdk_interprocess.c @@ -6,10 +6,11 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ -#include "gdk_interprocess.h" +#include "monetdb_config.h" #ifdef HAVE_FORK +#include "gdk_interprocess.h" #include "gdk.h" #include "gdk_private.h" diff --git a/gdk/gdk_interprocess.h b/gdk/gdk_interprocess.h --- a/gdk/gdk_interprocess.h +++ b/gdk/gdk_interprocess.h @@ -14,8 +14,6 @@ #ifndef _GDK_INTERPROCES_H_ #define _GDK_INTERPROCES_H_ -#include "monetdb_config.h" - #ifdef HAVE_FORK #include "gdk.h" diff --git a/sql/backends/monet5/UDF/pyapi/connection.c b/sql/backends/monet5/UDF/pyapi/connection.c --- a/sql/backends/monet5/UDF/pyapi/connection.c +++ b/sql/backends/monet5/UDF/pyapi/connection.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "connection.h" #include "type_conversion.h" #include "gdk_interprocess.h" diff --git a/sql/backends/monet5/UDF/pyapi/emit.c b/sql/backends/monet5/UDF/pyapi/emit.c --- a/sql/backends/monet5/UDF/pyapi/emit.c +++ b/sql/backends/monet5/UDF/pyapi/emit.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "emit.h" #include "type_conversion.h" #include "gdk_interprocess.h" diff --git a/sql/backends/monet5/UDF/pyapi/formatinput.c b/sql/backends/monet5/UDF/pyapi/formatinput.c --- a/sql/backends/monet5/UDF/pyapi/formatinput.c +++ b/sql/backends/monet5/UDF/pyapi/formatinput.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "formatinput.h" #include "type_conversion.h" diff --git a/sql/backends/monet5/UDF/pyapi/pyapi.c b/sql/backends/monet5/UDF/pyapi/pyapi.c --- a/sql/backends/monet5/UDF/pyapi/pyapi.c +++ b/sql/backends/monet5/UDF/pyapi/pyapi.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "pyapi.h" #include "connection.h" diff --git a/sql/backends/monet5/UDF/pyapi/pyapi.h b/sql/backends/monet5/UDF/pyapi/pyapi.h --- a/sql/backends/monet5/UDF/pyapi/pyapi.h +++ b/sql/backends/monet5/UDF/pyapi/pyapi.h @@ -13,7 +13,6 @@ #ifndef _PYPI_LIB_ #define _PYPI_LIB_ -#include "monetdb_config.h" #include "mal.h" #include "mal_stack.h" #include "mal_linker.h" diff --git a/sql/backends/monet5/UDF/pyapi/pyloader.c b/sql/backends/monet5/UDF/pyapi/pyloader.c --- a/sql/backends/monet5/UDF/pyapi/pyloader.c +++ b/sql/backends/monet5/UDF/pyapi/pyloader.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "pyapi.h" #include "connection.h" #include "emit.h" diff --git a/sql/backends/monet5/UDF/pyapi/pytypes.c b/sql/backends/monet5/UDF/pyapi/pytypes.c --- a/sql/backends/monet5/UDF/pyapi/pytypes.c +++ b/sql/backends/monet5/UDF/pyapi/pytypes.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "pytypes.h" #if PY_MAJOR_VERSION >= 3 diff --git a/sql/backends/monet5/UDF/pyapi/type_conversion.c b/sql/backends/monet5/UDF/pyapi/type_conversion.c --- a/sql/backends/monet5/UDF/pyapi/type_conversion.c +++ b/sql/backends/monet5/UDF/pyapi/type_conversion.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "type_conversion.h" #include "unicode.h" diff --git a/sql/backends/monet5/UDF/pyapi/unicode.c b/sql/backends/monet5/UDF/pyapi/unicode.c --- a/sql/backends/monet5/UDF/pyapi/unicode.c +++ b/sql/backends/monet5/UDF/pyapi/unicode.c @@ -6,6 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. */ +#include "monetdb_config.h" #include "unicode.h" #include <string.h> _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
