gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1523-g9a5c31b
Date: Sun, 09 Dec 2012 16:15:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  9a5c31bb1f35e046e79f55458f95c8aa80ab4f30 (commit)
       via  e1e9d38912446ebf53f7155e4fca49b1d6bed9bd (commit)
       via  78e8fe8a83c19c4a27ed23dbedcfea374df2ea0b (commit)
      from  a562fb3a0fa7e6020bc77a0aa45bfd2997033163 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=9a5c31bb1f35e046e79f55458f95c8aa80ab4f30


commit 9a5c31bb1f35e046e79f55458f95c8aa80ab4f30
Author: Rob Savoye <address@hidden>
Date:   Sun Dec 9 09:09:09 2012 -0700

    add comment about when boost libraries appear in Boost based on the version.

diff --git a/macros/boost.m4 b/macros/boost.m4
index a6dbf9f..d8b34c8 100644
--- a/macros/boost.m4
+++ b/macros/boost.m4
@@ -103,7 +103,10 @@ AC_DEFUN([GNASH_PATH_BOOST],
     done
   done
 
-  dnl As of boost 1.47, the chrono library is required.
+  dnl As of boost 1.47, the chrono library is required. You can get a list of
+  dnl when a Boost library was added at:
+  dnl http://www.boost.org/doc/libs/?sort=boost-version
+
   gnash_boost_version=`grep "define.*BOOST_VERSION " 
${gnash_boost_topdir}/boost/version.hpp | cut -d ' ' -f 3`
   if test ${gnash_boost_version} -ge 104700; then
     boost_libs="${boost_libs} chrono"

http://git.savannah.gnu.org/cgit//commit/?id=e1e9d38912446ebf53f7155e4fca49b1d6bed9bd


commit e1e9d38912446ebf53f7155e4fca49b1d6bed9bd
Author: Rob Savoye <address@hidden>
Date:   Sun Dec 9 09:06:03 2012 -0700

    add libboost-system, it's now required.

diff --git a/packaging/debian/control b/packaging/debian/control
index b050050..dd15ae9 100644
--- a/packaging/debian/control
+++ b/packaging/debian/control
@@ -15,6 +15,7 @@ Build-Depends: dpkg-dev (>= 1.13.19),
               libboost-program-options-dev,
               libboost-thread-dev,
               libboost-date-time-dev,
+              libboost-system,
               libgtk2.0-dev, 
               libatk1.0-dev,
               kdelibs5-dev | kdelibs-dev,

http://git.savannah.gnu.org/cgit//commit/?id=78e8fe8a83c19c4a27ed23dbedcfea374df2ea0b


commit 78e8fe8a83c19c4a27ed23dbedcfea374df2ea0b
Author: Rob Savoye <address@hidden>
Date:   Sun Dec 9 09:01:41 2012 -0700

    add boost system library to requires, it's been around since 1.35. For 
Boost 1.47, add chrono, now a dependency for other boost libraries.

diff --git a/macros/boost.m4 b/macros/boost.m4
index 845aaae..a6dbf9f 100644
--- a/macros/boost.m4
+++ b/macros/boost.m4
@@ -1,6 +1,6 @@
 dnl  
 dnl  Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
-dnl  2011  Free Software Foundation, Inc.
+dnl  2011, 2012 Free Software Foundation, Inc.
 dnl  
 dnl  This program is free software; you can redistribute it and/or modify
 dnl  it under the terms of the GNU General Public License as published by
@@ -15,9 +15,8 @@ dnl  You should have received a copy of the GNU General 
Public License
 dnl  along with this program; if not, write to the Free Software
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-
 dnl Boost modules are:
-dnl date-time, filesystem. graph. iostreams, program options,
+dnl date-time, filesystem. graph. iostreams, program options, system, chrono
 dnl regex, serialization, signals, unit test, thead, and wave.
 
 AC_DEFUN([GNASH_PATH_BOOST],
@@ -37,10 +36,11 @@ AC_DEFUN([GNASH_PATH_BOOST],
   boost_headers="detail/lightweight_mutex.hpp thread/thread.hpp 
multi_index_container.hpp multi_index/key_extractors.hpp thread/mutex.hpp 
program_options/options_description.hpp iostreams/stream.hpp"
   dnl this is a list of *required* libraries. If any of these are missing, this
   dnl test will return a failure, and Gnash won't build.
-  boost_libs="thread program_options iostreams"
+  boost_libs="thread program_options iostreams system"
 
-  dnl this is a list of *recommended* libraries. If any of these are missing, 
this
-  dnl test will return a warning, and Gnash will build, but testing won't work.
+  dnl this is a list of *recommended* libraries. If any of these are missing,
+  dnl this test will return a warning, and Gnash will build, but testing
+  dnl won't work.
   cygnal_boost_libs="serialization date_time"
 
   dnl this is the default list for paths to search. This gets
@@ -82,7 +82,7 @@ AC_DEFUN([GNASH_PATH_BOOST],
        gnash_boost_subdir="`dirname ${gnash_boost_topdir}`"
        gnash_boost_version="`echo ${gnash_boost_topdir} | sed -e 
's:.*boost-::'`"
        dnl Fix for packaging systems not adding extra fluff to the path-name.
-       for k in ${boost_headers}; do
+         for k in ${boost_headers}; do
                        if test ! -f ${gnash_boost_topdir}/boost/$k; then
                  if test ! -f ${gnash_boost_subdir}/boost/$k; then
                            missing_headers="${missing_headers} $k"
@@ -103,6 +103,11 @@ AC_DEFUN([GNASH_PATH_BOOST],
     done
   done
 
+  dnl As of boost 1.47, the chrono library is required.
+  gnash_boost_version=`grep "define.*BOOST_VERSION " 
${gnash_boost_topdir}/boost/version.hpp | cut -d ' ' -f 3`
+  if test ${gnash_boost_version} -ge 104700; then
+    boost_libs="${boost_libs} chrono"
+  fi
   dnl this is the default list for paths to search. This gets
   dnl redefined if --with-boost-lib= is specified.
   newlist=$libslist

-----------------------------------------------------------------------

Summary of changes:
 macros/boost.m4          |   22 +++++++++++++++-------
 packaging/debian/control |    1 +
 2 files changed, 16 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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