Pārlūkot izejas kodu

dlopennot: ngage's g++ compiler does not support variadic macros

Anonymous Maarten 2 nedēļas atpakaļ
vecāks
revīzija
c50e4b22ab
1 mainītis faili ar 8 papildinājumiem un 0 dzēšanām
  1. 8 0
      src/dynapi/SDL_dynapi_dlopennote.h

+ 8 - 0
src/dynapi/SDL_dynapi_dlopennote.h

@@ -91,8 +91,16 @@
 
 #else
 
+#if defined (__GNUC__) && __GNUC__ < 3
+
+#define SDL_ELF_NOTE_DLOPEN
+
+#else
+
 #define SDL_ELF_NOTE_DLOPEN(...)
 
 #endif
 
 #endif
+
+#endif