# HG changeset patch # User diego # Date 1320067125 0 # Node ID 5affa2074131cec6449569c6d2dedccc61b09938 # Parent 280b461a6676a66eb7b014ffc3025d72f5ce1843 build: fix compilation on Solaris due to missing alloca.h #include patch by Granville Moore, gvm nemesys com, fixes Bugzilla #1999 diff -r 280b461a6676 -r 5affa2074131 loader/pe_image.c --- a/loader/pe_image.c Mon Oct 31 12:25:00 2011 +0000 +++ b/loader/pe_image.c Mon Oct 31 13:18:45 2011 +0000 @@ -54,6 +54,9 @@ #else #include "osdep/mmap.h" #endif +#ifdef HAVE_ALLOCA_H +# include +#endif #include "wine/windef.h" #include "wine/winbase.h" #include "wine/winerror.h" diff -r 280b461a6676 -r 5affa2074131 tremor/os.h --- a/tremor/os.h Mon Oct 31 12:25:00 2011 +0000 +++ b/tremor/os.h Mon Oct 31 13:18:45 2011 +0000 @@ -17,6 +17,7 @@ ********************************************************************/ +#include "config.h" #include #include "os_types.h" diff -r 280b461a6676 -r 5affa2074131 tremor/tremor.diff --- a/tremor/tremor.diff Mon Oct 31 12:25:00 2011 +0000 +++ b/tremor/tremor.diff Mon Oct 31 13:18:45 2011 +0000 @@ -130,7 +130,8 @@ int ret=0; --- os.h (revision 25873) +++ os.h (working copy) -@@ -20,18 +20,8 @@ +@@ -20,2 +20,3 @@ ++#include "config.h" #include #include "os_types.h"