diff options
author | mbr <mbr@FreeBSD.org> | 2002-10-19 18:39:26 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2002-10-19 18:39:26 +0800 |
commit | 81db3e8d02d5ee2555e2e0edb1c40312b033f45c (patch) | |
tree | fba82068dead3a60d210da20a823804ad316fcf0 /editors/openoffice-3-devel | |
parent | 6cb51b4b0826e8ad79a30715e53690ba189f8f5e (diff) | |
download | freebsd-ports-gnome-81db3e8d02d5ee2555e2e0edb1c40312b033f45c.tar.gz freebsd-ports-gnome-81db3e8d02d5ee2555e2e0edb1c40312b033f45c.tar.zst freebsd-ports-gnome-81db3e8d02d5ee2555e2e0edb1c40312b033f45c.zip |
Revive this patch. They got it completly wrong a second time :P If you
read the code without compile, you'd think that it is correct. But they
didn't compile it.
Diffstat (limited to 'editors/openoffice-3-devel')
-rw-r--r-- | editors/openoffice-3-devel/files/patch-unzip::source::file_io.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/editors/openoffice-3-devel/files/patch-unzip::source::file_io.c b/editors/openoffice-3-devel/files/patch-unzip::source::file_io.c new file mode 100644 index 000000000000..2f85a108c185 --- /dev/null +++ b/editors/openoffice-3-devel/files/patch-unzip::source::file_io.c @@ -0,0 +1,21 @@ +--- ../unzip/source/file_io.c.orig Sat Oct 19 11:58:45 2002 ++++ ../unzip/source/file_io.c Sat Oct 19 12:03:40 2002 +@@ -500,7 +500,7 @@ + #ifdef MPW + pCallBack( 0 ); + #else +- #if defined LINUX || defined MACOSX || defined NETBSD ++ #if defined LINUX || defined MACOSX || defined NETBSD || defined FREEBSD + pCallBack( lseek(outfd, 0, SEEK_CUR) ); + #else + pCallBack( tell( outfd ) ); +@@ -865,7 +865,9 @@ + static struct timeb tbp; + #endif /* !__386BSD__ */ + #else /* !BSD */ ++#if (!defined(NETBSD) && !defined(FREEBSD)) + extern long timezone; ++#endif /* !defined(NETBSD) && !defined(FREEBSD) */ + #endif /* ?BSD */ + #endif /* ?AMIGA */ + |