summaryrefslogtreecommitdiff
path: root/java/jdk14/files/patch-io_io_util.h
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2004-12-17 07:02:51 +0000
committerGreg Lewis <glewis@FreeBSD.org>2004-12-17 07:02:51 +0000
commit55f5e15a50c8a7a0434cad4e9d3a2e34aca0c753 (patch)
treec4cc388f7c7996fa61df230fa2beb40b0f0ee494 /java/jdk14/files/patch-io_io_util.h
parentSwitch from BROKEN to IGNORE to match other ports in this category. (diff)
. Update to patchset 7.
. Fix a permissions problem with the plugins directory. Approved by: phantom (maintainer)
Notes
Notes: svn path=/head/; revision=124268
Diffstat (limited to 'java/jdk14/files/patch-io_io_util.h')
-rw-r--r--java/jdk14/files/patch-io_io_util.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/java/jdk14/files/patch-io_io_util.h b/java/jdk14/files/patch-io_io_util.h
deleted file mode 100644
index 80f00417aa2b..000000000000
--- a/java/jdk14/files/patch-io_io_util.h
+++ /dev/null
@@ -1,21 +0,0 @@
-$FreeBSD$
-
---- ../../j2se/src/share/native/java/io/io_util.h.orig Wed Jul 21 08:32:49 2004
-+++ ../../j2se/src/share/native/java/io/io_util.h Wed Jul 21 08:37:54 2004
-@@ -10,7 +10,15 @@
-
- extern jfieldID IO_fd_fdID;
-
--#if !defined(O_DSYNC) || !defined(O_SYNC)
-+#ifdef _BSD_SOURCE
-+#include <fcntl.h>
-+#ifndef O_SYNC
-+#define O_SYNC O_FSYNC
-+#endif
-+#ifndef O_DSYNC
-+#define O_DSYNC O_FSYNC
-+#endif
-+#elif !defined(O_DSYNC) || !defined(O_SYNC)
- #define O_SYNC (0x0800)
- #define O_DSYNC (0x2000)
- #endif