summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Kinard <kumba@gentoo.org>2003-10-05 04:14:49 +0000
committerJoshua Kinard <kumba@gentoo.org>2003-10-05 04:14:49 +0000
commit1df395489846016f2720ae7a4a7adb5473548b92 (patch)
tree2262147428398894cea7a332d04def94e4d99421 /media-video/camstream/files
parentAdded a patch to resolv a gcc-3.3.x multi-line string issue; Closes Bug #30292 (diff)
downloadgentoo-2-1df395489846016f2720ae7a4a7adb5473548b92.tar.gz
gentoo-2-1df395489846016f2720ae7a4a7adb5473548b92.tar.bz2
gentoo-2-1df395489846016f2720ae7a4a7adb5473548b92.zip
Added a patch to resolv a gcc-3.3.x multi-line string issue; Closes Bug #30292
Diffstat (limited to 'media-video/camstream/files')
-rw-r--r--media-video/camstream/files/camstream-0.26.2-gcc33-multiline-string-fix.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/media-video/camstream/files/camstream-0.26.2-gcc33-multiline-string-fix.patch b/media-video/camstream/files/camstream-0.26.2-gcc33-multiline-string-fix.patch
new file mode 100644
index 000000000000..ded6899887d2
--- /dev/null
+++ b/media-video/camstream/files/camstream-0.26.2-gcc33-multiline-string-fix.patch
@@ -0,0 +1,34 @@
+--- ./camstream-0.26.2/camstream/ftpput.cc 2002-05-01 01:23:20.000000000 +0100
++++ ./camstream-0.26.2/camstream/ftpput.cc.patched 2003-10-04 05:26:00.000000000 +0100
+@@ -35,18 +35,19 @@
+
+ void CFTPPut::Usage()
+ {
+- qDebug("
+-Not enough/wrong arguments. Syntax:
++ qDebug("\n"
++"Not enough/wrong arguments. Syntax:\n"
++"\n\t"
++"ftpput file [options] [file ...] user:password@server[/path]\n"
++"\n"
++"The file is uploaded to the server using the FTP protocol. Path can be\n"
++"relative to the user's directory or absolute (use a double /).\n"
++"\n"
++"Options:\n\t"
++"--passive Use passive FTP to upload data\n"
++"\n"
+
+- ftpput file [options] [file ...] user:password@server[/path]
+-
+-The file is uploaded to the server using the FTP protocol. Path can be
+-relative to the user's directory or absolute (use a double /).
+-
+-Options:
+- --passive Use passive FTP to upload data
+-
+-");
++);
+ }
+
+ /**
+