Procházet zdrojové kódy

Fixed bug 2885 - SDL_stdinc.h doesn't need to include iconv.h

Ryan C. Gordon

We still include iconv.h in SDL_stdinc.h, probably because this header might have referenced the native iconv functions and types directly. Since these are hidden behind a stable ABI now and never just a #define for the system iconv, we shouldn't need this header included from a public SDL header anymore, slowing down external apps compiles and pulling tons of stuff into the namespace.
Sam Lantinga před 8 roky
rodič
revize
73f2c5413d
2 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 0 3
      include/SDL_stdinc.h
  2. 1 0
      src/stdlib/SDL_iconv.c

+ 0 - 3
include/SDL_stdinc.h

@@ -83,9 +83,6 @@
 #ifdef HAVE_FLOAT_H
 # include <float.h>
 #endif
-#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H)
-# include <iconv.h>
-#endif
 
 /**
  *  The number of elements in an array.

+ 1 - 0
src/stdlib/SDL_iconv.c

@@ -31,6 +31,7 @@
 #include "SDL_endian.h"
 
 #ifdef HAVE_ICONV
+#include <iconv.h>
 
 /* Depending on which standard the iconv() was implemented with,
    iconv() may or may not use const char ** for the inbuf param.