Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2005-04-05 17:13:47 +0400
committerZoltan Varga <vargaz@gmail.com>2005-04-05 17:13:47 +0400
commit100268096d21a75cc781d638e92f457954a6c217 (patch)
tree0283955da56f75d886f13c76b5a4557b3c77b009 /ikvm-native
parent375a7d2994cac7968d985b6a7949cf73410ca6c1 (diff)
2005-04-05 Zoltan Varga <vargaz@freemail.hu>
* jni.c: Apply patch from freebsd ports tree. svn path=/trunk/mono/; revision=42561
Diffstat (limited to 'ikvm-native')
-rw-r--r--ikvm-native/ChangeLog4
-rw-r--r--ikvm-native/jni.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/ikvm-native/ChangeLog b/ikvm-native/ChangeLog
index ab8ad60ca7a..b5a9ad00872 100644
--- a/ikvm-native/ChangeLog
+++ b/ikvm-native/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-05 Zoltan Varga <vargaz@freemail.hu>
+
+ * jni.c: Apply patch from freebsd ports tree.
+
2005-01-20 Zoltan Varga <vargaz@freemail.hu>
* jni.h: Applied patch from Bernie Solomon to fix compilation on
diff --git a/ikvm-native/jni.c b/ikvm-native/jni.c
index 4690feda42c..d634a4adc2a 100644
--- a/ikvm-native/jni.c
+++ b/ikvm-native/jni.c
@@ -29,6 +29,8 @@
#define ALLOCA _alloca
#else
#include <alloca.h>
+/* alloca is in stdlib.h on freebsd */
+#include <stdlib.h>
#define ALLOCA alloca
#endif