Always include "config.h" at the start of all C source files.

Allows configure to set defines such as _POSIX_SOURCE in config.h
that affect functions exposed by system headers and get consistent
results across all the source files.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith 2012-08-24 23:32:32 -07:00
parent ed93a6a2a8
commit b52790e8ed
8 changed files with 31 additions and 1 deletions

View File

@ -176,6 +176,9 @@ def c_open(self):
_h('')
_h('#include "xcb.h"')
_c('#ifdef HAVE_CONFIG_H')
_c('#include "config.h"')
_c('#endif')
_c('#include <stdlib.h>')
_c('#include <string.h>')
_c('#include <assert.h>')

View File

@ -25,6 +25,10 @@
/* Connection management: the core of XCB. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <string.h>
#include <stdio.h>

View File

@ -25,6 +25,10 @@
/* A cache for QueryExtension results. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -25,6 +25,10 @@
/* Stuff that reads stuff from the server. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <string.h>
#include <stdlib.h>

View File

@ -25,6 +25,10 @@
/* A generic implementation of a list of void-pointers. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include "xcb.h"

View File

@ -25,6 +25,10 @@
/* Stuff that sends stuff to the server. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -25,6 +25,10 @@
/* Utility functions implementable using only public APIs. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <sys/types.h>
#include <limits.h>
@ -51,7 +55,6 @@
#include "xcbext.h"
#include "xcbint.h"
/* must be after "xcbint.h" to get autoconf #defines */
#if defined(HAVE_TSOL_LABEL_H) && defined(HAVE_IS_SYSTEM_LABELED)
# include <tsol/label.h>
# include <sys/stat.h>

View File

@ -25,6 +25,10 @@
/* XID allocators. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include "xcb.h"