diff options
author | Archie Cobbs <archie@FreeBSD.org> | 2004-07-06 13:43:40 +0000 |
---|---|---|
committer | Archie Cobbs <archie@FreeBSD.org> | 2004-07-06 13:43:40 +0000 |
commit | e7f94d7e88b00735f7f56408b58f34cefe043961 (patch) | |
tree | e3f35e1b9eb0ad14c4e0f58da280dbcaba772eaf /java/jc/files/patch-aa | |
parent | Update to 3.02. (diff) |
Update to version 1.2.
Notes
Notes:
svn path=/head/; revision=113059
Diffstat (limited to 'java/jc/files/patch-aa')
-rw-r--r-- | java/jc/files/patch-aa | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/java/jc/files/patch-aa b/java/jc/files/patch-aa deleted file mode 100644 index 3e29b913d7a4..000000000000 --- a/java/jc/files/patch-aa +++ /dev/null @@ -1,23 +0,0 @@ ---- classpath-0.07/native/target/generic/target_generic_file.h 2003/11/02 15:51:19 1.11 -+++ classpath-0.07/native/target/generic/target_generic_file.h 2004/01/27 20:47:54 1.13 -@@ -58,6 +58,7 @@ - - #include <stdlib.h> - #include <assert.h> -+#include <fcntl.h> - - #include "target_native.h" - #include "target_native_math_int.h" -@@ -90,7 +91,11 @@ - #define TARGET_NATIVE_FILE_FILEFLAG_APPEND O_APPEND - #endif - #ifndef TARGET_NATIVE_FILE_FILEFLAG_SYNC -- #define TARGET_NATIVE_FILE_FILEFLAG_SYNC O_SYNC -+ #if !defined (O_SYNC) && defined (O_FSYNC) -+ #define TARGET_NATIVE_FILE_FILEFLAG_SYNC O_FSYNC -+ #else -+ #define TARGET_NATIVE_FILE_FILEFLAG_SYNC O_SYNC -+ #endif - #endif - #ifndef TARGET_NATIVE_FILE_FILEFLAG_DSYNC - #ifdef O_DSYNC |