Fix the configure check for growing stack

The check was getting the direction wrong, as proven by the
just committed signal invocation hint test.

https://bugzilla.gnome.org/show_bug.cgi?id=711871
This commit is contained in:
Matthias Clasen 2013-11-23 20:12:13 -05:00
parent e81e33b35d
commit df71ecfc2d

View File

@ -600,9 +600,9 @@ AC_CACHE_CHECK([for growing stack pointer],glib_cv_stack_grows,[
int main () { volatile int y = 7; a = &y; foo (); return b > a; }
void foo (void) { volatile int x = 5; b = &x; }
],
glib_cv_stack_grows=no
,
glib_cv_stack_grows=yes
,
glib_cv_stack_grows=no
,)
])