소스 검색

Use the built-in version of vsnprintf() to support printing NULLs

Elad Lahav 2 년 전
부모
커밋
f352eeb90c
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      CMakeLists.txt

+ 6 - 0
CMakeLists.txt

@@ -1817,6 +1817,12 @@ elseif(UNIX AND NOT APPLE AND NOT RISCOS AND NOT HAIKU)
     set(HAVE_RPATH TRUE)
   endif()
 
+  if(QNX)
+    # QNX's *printf() family generates a SIGSEGV if NULL is passed for a string
+    # specifier (on purpose), but SDL expects "(null)". Use the built-in
+    # implementation.
+    set (HAVE_VSNPRINTF 0)
+  endif()
 elseif(WINDOWS)
   find_program(WINDRES windres)