diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2006-04-26 10:22:18 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2006-04-26 10:22:18 +0000 |
commit | 1ad19d44c73266b6c6a965c6eff62904d785b42a (patch) | |
tree | ad55be11bae028f1c0f0a7351d9f7ce7fd2b93a9 /textproc/iiimf-server | |
parent | 8538f72fa5b2e614d343cda283ef4fdbcf30f487 (diff) |
textproc/iiimf-server: build error fix
PR: ports/96345
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=160508
Diffstat (limited to 'textproc/iiimf-server')
-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 000000000000..c0cd33531b75 --- /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; |