OSDN Git Service

* include/_mingw.h: Fix typo.
authorEarnie Boyd <earnie@users.sourceforge.net>
Tue, 4 Sep 2012 19:07:08 +0000 (15:07 -0400)
committerEarnie Boyd <earnie@users.sourceforge.net>
Tue, 4 Sep 2012 19:07:08 +0000 (15:07 -0400)
ChangeLog
include/_mingw.h

index a0216b0..ac4f646 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,7 +3,9 @@
        More on assuming GCC is greater than or equal to version 3.5.4 and that
        GCC is the only compiler to be used for MinGW.org.
 
-       * src/libcrt/math/cephes_mconf.h
+       * src/libcrt/math/cephes_mconf.h: Remove unneeded filters based on the
+       assumptions.
+       * include/_mingw.h: Fix typo.
 
 2012-09-04  Earnie Boyd  <earnie@users.sourceforge.net>
 
index ad6bbc6..495c790 100644 (file)
@@ -40,7 +40,7 @@
 #error ERROR: You must use a GNU Compiler.
 #endif
 
-#if (__GNUC__ < 3 || !defined(__GNUC__MINOR__) || (__GNUC__ = 3 && __GNUC_MINOR__ < 4) || (__GNUC__ = 3 && __GNUC_MINOR__ >= 4 && __GNUC_PATCHLEVEL__ < 5))
+#if (__GNUC__ < 3 || !defined(__GNUC__MINOR__) || (__GNUC__ == 3 && __GNUC_MINOR__ < 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4 && __GNUC_PATCHLEVEL__ < 5))
 #error ERROR: You must use a GNU Compiler version >= 3.4.5.
 #endif