aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhosokawa <hosokawa@FreeBSD.org>2002-03-29 14:19:14 +0800
committerhosokawa <hosokawa@FreeBSD.org>2002-03-29 14:19:14 +0800
commit106c16e9baf06cdb63aec0138e3f155ef8c867a0 (patch)
treecd23fd0f48cf76c15f98d6c302ecdd440e659269
parent4b8ff9e298685e048a5cd05d9cf2007993ba8d3e (diff)
downloadfreebsd-ports-gnome-106c16e9baf06cdb63aec0138e3f155ef8c867a0.tar.gz
freebsd-ports-gnome-106c16e9baf06cdb63aec0138e3f155ef8c867a0.tar.zst
freebsd-ports-gnome-106c16e9baf06cdb63aec0138e3f155ef8c867a0.zip
Fixed port build error.
-rw-r--r--converters/ish/files/patch-ab28
1 files changed, 28 insertions, 0 deletions
diff --git a/converters/ish/files/patch-ab b/converters/ish/files/patch-ab
new file mode 100644
index 000000000000..a1ef9a0b20bb
--- /dev/null
+++ b/converters/ish/files/patch-ab
@@ -0,0 +1,28 @@
+--- ish.c.orig Sun Aug 5 20:04:08 1990
++++ ish.c Fri Mar 29 15:18:25 2002
+@@ -48,7 +48,7 @@
+ long lsize;
+ char *filename = "file.ish";
+
+-FILE *opath = stdout;
++FILE *opath = NULL;
+ FILE *ipath;
+ char name[NAMLEN];
+
+@@ -61,7 +61,7 @@
+ static int ishargc=0;
+ static char *ishargv[32];
+
+-void main(argc, argv)
++int main(argc, argv)
+ int argc;
+ char **argv;
+ {
+@@ -69,6 +69,7 @@
+ char *p;
+ FILE *fopen();
+
++ opath = stdout;
+ if (argc < 2)
+ help();
+ while(--argc > 0) {