Add build fix for FreeBSD 4.x.
This commit is contained in:
parent
62cf17c575
commit
faa763a546
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114825
1 changed files with 14 additions and 0 deletions
14
java/sablevm/files/patch-sablevm-classpath-1.1.6-20040726
Normal file
14
java/sablevm/files/patch-sablevm-classpath-1.1.6-20040726
Normal file
|
@ -0,0 +1,14 @@
|
|||
--- ../sablevm-classpath-1.1.6/native/jni/gtk-peer/gthread-jni.c Mon Jul 19 08:49:17 2004
|
||||
+++ ../sablevm-classpath-1.1.6/native/jni/gtk-peer/gthread-jni.c Mon Jul 26 16:22:55 2004
|
||||
@@ -218,7 +218,11 @@
|
||||
/* Global data */
|
||||
/************************************************************************/
|
||||
|
||||
+#if defined HAVE_STDINT_H
|
||||
#include <stdint.h> /* provides intptr_t */
|
||||
+#elif defined HAVE_INTTYPES_H
|
||||
+#include <inttypes.h>
|
||||
+#endif
|
||||
#include <stdarg.h> /* va_list */
|
||||
#include "gthread-jni.h"
|
||||
#include <assert.h> /* assert() */
|
Loading…
Reference in a new issue