diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-12-27 19:15:12 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-12-27 19:15:12 +0000 |
commit | d947ad71678c34ac91a155250faa99331e0886d2 (patch) | |
tree | 89507e01c4f6accffad111ffd6ae3601709c7999 /configure.in | |
parent | 4a94f2d3326cd93d4531fbb86ff3153eb87c822a (diff) |
Partial fix for bug #32937, Bogdan Nicula.
2005-12-27 Matthias Clasen <mclasen@redhat.com>
Partial fix for bug #32937, Bogdan Nicula.
* configure.in: Check for malloc.h
* glib/gslice.c: Don't include malloc.h unconditionally.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 04d9b36e1..b4fae1bd0 100644 --- a/configure.in +++ b/configure.in @@ -789,8 +789,9 @@ AM_CONDITIONAL(HAVE_GNUC_VISIBILITY, [test x$g_have_gnuc_visibility = xyes]) AC_C_BIGENDIAN # check for header files -AC_CHECK_HEADERS([dirent.h float.h limits.h pwd.h sys/param.h sys/poll.h sys/select.h sys/types.h]) -AC_CHECK_HEADERS([sys/time.h sys/times.h sys/wait.h unistd.h values.h stdint.h sched.h]) +AC_CHECK_HEADERS([dirent.h float.h limits.h pwd.h sys/param.h sys/poll.h]) +AC_CHECK_HEADERS([sys/time.h sys/times.h sys/wait.h unistd.h values.h]) +AC_CHECK_HEADERS([sys/select.h sys/types.h stdint.h sched.h malloc.h]) # Checks for libcharset jm_LANGINFO_CODESET |