Added missing entries to Linux version strings.

master
Camilla Berglund ago%!(EXTRA string=10 years)
parent b067bb6304
commit ef6dec17ba
  1. 5
      src/mir_init.c
  2. 7
      src/wl_init.c
  3. 2
      src/x11_init.c

@ -90,6 +90,11 @@ const char* _glfwPlatformGetVersionString(void)
const char* version = _GLFW_VERSION_NUMBER " Mir EGL"
#if defined(_POSIX_TIMERS) && defined(_POSIX_MONOTONIC_CLOCK)
" clock_gettime"
#else
" gettimeofday"
#endif
#if defined(__linux__)
" /dev/js"
#endif
#if defined(_GLFW_BUILD_DLL)
" shared"

@ -620,9 +620,14 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_NUMBER " Wayland EGL "
const char* version = _GLFW_VERSION_NUMBER " Wayland EGL"
#if defined(_POSIX_TIMERS) && defined(_POSIX_MONOTONIC_CLOCK)
" clock_gettime"
#else
" gettimeofday"
#endif
#if defined(__linux__)
" /dev/js"
#endif
#if defined(_GLFW_BUILD_DLL)
" shared"

@ -796,6 +796,8 @@ const char* _glfwPlatformGetVersionString(void)
#endif
#if defined(_POSIX_TIMERS) && defined(_POSIX_MONOTONIC_CLOCK)
" clock_gettime"
#else
" gettimeofday"
#endif
#if defined(__linux__)
" /dev/js"

Loading…
Cancel
Save