Version string fixes.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 92a71e07d3
commit 666181d923
  1. 8
      src/cocoa_init.m
  2. 14
      src/win32_init.c
  3. 6
      src/x11_init.c

@ -133,15 +133,15 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_FULL
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
const char* version = _GLFW_VERSION_FULL " Cocoa"
#if defined(_GLFW_USE_CHDIR)
" chdir"
#endif
#if defined(_GLFW_USE_MENUBAR)
" menubar"
#endif
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
;

@ -200,7 +200,7 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_FULL
const char* version = _GLFW_VERSION_FULL " Win32"
#if defined(_GLFW_WGL)
" WGL"
#elif defined(_GLFW_EGL)
@ -209,17 +209,15 @@ const char* _glfwPlatformGetVersionString(void)
#if defined(__MINGW32__)
" MinGW"
#elif defined(_MSC_VER)
" Visual C++ "
" VisualC "
#elif defined(__BORLANDC__)
" Borland C"
#else
" (unknown compiler)"
" BorlandC"
#endif
#if !defined(_GLFW_NO_DLOAD_WINMM)
" LoadLibrary(winmm)"
#endif
#if defined(_GLFW_BUILD_DLL)
" DLL"
#endif
#if !defined(_GLFW_NO_DLOAD_WINMM)
" load(winmm)"
#endif
;

@ -615,7 +615,7 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_FULL
const char* version = _GLFW_VERSION_FULL " X11"
#if defined(_GLFW_GLX)
" GLX"
#elif defined(_GLFW_EGL)
@ -634,9 +634,7 @@ const char* _glfwPlatformGetVersionString(void)
" clock_gettime"
#endif
#if defined(__linux__)
" Linux-joystick-API"
#else
" no-joystick-support"
" /dev/js"
#endif
#if defined(_GLFW_BUILD_DLL)
" shared"

Loading…
Cancel
Save