diff options
author | krion <krion@FreeBSD.org> | 2004-08-24 04:30:56 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-08-24 04:30:56 +0800 |
commit | 78c82b9e095cc4fa7d0ba7f71b0c09ec7a1bd6f4 (patch) | |
tree | 341d8b49b77519906a626782228e2573157a9339 /net/fspclient | |
parent | 400266e2024f8da389fa9858113e8d082fb0aeb3 (diff) | |
download | freebsd-ports-gnome-78c82b9e095cc4fa7d0ba7f71b0c09ec7a1bd6f4.tar.gz freebsd-ports-gnome-78c82b9e095cc4fa7d0ba7f71b0c09ec7a1bd6f4.tar.zst freebsd-ports-gnome-78c82b9e095cc4fa7d0ba7f71b0c09ec7a1bd6f4.zip |
Fix build with gcc-3.4
PR: ports/70883
Submitted by: maintainer
Diffstat (limited to 'net/fspclient')
-rw-r--r-- | net/fspclient/files/patch-gcc34 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/fspclient/files/patch-gcc34 b/net/fspclient/files/patch-gcc34 new file mode 100644 index 000000000000..4bf80b161365 --- /dev/null +++ b/net/fspclient/files/patch-gcc34 @@ -0,0 +1,11 @@ +--- client/remote/rdir.c.orig Wed Dec 10 15:36:57 2003 ++++ client/remote/rdir.c Mon Aug 23 21:41:29 2004 +@@ -29,7 +29,7 @@ + { + int i; + /* this is just a small wrapper for rls_main */ +- char * const *newargv; ++ char const * * newargv; + newargv=malloc( (argc+2)*(sizeof(char *))); + newargv[0]="dir"; + newargv[1]="-l"; |