diff options
author | daichi <daichi@FreeBSD.org> | 2006-04-26 10:22:18 +0000 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2006-04-26 10:22:18 +0000 |
commit | eeff1fd6ab997ef6a18559786bba113e38a3871d (patch) | |
tree | dcbb34c144b64b61af71861aa9cd8f3abadcbc7d /textproc | |
parent | 4f7eb926fef9155d17d6c602031ca052d9d1ab80 (diff) | |
download | FreeBSD-ports-eeff1fd6ab997ef6a18559786bba113e38a3871d.zip FreeBSD-ports-eeff1fd6ab997ef6a18559786bba113e38a3871d.tar.gz |
textproc/iiimf-server: build error fix
PR: ports/96345
Submitted by: maintainer
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/iiimf-server/files/patch-iiimsf_lib_iml_fop.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/textproc/iiimf-server/files/patch-iiimsf_lib_iml_fop.c b/textproc/iiimf-server/files/patch-iiimsf_lib_iml_fop.c new file mode 100644 index 0000000..c0cd335 --- /dev/null +++ b/textproc/iiimf-server/files/patch-iiimsf_lib_iml_fop.c @@ -0,0 +1,12 @@ +--- iiimsf/lib/iml/fop.c.orig Wed Apr 26 11:16:43 2006 ++++ iiimsf/lib/iml/fop.c Wed Apr 26 11:22:55 2006 +@@ -995,7 +995,9 @@ + break; + case F_SETFD: + case F_SETFL: ++#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 + case F_SETOWN: ++#endif + arg_int = va_arg(ap, int); + rv = func(fopc, file->value, cmd, arg_int); + break; |