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-1201-gf9fae87
Date: Thu, 29 Sep 2011 16:13:18 +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  f9fae87a2c02b2656f8660ac599ead8aa5141829 (commit)
       via  36ee094c00c04cf028a5fa341a8da51e9950ed25 (commit)
       via  d2b96cafe33fa1bd31e08ef8c0d9341d9599988e (commit)
       via  e406be4ca6af4b73b5a030f3bba1506caea935e8 (commit)
       via  f7b1f55b02626e2abeba5f753165dcbb52bae584 (commit)
       via  c460c2736a4d7b781e883a925f04a1ae9822f9bc (commit)
      from  db4b6fff3c87eebf3faf9312ff50baf34fc261a3 (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=f9fae87a2c02b2656f8660ac599ead8aa5141829


commit f9fae87a2c02b2656f8660ac599ead8aa5141829
Merge: 36ee094 db4b6ff
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 10:13:10 2011 -0600

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


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


commit 36ee094c00c04cf028a5fa341a8da51e9950ed25
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 10:06:11 2011 -0600

    Only have one AC_OUTPUT, as otherwise the optional directories cause 
distcheck to fail.

diff --git a/configure.ac b/configure.ac
index 3b63e9b..e3f6db0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1178,7 +1178,6 @@ if test ${ndevice} -eq 0; then
 fi
 
 AM_CONDITIONAL(BUILD_DEVICES, test ${ndevice} -gt 0)
-AC_OUTPUT(libdevice/Makefile)
 
 dnl 16 bit: RGB555, RGB565
 dnl 24 bit: RGB24, BGR24
@@ -1668,19 +1667,6 @@ AC_ARG_ENABLE(cygnal,
 esac],cygnal=no)
 AM_CONDITIONAL(CYGNAL, test x$cygnal = xyes)
 
-AC_OUTPUT(cygnal/Makefile
-    cygnal/libnet/Makefile
-    cygnal/libamf/Makefile
-    cygnal/cgi-bin/Makefile
-    cygnal/cgi-bin/echo/Makefile
-    cygnal/cgi-bin/oflaDemo/Makefile
-    cygnal/cgi-bin/fitcDemo/Makefile
-    cygnal/testsuite/Makefile
-    cygnal/testsuite/libamf.all/Makefile
-    cygnal/testsuite/libnet.all/Makefile
-    cygnal/testsuite/cygnal.all/Makefile
-)
-
 dnl --------------------------------------------------------
 dnl Build the cgibins server if specified.
 dnl --------------------------------------------------------
@@ -2968,6 +2954,18 @@ plugin/klash/Makefile
 plugin/klash4/Makefile
 plugin/win32/Makefile
 plugin/aos4/Makefile
+libdevice/Makefile
+cygnal/Makefile
+cygnal/libnet/Makefile
+cygnal/libamf/Makefile
+cygnal/cgi-bin/Makefile
+cygnal/cgi-bin/echo/Makefile
+cygnal/cgi-bin/oflaDemo/Makefile
+cygnal/cgi-bin/fitcDemo/Makefile
+cygnal/testsuite/Makefile
+cygnal/testsuite/libamf.all/Makefile
+cygnal/testsuite/libnet.all/Makefile
+cygnal/testsuite/cygnal.all/Makefile
 )
 
 ###

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


commit d2b96cafe33fa1bd31e08ef8c0d9341d9599988e
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 09:41:34 2011 -0600

    Use conditional for LINUX so input devices are only built on Linux systems. 
Put cygnal libdevice in DIST_SUBDIRS or they won't get included in the source 
tarball.

diff --git a/Makefile.am b/Makefile.am
index cafb7d8..06a844a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -41,10 +41,15 @@ DISTCHECK_CONFIGURE_FLAGS = \
        --with-plugins-install=prefix \
        --enable-extensions=all \
        --enable-gui=all \
-       --enable-device=all \
        --enable-python \
        --enable-cygnal
 
+# Only build all devices on Linux, as Input Events are
+# primarily a Linux only thing.
+if LINUX
+DISTCHECK_CONFIGURE_FLAGS += --enable-device=all
+endif
+
 if CYGNAL
 CYGNAL_DIR = cygnal
 endif
@@ -70,7 +75,9 @@ STD_DIRS = \
        $(NULL)
 
 SUBDIRS = $(STD_DIRS)
-DIST_SUBDIRS = $(STD_DIRS) extensions testsuite
+# all optional build directories must be in DIST_SUBDIRS to be
+# included in the source tarball.
+DIST_SUBDIRS = $(STD_DIRS) cygnal libdevice extensions testsuite
 
 if TESTSUITE
 SUBDIRS += testsuite

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


commit e406be4ca6af4b73b5a030f3bba1506caea935e8
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 09:39:49 2011 -0600

    Always build libdevice/Makefile so distcheck is happy. Add Make conditional 
