mirror of
				https://github.com/glfw/glfw.git
				synced 2025-11-04 14:16:42 +00:00 
			
		
		
		
	Linux: Fix POSIX version not set for Null build
When compiling GLFW on Linux with only the Null platform enabled, the CMake files did not set the required POSIX version macro. Fixes #2402
This commit is contained in:
		
							parent
							
								
									a87acd8c1f
								
							
						
					
					
						commit
						d9709904fe
					
				@ -215,6 +215,7 @@ video tutorials.
 | 
			
		||||
 - Dmitri Shuralyov
 | 
			
		||||
 - Joao da Silva
 | 
			
		||||
 - Daniel Sieger
 | 
			
		||||
 - Daljit Singh
 | 
			
		||||
 - Michael Skec
 | 
			
		||||
 - Daniel Skorupski
 | 
			
		||||
 - Slemmie
 | 
			
		||||
 | 
			
		||||
@ -316,10 +316,8 @@ if (MSVC90)
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
# Workaround for -std=c99 on Linux disabling _DEFAULT_SOURCE (POSIX 2008 and more)
 | 
			
		||||
if (GLFW_BUILD_X11 OR GLFW_BUILD_WAYLAND)
 | 
			
		||||
    if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
 | 
			
		||||
        target_compile_definitions(glfw PRIVATE _DEFAULT_SOURCE)
 | 
			
		||||
    endif()
 | 
			
		||||
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
 | 
			
		||||
    target_compile_definitions(glfw PRIVATE _DEFAULT_SOURCE)
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
if (GLFW_BUILD_SHARED_LIBRARY)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user