gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog configure.ac libbase/rc.cpp mac... [relea


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog configure.ac libbase/rc.cpp mac... [release_0_8_1]
Date: Thu, 23 Aug 2007 09:26:23 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         release_0_8_1
Changes by:     Sandro Santilli <strk>  07/08/23 09:26:23

Modified files:
        .              : ChangeLog configure.ac 
        libbase        : rc.cpp 
        macros         : pthreads.m4 

Log message:
                * configure.ac: move BOOST macro detector invocation after
                  PTHREAD one, as the former requires the latter.
        
        Patches by Deanna Phillips <deanna>:
        
                * macros/pthreads.m4: set pthread flags to -pthread for openbsd.
                * libbase/rc.cpp: include unistd.h for getuid()

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&only_with_tag=release_0_8_1&r1=1.3971.2.57&r2=1.3971.2.58
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&only_with_tag=release_0_8_1&r1=1.396.2.8&r2=1.396.2.9
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/rc.cpp?cvsroot=gnash&only_with_tag=release_0_8_1&r1=1.27.2.4&r2=1.27.2.5
http://cvs.savannah.gnu.org/viewcvs/gnash/macros/pthreads.m4?cvsroot=gnash&only_with_tag=release_0_8_1&r1=1.30&r2=1.30.2.1

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3971.2.57
retrieving revision 1.3971.2.58
diff -u -b -r1.3971.2.57 -r1.3971.2.58
--- ChangeLog   23 Aug 2007 02:00:12 -0000      1.3971.2.57
+++ ChangeLog   23 Aug 2007 09:26:21 -0000      1.3971.2.58
@@ -1,9 +1,20 @@
+2007-08-23 Sandro Santilli <address@hidden>
+
+       * configure.ac: move BOOST macro detector invocation after
+         PTHREAD one, as the former requires the latter.
+
+2007-08-23 Deanna Phillips <deanna>
+
+       * macros/pthreads.m4: set pthread flags to -pthread for openbsd.
+       * libbase/rc.cpp: include unistd.h for getuid()
+
 2007-08-23 Markus Gothe <address@hidden>
 
        * libamf/amf.cpp: memcpy -> strncpy, since it does a memory 
        access violation on Darwin (and porbably other OSes).
        
-2007-08-22 Sandro Santilli <address@hidden>
+
+2007-08-23 Sandro Santilli <address@hidden>
 
        * NEWS: add note about the 'debugLog' gnashrc fix and set
          release date to Aug 23 (tomorrow).

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.396.2.8
retrieving revision 1.396.2.9
diff -u -b -r1.396.2.8 -r1.396.2.9
--- configure.ac        22 Aug 2007 12:15:30 -0000      1.396.2.8
+++ configure.ac        23 Aug 2007 09:26:22 -0000      1.396.2.9
@@ -15,7 +15,7 @@
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 dnl  
 
-dnl $Id: configure.ac,v 1.396.2.8 2007/08/22 12:15:30 strk Exp $
+dnl $Id: configure.ac,v 1.396.2.9 2007/08/23 09:26:22 strk Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, 0.8.1)
@@ -984,7 +984,6 @@
 
 AM_CONDITIONAL(HAVE_SDL, [ test x$has_SDL = xyes ])
 
-GNASH_PATH_BOOST
 GNASH_PATH_LIBXML
 
 dnl
@@ -1263,6 +1262,8 @@
   fi
 fi
 
+GNASH_PATH_BOOST
+
 AX_GCC_ARCHFLAG(no)
 
 AC_ARG_ENABLE([strict],

Index: libbase/rc.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/rc.cpp,v
retrieving revision 1.27.2.4
retrieving revision 1.27.2.5
diff -u -b -r1.27.2.4 -r1.27.2.5
--- libbase/rc.cpp      21 Aug 2007 15:26:21 -0000      1.27.2.4
+++ libbase/rc.cpp      23 Aug 2007 09:26:22 -0000      1.27.2.5
@@ -27,6 +27,7 @@
 #endif
 
 #include <sys/types.h>
+#include <unistd.h> // for getuid()
 #include <sys/stat.h>
 
 #include <cctype>  // for toupper

Index: macros/pthreads.m4
===================================================================
RCS file: /sources/gnash/gnash/macros/pthreads.m4,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -u -b -r1.30 -r1.30.2.1
--- macros/pthreads.m4  1 Jul 2007 10:54:13 -0000       1.30
+++ macros/pthreads.m4  23 Aug 2007 09:26:22 -0000      1.30.2.1
@@ -15,7 +15,7 @@
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 dnl Copyright (C) 2006 Steven G. Johnson <address@hidden>.
-dnl $Id: pthreads.m4,v 1.30 2007/07/01 10:54:13 bjacques Exp $
+dnl $Id: pthreads.m4,v 1.30.2.1 2007/08/23 09:26:22 strk Exp $
 
 AC_DEFUN([GNASH_PATH_PTHREADS],
 [
@@ -82,7 +82,7 @@
 dnl pth(read)-config: use pthread-config program (for GNU Pth library)
 
 case "${host_cpu}-${host_os}" in
-  *linux*)
+  *linux* | *openbsd*)
     pthread_flags="-pthread"
     ;;
   *darwin*)




reply via email to

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