* poptparse.c, popthelp.c, poptconfig.c, popt.c, pkg.c, findme.c,
configure.in: Check for malloc.h and use that if it exists.
Apparently this makes Win32 happier. Thanks to Carlo Bramini for
the patch.
2009-03-30 Tollef Fog Heen <tfheen@err.no>
+ * poptparse.c, popthelp.c, poptconfig.c, popt.c, pkg.c, findme.c,
+ configure.in: Check for malloc.h and use that if it exists.
+ Apparently this makes Win32 happier. Thanks to Carlo Bramini for
+ the patch.
+
* pkg-config.1: Verbosify the text about Libs.private a bit. Patch
from Loïc Minier.
AC_FUNC_ALLOCA
AC_CHECK_FUNCS(setresuid setreuid,break)
-AC_CHECK_HEADERS([dirent.h unistd.h sys/wait.h])
+AC_CHECK_HEADERS([dirent.h unistd.h sys/wait.h malloc.h])
AC_OUTPUT([Makefile check/Makefile])
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <errno.h>
#include <ctype.h>
#include <fcntl.h>
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
# endif
#endif
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+
#include <ctype.h>
#include <stdlib.h>
#include <string.h>