for LINUX. Fix inpout_event list text

diff --git a/configure.ac b/configure.ac
index 508196a..3b63e9b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -204,6 +204,7 @@ case "${host}" in
 esac
 
 
+AM_CONDITIONAL(LINUX, test x$linux = xyes)
 AM_CONDITIONAL(WIN32, test x$windows = xyes)
 AM_CONDITIONAL(HAIKU, test x$haiku = xyes)
 AM_CONDITIONAL(AMIGAOS4, test x$amigaos4 = xyes)
@@ -853,10 +854,11 @@ AC_ARG_ENABLE(input,
         build_tslib=yes
         if test x"${build_fb}" = xyes -a x"${linux}" = xyes; then
           build_input_events=yes
+          input_events="PS/2 Mouse, PS/2 Keyboard, Input Devices, Touchscreen 
via Tslib"                
         else
           build_input_events=no
+          input_events="PS/2 Mouse, PS/2 Keyboard, Touchscreen via Tslib"      
          
         fi
-        input_events="PS/2 Mouse, PS/2 Keyboard, Input Devices, Touchscreen 
via Tslib"                
         ;;
       *) AC_MSG_ERROR([invalid input device list! ${enableval} given (accept: 
ps2mouse|keyboard|events,touchscreen)])
          ;;
@@ -1176,9 +1178,7 @@ if test ${ndevice} -eq 0; then
 fi
 
 AM_CONDITIONAL(BUILD_DEVICES, test ${ndevice} -gt 0)
-if test ${ndevice} -gt 0; then
-  AC_OUTPUT(libdevice/Makefile)
-fi
+AC_OUTPUT(libdevice/Makefile)
 
 dnl 16 bit: RGB555, RGB565
 dnl 24 bit: RGB24, BGR24
@@ -1668,8 +1668,7 @@ AC_ARG_ENABLE(cygnal,
 esac],cygnal=no)
 AM_CONDITIONAL(CYGNAL, test x$cygnal = xyes)
 
-if test x$cygnal = xyes; then
- AC_OUTPUT(cygnal/Makefile
+AC_OUTPUT(cygnal/Makefile
     cygnal/libnet/Makefile
     cygnal/libamf/Makefile
     cygnal/cgi-bin/Makefile
@@ -1681,7 +1680,6 @@ if test x$cygnal = xyes; then
     cygnal/testsuite/libnet.all/Makefile
     cygnal/testsuite/cygnal.all/Makefile
 )
-fi
 
 dnl --------------------------------------------------------
 dnl Build the cgibins server if specified.

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


commit f7b1f55b02626e2abeba5f753165dcbb52bae584
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 09:37:51 2011 -0600

    gtkglext is unneeded, as the OpenGL support is no longer built by default.

diff --git a/packaging/redhat/gnash.spec b/packaging/redhat/gnash.spec
index 6a3e788..1fa043c 100644
--- a/packaging/redhat/gnash.spec
+++ b/packaging/redhat/gnash.spec
@@ -26,11 +26,11 @@ BuildRequires:  gstreamer-devel >= 0.10, 
gstreamer-plugins-base-devel >= 0.10
 # these are for the kde4 support
 BuildRequires:  kdelibs-devel >= 4.0, kdebase-devel >= 4.0, qt-devel >= 4.0
 # these are needed for the various renderers, which now all get built
-BuildRequires:  libXt-devel agg-devel gtkglext-devel libstdc++
+BuildRequires:  libXt-devel agg-devel libstdc++
 
 # The default Gnash package only includes the GTK parts, the rest
 # is in gnash-common.
-Requires:  gtkglext gtk2 pygtk2 python
+Requires:  gtk2 pygtk2 python
 Requires:  gnash-common
 
 # Fedora 12 packages the boost libraries as separate packages,

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


commit c460c2736a4d7b781e883a925f04a1ae9822f9bc
Author: Rob Savoye <address@hidden>
Date:   Thu Sep 29 09:36:26 2011 -0600

    add a few new things

diff --git a/NEWS b/NEWS
index 601e8e5..11a7304 100644
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,10 @@ Improvements since 0.8.9 release are:
  * Fix MovieClip.onLoad event dispatching and constant pools handling, fixing
    support for movies generated by the evil Adobe Captivate tool (#33521).
  * Fix unattached Sound.stop() semantic (#33888) enjoy Super Mario!
+ * OpenVG renderer added.
+ * Improved framebuffer GUI and touchscreen support.
+ * Framebuffer now supports using multiple renderers.
+ * Refactored input device support.
 
 Gnash 0.8.9
 2011/03/19

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

Summary of changes:
 Makefile.am                 |   11 +++++++++--
 NEWS                        |    4 ++++
 configure.ac                |   34 +++++++++++++++-------------------
 packaging/redhat/gnash.spec |    4 ++--
 4 files changed, 30 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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