gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, hwaccel, updated. release_0_8_9_start


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, hwaccel, updated. release_0_8_9_start-941-g0689ca5
Date: Mon, 04 Apr 2011 19:11:09 +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, hwaccel has been updated
       via  0689ca55b44931bd5d070fcbf47283d072520b8a (commit)
       via  b209941a30220afe29b602ebdb7c3b8bd124e15f (commit)
       via  3ff9c8f52239cf86ca3e328b1288db015f0e8bc8 (commit)
       via  ff353d47302c6e66388b0cef3e259402af08de7e (commit)
       via  160db5b7c252a5390e2d961cc119218e4f1c96af (commit)
       via  21a14e2dd125d722b995f4fa86fc8f66f0407ec2 (commit)
      from  1c0481856b512267b226f8b27977c40dd0f5c1b4 (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=0689ca55b44931bd5d070fcbf47283d072520b8a


commit 0689ca55b44931bd5d070fcbf47283d072520b8a
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 13:10:50 2011 -0600

    add utilities back in as a STD_DIR

diff --git a/Makefile.am b/Makefile.am
index 38ebdc4..d093650 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -62,12 +62,13 @@ STD_DIRS = \
        librender \
        gui \
        plugin \
+       utilities \
        doc \
        po \
        $(NULL)
 
-SUBDIRS = $(STD_DIRS)
-DIST_SUBDIRS = $(STD_DIRS) cygnal utilities extensions testsuite
+SUBDIRS = $(STD_DIRS) $(CYGNAL_DIR)
+DIST_SUBDIRS = $(STD_DIRS) cygnal extensions testsuite
 
 if TESTSUITE
 SUBDIRS += testsuite

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


commit b209941a30220afe29b602ebdb7c3b8bd124e15f
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 13:10:26 2011 -0600

    add LTDL_LIBS to the link

diff --git a/libbase/Makefile.am b/libbase/Makefile.am
index 9a25d90..bddfd59 100644
--- a/libbase/Makefile.am
+++ b/libbase/Makefile.am
@@ -51,8 +51,9 @@ libgnashbase_la_LIBADD = \
        $(Z_LIBS) \
        $(CURL_LIBS) \
        $(LIBINTL) \
-       $(BOOST_LIBS) \
+       $(LTDL_LIBS) \
        $(OPENGL_LIBS) \
+       $(BOOST_LIBS) \
        $(PTHREAD_LIBS) \
        $(NULL)
 

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


commit 3ff9c8f52239cf86ca3e328b1288db015f0e8bc8
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 13:10:00 2011 -0600

    PTHREAD_LIBS should always follow BOOST_LIBS

diff --git a/utilities/Makefile.am b/utilities/Makefile.am
index 0c858ad..27212ef 100644
--- a/utilities/Makefile.am
+++ b/utilities/Makefile.am
@@ -36,6 +36,7 @@ AM_LDFLAGS = \
        $(LIBINTL) \
        $(LIBADD_DL) \
        $(BOOST_LIBS) \
+       $(PTHREAD_LIBS) \
        $(NULL)
 
 # bzip2 is a dependency of some libraries with mingw32

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


commit ff353d47302c6e66388b0cef3e259402af08de7e
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 13:09:28 2011 -0600

    silence warning

diff --git a/libbase/jemalloc.c b/libbase/jemalloc.c
index 18dfc6d..aa6c4c7 100644
--- a/libbase/jemalloc.c
+++ b/libbase/jemalloc.c
@@ -464,7 +464,9 @@ static const bool __isthreaded = true;
 #else
 #  define SIZEOF_PTR_2POW       2
 #endif
-#define PIC
+#ifndef PIC
+# define PIC
+#endif
 #ifndef MOZ_MEMORY_DARWIN
 static const bool __isthreaded = true;
 #else

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


commit 160db5b7c252a5390e2d961cc119218e4f1c96af
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 10:40:54 2011 -0600

    drawPoly() is still draw_poly() in this branch

diff --git a/librender/testr.cpp b/librender/testr.cpp
index a71764c..2f40c30 100644
--- a/librender/testr.cpp
+++ b/librender/testr.cpp
@@ -445,7 +445,7 @@ test_renderer(Renderer *renderer, const std::string &type)
     rgba outline(0, 0, 0, 255);;
     bool masked = true;
     Timer tdrawpoly("drawPoly");
-    renderer->drawPoly(corners, corner_count, fill, outline, mat, masked);
+    renderer->draw_poly(corners, corner_count, fill, outline, mat, masked);
     tdrawpoly.stop();
     runtest.unresolved(std::string("drawPoly() ") + tdrawpoly.elapsed());
     

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


commit 21a14e2dd125d722b995f4fa86fc8f66f0407ec2
Author: Rob Savoye <address@hidden>
Date:   Mon Apr 4 10:40:18 2011 -0600

    disable developer only tests by default

diff --git a/configure.ac b/configure.ac
index 07d16c3..ec572fa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -674,7 +674,7 @@ AC_ARG_ENABLE(devtests, AC_HELP_STRING([--enable-devtests],
   yes) devtests=yes ;;
   no)  devtests=no ;;
   *)   AC_MSG_ERROR([bad value ${enableval} for enable-devtests option]) ;;
-esac], devtests=yes)
+esac], devtests=no)
 AM_CONDITIONAL(ENABLE_DEVELOPER_TESTS, [test x${devtests} = xyes])
 
 dnl --------------------------------------------------------

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

Summary of changes:
 Makefile.am           |    5 +++--
 configure.ac          |    2 +-
 libbase/Makefile.am   |    3 ++-
 libbase/jemalloc.c    |    4 +++-
 librender/testr.cpp   |    2 +-
 utilities/Makefile.am |    1 +
 6 files changed, 11 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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