summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-3-RC/files/patch-transex3+source+xmlparse.cxx
blob: 6d562f031983e1fc7d5b977dd78f82a3536ccc22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
http://www.openoffice.org/issues/show_bug.cgi?id=40184

FreeBSD doesn't have alloca.h

Index: source/xmlparse.cxx
===================================================================
RCS file: /cvs/l10n/transex3/source/xmlparse.cxx,v
retrieving revision 1.5
diff -u -r1.5 xmlparse.cxx
--- transex3/source/xmlparse.cxx	18 Nov 2004 08:17:50 -0000	1.5
+++ transex3/source/xmlparse.cxx	8 Jan 2005 02:56:14 -0000
@@ -67,7 +67,7 @@
 #ifdef WIN32
 #include <malloc.h>
 #else
-#ifndef MACOSX
+#if !(defined(MACOSX) || defined(FREEBSD))
 #include <alloca.h>
 #endif
 #endif