Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (799fee9fee34b9eb2cbf47192d74d9c8d69fc850)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (799fee9fee34b9eb2cbf47192d74d9c8d69fc850)
  • Date: Tue, 16 Feb 2010 19:08:20 -0600

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

http/gnash/CONFIGURE | 9 +--------
http/gnash/DEPENDS | 30 +++++++++++-------------------
http/gnash/HISTORY | 3 +++
3 files changed, 15 insertions(+), 27 deletions(-)

New commits:
commit 799fee9fee34b9eb2cbf47192d74d9c8d69fc850
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

http/gnash: added cairo renderer, various cleanups

diff --git a/http/gnash/CONFIGURE b/http/gnash/CONFIGURE
index c39583a..89515f6 100755
--- a/http/gnash/CONFIGURE
+++ b/http/gnash/CONFIGURE
@@ -1,10 +1,4 @@
config_query_option GNASH_OPTS \
- "Enable support for the MIT-SHM X extension" \
- y \
- "--enable-mit-shm" \
- "--disable-mit-shm" &&
-
-config_query_option GNASH_OPTS \
"Makes the plugin write the currently playing SWF to
/tmp." \
n \
"--enable-write" \
@@ -20,5 +14,4 @@ config_query_list GNASH_MEDIA
\

config_query_list GNASH_RENDERER \
"Which renderer to use?" \
- opengl agg
-
+ cairo opengl agg
diff --git a/http/gnash/DEPENDS b/http/gnash/DEPENDS
index ca96ff6..20583f3 100755
--- a/http/gnash/DEPENDS
+++ b/http/gnash/DEPENDS
@@ -1,17 +1,19 @@
depends -sub "THREAD DATE_TIME" boost &&
depends curl &&
-depends fontconfig '--enable-fontconfig' &&
+depends fontconfig &&
depends g++ &&
-depends jpeg '--enable-jpeg' &&
-depends libpng '--enable-png' &&
+depends jpeg &&
+depends libpng &&
depends libxml2 &&
-depends zlib '--enable-z' &&
+depends zlib &&

#
# Video rendering
#
-if [[ $GNASH_RENDERER == "opengl" ]]; then
+if [[ "$GNASH_RENDERER" == "opengl" ]]; then
depends OPENGL '--enable-renderer=ogl'
+elif [[ "$GNASH_RENDERER" == "cairo" ]]; then
+ depends cairo '--enable-renderer=cairo'
else
depends agg '--enable-renderer=agg'
fi &&
@@ -64,28 +66,18 @@ optional_depends lirc
\
'--disable-lirc' \
'for Linux infra-red controller support' &&

-optional_depends libxft \
- '--enable-Xft' \
- '--disable-Xft' \
- 'Enable support for xft library' &&
-
optional_depends GECKO \
'--enable-xpcom' \
'--disable-xpcom' \
'Enable xpcom support in NPAPI plugin' &&

-optional_depends nspr \
- '--enable-nspr' \
- '--disable-nspr' \
- 'Enable support for Netscape Portable Runtime (NSPR).' &&
-
optional_depends giflib \
- '--enable-gif' \
- '--disable-gif' \
+ '' \
+ '' \
'Enable support for gif images.' &&

optional_depends expat \
- '--enable-expat' \
- '--disable-expat' \
+ '' \
+ '' \
'Enable support for Expat library.'

diff --git a/http/gnash/HISTORY b/http/gnash/HISTORY
index 8804709..38d9dfd 100644
--- a/http/gnash/HISTORY
+++ b/http/gnash/HISTORY
@@ -1,3 +1,6 @@
+2010-02-16 Pol Vinogradov <vin.public AT gmail.com>
+ * CONFIGURE, DEPENDS: added cairo renderer, various cleanups
+
2009-09-28 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: updated to 0.8.6





Archive powered by MHonArc 2.6.24.

Top of Page