diff --git a/ChangeLog b/ChangeLog index baab66054..0f8ee5900 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 110beb53e..7c59ea45d 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 */