Making all Windows include file names lower-case for better *nix compatibility per e-mail from Martin Payne vintage 1/22/2010 6:15 AM.
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@871 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
c152b70c81
commit
c907da58a6
@ -58,7 +58,7 @@
|
|||||||
# define WIN32_LEAN_AND_MEAN 1
|
# define WIN32_LEAN_AND_MEAN 1
|
||||||
# endif
|
# endif
|
||||||
# define NOMINMAX
|
# define NOMINMAX
|
||||||
# include <Windows.h>
|
# include <windows.h>
|
||||||
|
|
||||||
/* Windows static library */
|
/* Windows static library */
|
||||||
# ifdef FREEGLUT_STATIC
|
# ifdef FREEGLUT_STATIC
|
||||||
|
@ -88,15 +88,14 @@
|
|||||||
|
|
||||||
/* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
|
/* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
|
||||||
|
|
||||||
/* All Win32 headers depend on the huge Windows.h recursive include.
|
/* All Win32 headers depend on the huge windows.h recursive include.
|
||||||
* Note: Let's use proper case for MS-Win headers. Even though it's
|
* Note: Lower-case header names are used, for best cross-platform
|
||||||
* not required due to case insensitivity, it's a good habit to keep
|
* compatibility.
|
||||||
* because the cross-platform includes are case sensitive.
|
|
||||||
*/
|
*/
|
||||||
#if TARGET_HOST_MS_WINDOWS && !defined(_WIN32_WCE)
|
#if TARGET_HOST_MS_WINDOWS && !defined(_WIN32_WCE)
|
||||||
# include <Windows.h>
|
# include <windows.h>
|
||||||
# include <WindowsX.h>
|
# include <windowsx.h>
|
||||||
# include <MMSystem.h>
|
# include <mmsystem.h>
|
||||||
/* CYGWIN does not have tchar.h, but has TEXT(x), defined in winnt.h. */
|
/* CYGWIN does not have tchar.h, but has TEXT(x), defined in winnt.h. */
|
||||||
# ifndef __CYGWIN__
|
# ifndef __CYGWIN__
|
||||||
# include <tchar.h>
|
# include <tchar.h>
|
||||||
|
Reference in New Issue
Block a user