aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2005-04-07 20:47:03 +0000
committerGreg Lewis <glewis@FreeBSD.org>2005-04-07 20:47:03 +0000
commitb729cc5280e62389d7d1284ac0bdd40cef42fb18 (patch)
treee39a88ca5a373675f38564a1ac0ca6e20ba05fb0
parentb204003510ea249038f0d239d9f2138c17799833 (diff)
downloadports-b729cc5280e62389d7d1284ac0bdd40cef42fb18.tar.gz
ports-b729cc5280e62389d7d1284ac0bdd40cef42fb18.zip
Notes
-rw-r--r--java/jdk15/files/patch-j2se::common::gdefs_md.h14
-rw-r--r--java/jdk15/files/patch-j2se::java2d::j2d_md.h16
-rw-r--r--java/jdk15/files/patch-j2se::medialib::mlib_types.h16
-rw-r--r--java/jdk16/files/patch-j2se::common::gdefs_md.h14
-rw-r--r--java/jdk16/files/patch-j2se::java2d::j2d_md.h16
-rw-r--r--java/jdk16/files/patch-j2se::medialib::mlib_types.h16
6 files changed, 92 insertions, 0 deletions
diff --git a/java/jdk15/files/patch-j2se::common::gdefs_md.h b/java/jdk15/files/patch-j2se::common::gdefs_md.h
new file mode 100644
index 000000000000..cb105629578a
--- /dev/null
+++ b/java/jdk15/files/patch-j2se::common::gdefs_md.h
@@ -0,0 +1,14 @@
+$FreeBSD$
+
+--- ../../j2se/src/solaris/native/common/gdefs_md.h.orig Sun Mar 20 22:14:34 2005
++++ ../../j2se/src/solaris/native/common/gdefs_md.h Sun Mar 20 22:15:13 2005
+@@ -19,5 +19,9 @@
+ #include <malloc.h>
+ #endif /* __linux__ */
+ #ifdef _ALLBSD_SOURCE
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h>
++#endif
+ #endif /* _ALLBSD_SOURCE */
diff --git a/java/jdk15/files/patch-j2se::java2d::j2d_md.h b/java/jdk15/files/patch-j2se::java2d::j2d_md.h
new file mode 100644
index 000000000000..c1d488eccd7a
--- /dev/null
+++ b/java/jdk15/files/patch-j2se::java2d::j2d_md.h
@@ -0,0 +1,16 @@
+$FreeBSD$
+
+--- ../../j2se/src/solaris/native/sun/java2d/j2d_md.h.orig Sun Mar 20 22:20:43 2005
++++ ../../j2se/src/solaris/native/sun/java2d/j2d_md.h Sun Mar 20 22:24:40 2005
+@@ -14,7 +14,11 @@
+ * NetBSD's doesn't either, so let's do it for everyone.
+ */
+ #if defined(__linux__) || defined(_ALLBSD_SOURCE)
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h>
++#endif
+ #endif /* __linux__ || _ALLBSD_SOURCE */
+
+ typedef unsigned char jubyte;
diff --git a/java/jdk15/files/patch-j2se::medialib::mlib_types.h b/java/jdk15/files/patch-j2se::medialib::mlib_types.h
new file mode 100644
index 000000000000..81d2da710c91
--- /dev/null
+++ b/java/jdk15/files/patch-j2se::medialib::mlib_types.h
@@ -0,0 +1,16 @@
+$FreeBSD$
+
+--- ../../j2se/src/share/native/sun/awt/medialib/mlib_types.h.orig Sun Mar 20 22:08:20 2005
++++ ../../j2se/src/share/native/sun/awt/medialib/mlib_types.h Sun Mar 20 22:08:33 2005
+@@ -47,7 +47,11 @@
+
+ #if defined(_ALLBSD_SOURCE)
+ #include <stddef.h> /* for ptrdiff_t */
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h> /* for uintptr_t */
++#endif
+ #elif defined(__linux__)
+ #include <stdint.h> /* for uintptr_t */
+ #include <malloc.h> /* for ptrdiff_t */
diff --git a/java/jdk16/files/patch-j2se::common::gdefs_md.h b/java/jdk16/files/patch-j2se::common::gdefs_md.h
new file mode 100644
index 000000000000..cb105629578a
--- /dev/null
+++ b/java/jdk16/files/patch-j2se::common::gdefs_md.h
@@ -0,0 +1,14 @@
+$FreeBSD$
+
+--- ../../j2se/src/solaris/native/common/gdefs_md.h.orig Sun Mar 20 22:14:34 2005
++++ ../../j2se/src/solaris/native/common/gdefs_md.h Sun Mar 20 22:15:13 2005
+@@ -19,5 +19,9 @@
+ #include <malloc.h>
+ #endif /* __linux__ */
+ #ifdef _ALLBSD_SOURCE
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h>
++#endif
+ #endif /* _ALLBSD_SOURCE */
diff --git a/java/jdk16/files/patch-j2se::java2d::j2d_md.h b/java/jdk16/files/patch-j2se::java2d::j2d_md.h
new file mode 100644
index 000000000000..c1d488eccd7a
--- /dev/null
+++ b/java/jdk16/files/patch-j2se::java2d::j2d_md.h
@@ -0,0 +1,16 @@
+$FreeBSD$
+
+--- ../../j2se/src/solaris/native/sun/java2d/j2d_md.h.orig Sun Mar 20 22:20:43 2005
++++ ../../j2se/src/solaris/native/sun/java2d/j2d_md.h Sun Mar 20 22:24:40 2005
+@@ -14,7 +14,11 @@
+ * NetBSD's doesn't either, so let's do it for everyone.
+ */
+ #if defined(__linux__) || defined(_ALLBSD_SOURCE)
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h>
++#endif
+ #endif /* __linux__ || _ALLBSD_SOURCE */
+
+ typedef unsigned char jubyte;
diff --git a/java/jdk16/files/patch-j2se::medialib::mlib_types.h b/java/jdk16/files/patch-j2se::medialib::mlib_types.h
new file mode 100644
index 000000000000..81d2da710c91
--- /dev/null
+++ b/java/jdk16/files/patch-j2se::medialib::mlib_types.h
@@ -0,0 +1,16 @@
+$FreeBSD$
+
+--- ../../j2se/src/share/native/sun/awt/medialib/mlib_types.h.orig Sun Mar 20 22:08:20 2005
++++ ../../j2se/src/share/native/sun/awt/medialib/mlib_types.h Sun Mar 20 22:08:33 2005
+@@ -47,7 +47,11 @@
+
+ #if defined(_ALLBSD_SOURCE)
+ #include <stddef.h> /* for ptrdiff_t */
++#if defined(__FreeBSD__) && __FreeBSD__ < 5
++#include <inttypes.h>
++#else
+ #include <stdint.h> /* for uintptr_t */
++#endif
+ #elif defined(__linux__)
+ #include <stdint.h> /* for uintptr_t */
+ #include <malloc.h> /* for ptrdiff_t */