summaryrefslogtreecommitdiffstats
path: root/third_party/heimdal/cf/broken-realloc.m4
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/heimdal/cf/broken-realloc.m4')
-rw-r--r--third_party/heimdal/cf/broken-realloc.m427
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/heimdal/cf/broken-realloc.m4 b/third_party/heimdal/cf/broken-realloc.m4
new file mode 100644
index 0000000..a397e96
--- /dev/null
+++ b/third_party/heimdal/cf/broken-realloc.m4
@@ -0,0 +1,27 @@
+dnl
+dnl $Id$
+dnl
+dnl Test for realloc that doesn't handle NULL as first parameter
+dnl
+AC_DEFUN([rk_BROKEN_REALLOC], [
+AC_CACHE_CHECK(if realloc if broken, ac_cv_func_realloc_broken, [
+ac_cv_func_realloc_broken=no
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stddef.h>
+#include <stdlib.h>
+
+int main(int argc, char **argv)
+{
+ return realloc(NULL, 17) == NULL;
+}
+]])],[:], [ac_cv_func_realloc_broken=yes],[:])
+])
+if test "$ac_cv_func_realloc_broken" = yes ; then
+ AC_DEFINE(BROKEN_REALLOC, 1, [Define if realloc(NULL) doesn't work.])
+fi
+dnl AH_BOTTOM([#ifdef BROKEN_REALLOC
+dnl #ifndef realloc
+dnl #define realloc(X, Y) rk_realloc((X), (Y))
+dnl #endif
+dnl #endif])
+])