Make sure config.h is included before any system headers

There was an issue recently in screen-share.c where config.h was not
being included, resulting in the wrong definition for off_t being used on
32 bit systems. I checked and I don't think this problem is happening
elsewhere, but to help avoid this sort of problem in the future, I went
through and made sure that config.h is included first whenever system
headers are included.

The config.h header should be included before any system headers, failing
to do this can result in the wrong type sizes being defined on certain
systems, e.g. off_t from sys/types.h

Signed-off-by: Andrew Wedgbury <andrew.wedgbury@realvnc.com>
This commit is contained in:
Andrew Wedgbury 2014-04-07 12:40:35 +01:00 committed by Kristian Høgsberg
parent ba83db216c
commit 9cd661e746
33 changed files with 67 additions and 2 deletions

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -22,6 +22,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -30,6 +30,8 @@
* surface transform disable key: r
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <stdio.h>

View File

@ -30,6 +30,8 @@
* \author Tim Wiederhake
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -21,6 +21,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -21,6 +21,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -21,6 +21,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -21,6 +21,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <assert.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -22,6 +22,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -21,6 +21,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -23,6 +23,8 @@
#ifndef _WINDOW_H_
#define _WINDOW_H_
#include "config.h"
#include <xkbcommon/xkbcommon.h>
#include <wayland-client.h>
#include <cairo.h>

View File

@ -23,6 +23,8 @@
#ifndef WSCREENSAVER_H
#define WSCREENSAVER_H
#include "config.h"
#define MESA_EGL_NO_X11_HEADERS
#include <EGL/egl.h>

View File

@ -23,10 +23,10 @@
#ifndef OS_COMPATIBILITY_H
#define OS_COMPATIBILITY_H
#include <sys/types.h>
#include "config.h"
#include <sys/types.h>
#ifdef HAVE_EXECINFO_H
#include <execinfo.h>
#else

View File

@ -43,6 +43,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

View File

@ -21,6 +21,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <unistd.h>
#include <sys/types.h>

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <string.h>
#include "weston-test-client-helper.h"

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <linux/input.h>
#include "weston-test-client-helper.h"

View File

@ -20,6 +20,8 @@
* OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

View File

@ -28,6 +28,8 @@
* program.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <string.h>
#include "weston-test-client-helper.h"

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <assert.h>
#include "../src/compositor.h"

View File

@ -20,6 +20,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <string.h>
#include <stdio.h>
#include <linux/input.h>

View File

@ -19,6 +19,9 @@
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -23,6 +23,8 @@
#ifndef _WESTON_TEST_CLIENT_HELPER_H_
#define _WESTON_TEST_CLIENT_HELPER_H_
#include "config.h"
#include <assert.h>
#include "weston-test-runner.h"
#include "wayland-test-client-protocol.h"

View File

@ -24,6 +24,8 @@
#ifndef _WESTON_TEST_RUNNER_H_
#define _WESTON_TEST_RUNNER_H_
#include "config.h"
#include <stdlib.h>
#ifdef NDEBUG