r27 - in /packages/gnash/trunk/debian: changelog patches/cmdline.patch patches/series

baby-guest at users.alioth.debian.org baby-guest at users.alioth.debian.org
Mon Sep 25 19:00:53 CEST 2006


Author: baby-guest
Date: Mon Sep 25 17:00:53 2006
New Revision: 27

URL: http://svn.debian.org/wsvn/?sc=1&rev=27
Log:
Added cmdline.patch to solve problem of cmdline parser failure with "a=b.swf".
Thanks to Robert Millan <rmh at aybabtu.com>.
Closes: #383770


Added:
    packages/gnash/trunk/debian/patches/cmdline.patch
Modified:
    packages/gnash/trunk/debian/changelog
    packages/gnash/trunk/debian/patches/series

Modified: packages/gnash/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/packages/gnash/trunk/debian/changelog?rev=27&op=diff
==============================================================================
--- packages/gnash/trunk/debian/changelog (original)
+++ packages/gnash/trunk/debian/changelog Mon Sep 25 17:00:53 2006
@@ -1,3 +1,11 @@
+gnash (0.7.1+cvs20060924.1330-2) UNRELEASED; urgency=low
+
+  * Added cmdline.patch to solve problem of cmdline parser failure
+    with "a=b.swf". Thanks to Robert Millan <rmh at aybabtu.com>.
+    Closes: #383770
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Mon, 25 Sep 2006 18:51:20 +0200
+
 gnash (0.7.1+cvs20060924.1330-1) unstable; urgency=low
 
   * New Upstream Release. Downloaded from CVS.

Added: packages/gnash/trunk/debian/patches/cmdline.patch
URL: http://svn.debian.org/wsvn/packages/gnash/trunk/debian/patches/cmdline.patch?rev=27&op=file
==============================================================================
--- packages/gnash/trunk/debian/patches/cmdline.patch (added)
+++ packages/gnash/trunk/debian/patches/cmdline.patch Mon Sep 25 17:00:53 2006
@@ -1,0 +1,34 @@
+diff -ur gnash-0.7.1.old/backend/gnash.cpp gnash-0.7.1/backend/gnash.cpp
+--- gnash-0.7.1.old/backend/gnash.cpp	2006-08-18 22:21:21.000000000 +0200
++++ gnash-0.7.1/backend/gnash.cpp	2006-08-19 13:48:14.000000000 +0200
+@@ -350,12 +350,7 @@
+     
+     // get the file name from the command line
+     while (optind < argc) {
+-        // Some options set variables, like ip=127.0.0.1
+-        if (strchr(argv[optind], '=')) {
+-            dbglogfile << "Got variable option on command line!" << endl;
+-        } else {
+-            infiles.push_back(argv[optind]);
+-        }
++        infiles.push_back(argv[optind]);
+ 	optind++;
+     }
+ 
+diff -ur gnash-0.7.1.old/plugin/klash/klash.cpp gnash-0.7.1/plugin/klash/klash.cpp
+--- gnash-0.7.1.old/plugin/klash/klash.cpp	2006-04-25 19:14:23.000000000 +0200
++++ gnash-0.7.1/plugin/klash/klash.cpp	2006-08-19 13:49:33.000000000 +0200
+@@ -377,12 +377,7 @@
+     
+     // get the file name from the command line
+     while (optind < argc) {
+-        // Some options set variables, like ip=127.0.0.1
+-        if (strchr(argv[optind], '=')) {
+-            dbglogfile << "Got variable option on command line!" << endl;
+-        } else {
+-            infiles.push_back(argv[optind]);
+-        }
++        infiles.push_back(argv[optind]);
+ 	optind++;
+     }
+ 

Modified: packages/gnash/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/packages/gnash/trunk/debian/patches/series?rev=27&op=diff
==============================================================================
--- packages/gnash/trunk/debian/patches/series (original)
+++ packages/gnash/trunk/debian/patches/series Mon Sep 25 17:00:53 2006
@@ -1,2 +1,3 @@
 amf.patch -p1
 getopt.patch -p1
+cmdline.patch -p1




More information about the pkg-flash-devel mailing list