From: John F. Fay Date: Sun, 5 Feb 2012 04:21:26 +0000 (+0000) Subject: Removing an extraneous "#if TARGET_HOST_POSIX_X11" and putting the path into the... X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=d685109e7dc055afb54e955e937eef7fb2ed4d1d;hp=bbf902065175c38f19cf55786e408bd2a7bb70c0;p=freeglut Removing an extraneous "#if TARGET_HOST_POSIX_X11" and putting the path into the "#include" statements for "freeglut_internal.h" git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1062 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/x11/freeglut_display_x11.c b/src/x11/freeglut_display_x11.c index f03c064..86233d8 100644 --- a/src/x11/freeglut_display_x11.c +++ b/src/x11/freeglut_display_x11.c @@ -27,7 +27,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" void fgPlatformGlutSwapBuffers( SFG_PlatformDisplay *pDisplayPtr, SFG_Window* CurrentWindow ) { diff --git a/src/x11/freeglut_ext_x11.c b/src/x11/freeglut_ext_x11.c index 280ebc9..b4c9032 100644 --- a/src/x11/freeglut_ext_x11.c +++ b/src/x11/freeglut_ext_x11.c @@ -28,7 +28,7 @@ #define GLX_GLXEXT_PROTOTYPES #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" GLUTproc fgPlatformGlutGetProcAddress( const char* procName ) { diff --git a/src/x11/freeglut_gamemode_x11.c b/src/x11/freeglut_gamemode_x11.c index 409a621..ffbf240 100644 --- a/src/x11/freeglut_gamemode_x11.c +++ b/src/x11/freeglut_gamemode_x11.c @@ -27,7 +27,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" static int xrandr_resize(int xsz, int ysz, int rate, int just_checking) { diff --git a/src/x11/freeglut_glutfont_definitions_x11.c b/src/x11/freeglut_glutfont_definitions_x11.c index 742dd15..394c6c1 100644 --- a/src/x11/freeglut_glutfont_definitions_x11.c +++ b/src/x11/freeglut_glutfont_definitions_x11.c @@ -71,9 +71,7 @@ #undef glutBitmapHelvetica12 #undef glutBitmapHelvetica18 -#include "freeglut_internal.h" - -#if TARGET_HOST_POSIX_X11 +#include "../Common/freeglut_internal.h" struct freeglutStrokeFont { @@ -104,5 +102,3 @@ struct freeglutBitmapFont glutBitmapHelvetica10 ; struct freeglutBitmapFont glutBitmapHelvetica12 ; struct freeglutBitmapFont glutBitmapHelvetica18 ; -#endif - diff --git a/src/x11/freeglut_init_x11.c b/src/x11/freeglut_init_x11.c index 5c3dc4d..8574ce1 100644 --- a/src/x11/freeglut_init_x11.c +++ b/src/x11/freeglut_init_x11.c @@ -29,7 +29,7 @@ #define FREEGLUT_BUILDING_LIB #include /* LONG_MAX */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" /* Return the atom associated with "name". */ static Atom fghGetAtom(const char * name) diff --git a/src/x11/freeglut_input_devices_x11.c b/src/x11/freeglut_input_devices_x11.c index ebd99eb..15faf4f 100644 --- a/src/x11/freeglut_input_devices_x11.c +++ b/src/x11/freeglut_input_devices_x11.c @@ -35,7 +35,7 @@ #endif #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" #ifdef HAVE_ERRNO_H #include diff --git a/src/x11/freeglut_joystick_x11.c b/src/x11/freeglut_joystick_x11.c index a006301..9e2ee0c 100644 --- a/src/x11/freeglut_joystick_x11.c +++ b/src/x11/freeglut_joystick_x11.c @@ -34,7 +34,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" #ifdef HAVE_SYS_PARAM_H # include #endif diff --git a/src/x11/freeglut_main_x11.c b/src/x11/freeglut_main_x11.c index 1e982d7..94a3cbd 100644 --- a/src/x11/freeglut_main_x11.c +++ b/src/x11/freeglut_main_x11.c @@ -27,7 +27,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" #ifdef HAVE_ERRNO_H # include #endif diff --git a/src/x11/freeglut_menu_x11.c b/src/x11/freeglut_menu_x11.c index f10cd8c..a09c6eb 100644 --- a/src/x11/freeglut_menu_x11.c +++ b/src/x11/freeglut_menu_x11.c @@ -27,7 +27,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" /* * * Private function to get the virtual maximum screen extent diff --git a/src/x11/freeglut_spaceball_x11.c b/src/x11/freeglut_spaceball_x11.c index 0e29b3f..84f8511 100644 --- a/src/x11/freeglut_spaceball_x11.c +++ b/src/x11/freeglut_spaceball_x11.c @@ -10,7 +10,7 @@ */ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" #include diff --git a/src/x11/freeglut_window_x11.c b/src/x11/freeglut_window_x11.c index 54dc786..f810965 100644 --- a/src/x11/freeglut_window_x11.c +++ b/src/x11/freeglut_window_x11.c @@ -30,7 +30,7 @@ #include #include /* LONG_MAX */ #include /* usleep */ -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" /* pushing attribute/value pairs into an array */ #define ATTRIB(a) attributes[where++]=(a) diff --git a/src/x11/freeglut_xinput_x11.c b/src/x11/freeglut_xinput_x11.c index 68e4562..d3d8968 100644 --- a/src/x11/freeglut_xinput_x11.c +++ b/src/x11/freeglut_xinput_x11.c @@ -3,7 +3,7 @@ #include -#include "freeglut_internal.h" +#include "../Common/freeglut_internal.h" #if HAVE_X11_EXTENSIONS_XINPUT2_H