]> git.saurik.com Git - wxWidgets.git/commitdiff
Allow wchar_t for djgpp
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 25 Apr 2005 09:48:45 +0000 (09:48 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 25 Apr 2005 09:48:45 +0000 (09:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33872 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index e7bdca44c677d07c3a4cddf46cb11315a8895fb1..0debdf4171e3eafe1f57314a6de6a38a72e2ddb8 100644 (file)
@@ -288,8 +288,6 @@ case "${host}" in
     AC_DEFINE(__DOS__)
     PROGRAM_EXT=".exe"
     DEFAULT_DEFAULT_wxUSE_MGL=1
-    dnl DJGPP needs explicit -lstdc++ for some reason (VS: mayb some versions only?)
-    LIBS="$LIBS -lstdc++"
   ;;
 
   *-pc-os2_emx | *-pc-os2-emx )
@@ -1797,8 +1795,8 @@ dnl SGI/Irix's stdio.h does not include wchar_t. Mac OS X does not provide
 dnl wchar.h and wchar_t is defined by stdlib.h (GD)
 AC_CHECK_SIZEOF(wchar_t, 0,
     [
-        /* DJGPP only has fake wchar_t: */
-        #ifdef __DJGPP__
+        /* DJGPP's wchar_t is now a keyword in C++ (still not C though) */
+        #if defined(__DJGPP__) && !( (__GNUC_MINOR__ >= 8 && __GNUC__ == 2 ) || __GNUC__ >= 3 )
         #  error "fake wchar_t"
         #endif
         #ifdef HAVE_WCHAR_H