CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/08/23 09:26:51
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&r1=1.4076&r2=1.4077 http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.405&r2=1.406 http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/rc.cpp?cvsroot=gnash&r1=1.31&r2=1.32 http://cvs.savannah.gnu.org/viewcvs/gnash/macros/pthreads.m4?cvsroot=gnash&r1=1.30&r2=1.31 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4076 retrieving revision 1.4077 diff -u -b -r1.4076 -r1.4077 --- ChangeLog 23 Aug 2007 02:01:04 -0000 1.4076 +++ ChangeLog 23 Aug 2007 09:26:50 -0000 1.4077 @@ -1,3 +1,13 @@ +2007-08-23 Sandro Santilli <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> * libamf/amf.cpp: memcpy -> strncpy, since it does a memory Index: configure.ac =================================================================== RCS file: /sources/gnash/gnash/configure.ac,v retrieving revision 1.405 retrieving revision 1.406 diff -u -b -r1.405 -r1.406 --- configure.ac 22 Aug 2007 11:20:29 -0000 1.405 +++ configure.ac 23 Aug 2007 09:26:50 -0000 1.406 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA dnl -dnl $Id: configure.ac,v 1.405 2007/08/22 11:20:29 strk Exp $ +dnl $Id: configure.ac,v 1.406 2007/08/23 09:26:50 strk Exp $ AC_PREREQ(2.50) AC_INIT(gnash, cvs) @@ -986,7 +986,6 @@ AM_CONDITIONAL(HAVE_SDL, [ test x$has_SDL = xyes ]) -GNASH_PATH_BOOST GNASH_PATH_LIBXML dnl @@ -1265,6 +1264,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.31 retrieving revision 1.32 diff -u -b -r1.31 -r1.32 --- libbase/rc.cpp 21 Aug 2007 15:18:36 -0000 1.31 +++ libbase/rc.cpp 23 Aug 2007 09:26:50 -0000 1.32 @@ -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.31 diff -u -b -r1.30 -r1.31 --- macros/pthreads.m4 1 Jul 2007 10:54:13 -0000 1.30 +++ macros/pthreads.m4 23 Aug 2007 09:26:50 -0000 1.31 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA dnl Copyright (C) 2006 Steven G. Johnson <[EMAIL PROTECTED]>. -dnl $Id: pthreads.m4,v 1.30 2007/07/01 10:54:13 bjacques Exp $ +dnl $Id: pthreads.m4,v 1.31 2007/08/23 09:26:50 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*) _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit