1
0
Fork 0

Geoff McLane:

Attached is a 'slightly' updated config.h-msvc6 file.
You will note i have only couched the JOYSTICK into an #ifndef
and add the needed GLUT_H
This commit is contained in:
curt 2003-07-23 14:36:33 +00:00
parent 8e5d7cd156
commit 3c41f15f18

View file

@ -1,8 +1,10 @@
/* Special single config.h for MSVC6 build - Geoff McLane - 22 Jan, 2002 */ /* Special single config.h for MSVC6 build - Geoff McLane - 23 July, 2003 */
/* Define to enable plib joystick support */ /* Define to enable plib joystick support */
#ifndef ENABLE_PLIB_JOYSTICK
#define ENABLE_PLIB_JOYSTICK #define ENABLE_PLIB_JOYSTICK
#endif // #ifndef ENABLE_PLIB_JOYSTICK
/* Define to enable threaded tile paging */ /* Define to enable threaded tile paging */
#undef ENABLE_THREADS #undef ENABLE_THREADS
@ -44,7 +46,7 @@
#define PACKAGE "FlightGear" #define PACKAGE "FlightGear"
/* Define to package version - use in main.cxx */ /* Define to package version - use in main.cxx */
#define FLIGHTGEAR_VERSION "MSVC6-WIN32-0.9.0" #define FLIGHTGEAR_VERSION "MSVC6-WIN32-0.9.1"
/* Define as the return type of signal handlers (int or void). */ /* Define as the return type of signal handlers (int or void). */
#define RETSIGTYPE void #define RETSIGTYPE void
@ -62,7 +64,7 @@
#define TM_IN_SYS_TIME 1 #define TM_IN_SYS_TIME 1
/* Define to version number */ /* Define to version number */
#define VERSION "0.9.0" #define VERSION "0.9.1"
/* Define if compiling on a Winbloze (95, NT, etc.) platform */ /* Define if compiling on a Winbloze (95, NT, etc.) platform */
#define WIN32 1 #define WIN32 1
@ -187,5 +189,8 @@
#define ENABLE_AUDIO_SUPPORT #define ENABLE_AUDIO_SUPPORT
#endif #endif
#ifndef GLUT_H
#define GLUT_H <GL/glut.h>
#endif // #ifndef GLUT_H
// eof - config.h-msvc6 - single flightgear config.h file // eof - config.h-msvc6 - single flightgear config.h file