summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-06-21 12:06:06 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-06-21 12:06:06 +0000
commitec5d299eb61469aea4a1168bf8c059f6fb1c5556 (patch)
treeb40cc4ec2810b17b1e4c92a628c0219d556f1c02 /editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c
parentAdd pd-0.35.23 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_6_0'.release/4.6.0
Notes
Notes: svn path=/head/; revision=61671 svn path=/tags/RELEASE_4_6_0/; revision=61672; tag=release/4.6.0
Diffstat (limited to 'editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c')
-rw-r--r--editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c b/editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c
deleted file mode 100644
index 0430ff41b6a9..000000000000
--- a/editors/openoffice.org-2-RC/files/patch-unzip::source::file_io.c
+++ /dev/null
@@ -1,36 +0,0 @@
---- ../unzip/source/file_io.c.orig Tue Mar 5 18:32:38 2002
-+++ ../unzip/source/file_io.c Tue Mar 5 18:40:50 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 ) );
-@@ -860,8 +860,11 @@
- /* extern char *_TZ; no longer used? */
- #else /* !AMIGA */
- # define YRBASE 1970
--#ifdef BSD
--#ifndef __386BSD__
-+#ifdef FREEBSD
-+#include <sys/types.h>
-+#endif */ FREEBSD */
-+#if defined BSD || defined FREEBSD
-+#if !defined __386BSD__ && !defined FREEBSD
- static struct timeb tbp;
- #endif /* !__386BSD__ */
- #else /* !BSD */
-@@ -932,8 +935,8 @@
- /* convert date & time to seconds relative to 00:00:00, 01/01/YRBASE */
- m_time = ((days + dy) * 86400) + (hh * 3600) + (mm * 60) + ss;
-
--#if defined BSD && ! defined MACOSX && ! defined NETBSD
--#ifndef __386BSD__
-+#if (defined BSD || defined FREEBSD) && ! defined MACOSX && ! defined NETBSD
-+#if !defined __386BSD__ && !defined FREEBSD
- ftime(&tbp);
- m_time += tbp.timezone * 60L;
- #endif