summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sandall2008-02-28 03:32:43 +0000
committerEric Sandall2008-03-06 10:59:40 -0800
commitfb2a840b8a77034017eb5601f220bfcc4e684eb3 (patch)
treeb02184f54498ba08bf81e46dec444db83afa0ec7
parentc393f4320c77963c0515c1b19caf9296085198c8 (diff)
gnash: Don't modify GNASH_SOUND outside of the config_query_list
Fixes Bug #14338 (cherry picked from commit 44f025c1c63e2f301d1a14f555b399e755271d18)
-rwxr-xr-xhttp/gnash/CONFIGURE9
-rw-r--r--http/gnash/HISTORY5
2 files changed, 11 insertions, 3 deletions
diff --git a/http/gnash/CONFIGURE b/http/gnash/CONFIGURE
index 55d2ac4ed6..d028ed58aa 100755
--- a/http/gnash/CONFIGURE
+++ b/http/gnash/CONFIGURE
@@ -3,28 +3,31 @@ config_query_option GNASH_OPTS \
y \
"--enable-nsapi" \
"--disable-nsapi" &&
+
config_query_option GNASH_OPTS \
"Enable support for the MIT-SHM X extension" \
n \
"--enable-mit-shm" \
"--disable-mit-shm" &&
+
config_query_option GNASH_OPTS \
"Makes the plugin write the currently playing SWF to /tmp." \
n \
"--enable-write" \
"--disable-write" &&
+
config_query_list GNASH_GUI \
"Which GUI do you want to use?" \
GTK KDE &&
+
config_query_list GNASH_MEDIA \
"Which media backend do you want to use?" \
ffmpeg gstreamer libmad &&
+
config_query_list GNASH_RENDERER \
"Which renderer to use?" \
opengl agg &&
-GNASH_SOUND=${GNASH_SOUND/SDL/sdl} &&
-GNASH_SOUND=${GNASH_SOUND/GST/gstreamer} &&
-GNASH_SOUND=${GNASH_SOUND/gst/gstreamer} &&
+
# doesn't have much sense to keep this here but anyway...
config_query_list GNASH_SOUND \
"Which sound system do you want to use?" \
diff --git a/http/gnash/HISTORY b/http/gnash/HISTORY
index 02fc6174cd..de1b4b726c 100644
--- a/http/gnash/HISTORY
+++ b/http/gnash/HISTORY
@@ -1,3 +1,7 @@
+2008-02-28 Eric Sandall <sandalle@sourcemage.org>
+ * CONFIGURE: Don't modify GNASH_SOUND outside of the config_query_list
+ Fixes Bug #14338
+
2008-01-02 Pol Vinogradov <vin.public@gmail.com>
* INSTALL: switched to icecat{,-bin}
@@ -61,3 +65,4 @@
2007-03-08 Arjan Bouter <abouter@sourcemage.org>
* DETAILS,DEPENDS,PREPARE,BUILD,HISTORY: created spell
+