mirror of
				https://github.com/glfw/glfw.git
				synced 2025-11-03 22:04:15 +00:00 
			
		
		
		
	Enable _WIN32 on detection of MinGW, not Cygwin.
This commit is contained in:
		
							parent
							
								
									d586fe6737
								
							
						
					
					
						commit
						e8ce4ab8e8
					
				@ -78,12 +78,8 @@ extern "C" {
 | 
			
		||||
 * been able to test this file with yet.
 | 
			
		||||
 *
 | 
			
		||||
 * First: If we are we on Windows, we want a single define for it (_WIN32)
 | 
			
		||||
 * (Note: For Cygwin the compiler flag -mwin32 should be used, but to
 | 
			
		||||
 * make sure that things run smoothly for Cygwin users, we add __CYGWIN__
 | 
			
		||||
 * to the list of "valid Win32 identifiers", which removes the need for
 | 
			
		||||
 * -mwin32)
 | 
			
		||||
 */
 | 
			
		||||
#if !defined(_WIN32) && (defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__))
 | 
			
		||||
#if !defined(_WIN32) && (defined(__WIN32__) || defined(WIN32) || defined(__MINGW32__))
 | 
			
		||||
 #define _WIN32
 | 
			
		||||
#endif /* _WIN32 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user