gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash configure.ac ChangeLog


From: Rob Savoye
Subject: [Gnash-commit] gnash configure.ac ChangeLog
Date: Fri, 21 Mar 2008 17:27:32 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    08/03/21 17:27:32

Modified files:
        .              : configure.ac ChangeLog 

Log message:
                * configure.ac: Add conditional for win32 builds.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.495&r2=1.496
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5989&r2=1.5990

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.495
retrieving revision 1.496
diff -u -b -r1.495 -r1.496
--- configure.ac        14 Mar 2008 23:50:00 -0000      1.495
+++ configure.ac        21 Mar 2008 17:27:31 -0000      1.496
@@ -102,6 +102,9 @@
   i*86-*-openbsd*)
     openbsd_os=openbsd
     ;;
+  *-cygwin* | *-mingw* | *-pw32*)
+    windows=yes
+    ;;
   *64-*-openbsd*)
     openbsd_os=openbsd 
     AC_DEFINE([WORDSIZE], [64], [this is a 64 platform])
@@ -109,6 +112,7 @@
 esac
 
 AM_CONDITIONAL(PLUGIN_LINK_UNDEFINED, test x$openbsd_os = xopenbsd)
+AM_CONDITIONAL(WIN32, test x$windows = xyes)
 
 dnl Get build date for helping us debugging
 BUILDDATE="`date +%Y%m%d`"
@@ -339,9 +343,23 @@
   no)  cygnal=no ;;
   *)   AC_MSG_ERROR([bad value ${enableval} for enable-cygnal option]) ;;
 esac],cygnal=no)
-
 AM_CONDITIONAL(CYGNAL, test x$cygnal = xyes)
 
+dnl Build adding statistics collecting on both memory and performance.
+dnl Warning: this can be a performance hit by itself, due to the overhead
+dnl of collecting and storing the information.
+AC_ARG_ENABLE(statistics,
+  AC_HELP_STRING([--enable-statistics], [Enable statistics gathering]),
+[case "${enableval}" in
+  yes) statistics=yes
+       AC_DEFINE(USE_STATISTICS, [1], [Collect statistics on memopry and 
performance])
+       ;;
+  no)  statistics=no ;;
+  *)   AC_MSG_ERROR([bad value ${enableval} for enable-statistics option]) ;;
+esac],statistics=no)
+
+AM_CONDITIONAL(STATISTICS, test x$statistics = xyes)
+
 dnl Fix the Intel 810 LOD bias problem
 AC_ARG_ENABLE(i810-lod-bias,
   AC_HELP_STRING([--enable-i810-lod-bias], [Enable fix for Intel 810 LOD bias 
problem]),

Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5989
retrieving revision 1.5990
diff -u -b -r1.5989 -r1.5990
--- ChangeLog   21 Mar 2008 10:06:18 -0000      1.5989
+++ ChangeLog   21 Mar 2008 17:27:31 -0000      1.5990
@@ -1,3 +1,7 @@
+2008-03-21  Rob Savoye  <address@hidden>
+
+       * configure.ac: Add conditional for win32 builds.
+
 2008-03-21 Sandro Santilli <address@hidden>
 
        * server/array.cpp, testsuite/server/AsValueTest.cpp:
@@ -8,6 +12,11 @@
        * server/array.cpp: Fix compilation of isfinite.
        * testsuite/server/AsValueTest.cpp: Fix compilation of isfinite.
 
+2008-03-20  Rob Savoye  <address@hidden>
+
+       * libbase/network.cpp: Return a 0 if the socket is never available
+       for writing.
+
 2008-03-20 Sandro Santilli <address@hidden>
 
        * server/parser/sprite_definition.cpp (read):
@@ -25,7 +34,7 @@
 
 2008-03-19  Rob Savoye  <address@hidden>
 
-       * libbase/network.cpp: Close the listener file descript too before
+       * libbase/network.cpp: Close the listener file descriptor too before
        restarting a connection.
 
 2008-03-19 Sandro Santilli <address@hidden>




reply via email to

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