gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog libbase/utility.h server/as_obj... [gnash


From: Dossy Shiobara
Subject: [Gnash-commit] gnash ChangeLog libbase/utility.h server/as_obj... [gnash_0_8_3_branch]
Date: Thu, 29 May 2008 15:11:58 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         gnash_0_8_3_branch
Changes by:     Dossy Shiobara <dossy>  08/05/29 15:11:58

Modified files:
        .              : ChangeLog 
        libbase        : utility.h 
        server         : as_object.h 

Log message:
        Fix up finite/isfinite for GCC 3.4, specifically Win32/MinGW.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&only_with_tag=gnash_0_8_3_branch&r1=1.6573.2.42&r2=1.6573.2.43
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/utility.h?cvsroot=gnash&only_with_tag=gnash_0_8_3_branch&r1=1.49.2.1&r2=1.49.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/server/as_object.h?cvsroot=gnash&only_with_tag=gnash_0_8_3_branch&r1=1.110&r2=1.110.2.1

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6573.2.42
retrieving revision 1.6573.2.43
diff -u -b -r1.6573.2.42 -r1.6573.2.43
--- ChangeLog   26 May 2008 07:56:57 -0000      1.6573.2.42
+++ ChangeLog   29 May 2008 15:11:56 -0000      1.6573.2.43
@@ -1,3 +1,9 @@
+2008-05-29  Dossy Shiobara <address@hidden>
+
+       * libbase/utility.h,
+         server/as_object.h: Fix up finite/isfinite for GCC
+         3.4, specifically Win32/MinGW.
+
 2008-05-26 Benjamin Wolsey <address@hidden>
 
         * server/vm/ASHandlers.cpp: commit the proper fix for bug #23331

Index: libbase/utility.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/utility.h,v
retrieving revision 1.49.2.1
retrieving revision 1.49.2.2
diff -u -b -r1.49.2.1 -r1.49.2.2
--- libbase/utility.h   10 May 2008 11:05:43 -0000      1.49.2.1
+++ libbase/utility.h   29 May 2008 15:11:57 -0000      1.49.2.2
@@ -86,12 +86,11 @@
 #define M_PI 3.141592654
 #endif // M_PI
 
-#ifndef HAVE_ISFINITE
-# ifndef isfinite 
+#if defined(HAVE_FINITE) && !defined(isfinite)
 #  define isfinite finite
-# endif 
 #endif 
 
+
 //
 // some misc handy math functions
 //

Index: server/as_object.h
===================================================================
RCS file: /sources/gnash/gnash/server/as_object.h,v
retrieving revision 1.110
retrieving revision 1.110.2.1
diff -u -b -r1.110 -r1.110.2.1
--- server/as_object.h  7 May 2008 09:41:13 -0000       1.110
+++ server/as_object.h  29 May 2008 15:11:58 -0000      1.110.2.1
@@ -33,6 +33,7 @@
 #include "as_prop_flags.h" // for enum
 #include "GnashException.h"
 #include "event_id.h" // for event_id
+#include "utility.h" // for isfinite
 #include <sstream>
 
 #if defined(__GNUC__) && __GNUC__ > 2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]