From: Tor Lillqvist Date: Wed, 17 Jan 2007 02:28:13 +0000 (+0000) Subject: Use also with Digital Mars compiler on Win32. (#346808, Serhat X-Git-Tag: GLIB_2_13_0~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21157c4d88f0744127d5a927586f72d01af8acc4;p=platform%2Fupstream%2Fglib.git Use also with Digital Mars compiler on Win32. (#346808, Serhat 2007-01-17 Tor Lillqvist * glib/galloca.h: Use also with Digital Mars compiler on Win32. (#346808, Serhat Sevki Dincer) svn path=/trunk/; revision=5285 --- diff --git a/ChangeLog b/ChangeLog index baab660..0f8ee59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-17 Tor Lillqvist + + * glib/galloca.h: Use also with Digital Mars compiler + on Win32. (#346808, Serhat Sevki Dincer) + 2007-01-16 Matthias Clasen * glib/gthread.h: diff --git a/glib/galloca.h b/glib/galloca.h index 110beb5..7c59ea4 100644 --- a/glib/galloca.h +++ b/glib/galloca.h @@ -37,7 +37,7 @@ /* a native and working alloca.h is there */ # include #else /* !__GNUC__ && !GLIB_HAVE_ALLOCA_H */ -# ifdef _MSC_VER +# if defined(_MSC_VER) || defined(__DMC__) # include # define alloca _alloca # else /* !_MSC_VER */