reflects addition of codeset.m4 from gettext-0.10.38, automatically
[findutils.git] / m4 / malloc.m4
blob4978eaf6b37e21623213bb68aabc6531a65aa4ff
1 #serial 3
3 dnl From Jim Meyering.
4 dnl Determine whether malloc accepts 0 as its argument.
5 dnl If it doesn't, arrange to use the replacement function.
6 dnl
8 AC_DEFUN(jm_FUNC_MALLOC,
10  dnl xmalloc.c requires that this symbol be defined so it doesn't
11  dnl mistakenly use a broken malloc -- as it might if this test were omitted.
12  AC_DEFINE_UNQUOTED(HAVE_DONE_WORKING_MALLOC_CHECK, 1,
13                     [Define if the malloc check has been performed. ])
15  AC_CACHE_CHECK([for working malloc], jm_cv_func_working_malloc,
16   [AC_TRY_RUN([
17     char *malloc ();
18     int
19     main ()
20     {
21       exit (malloc (0) ? 0 : 1);
22     }
23           ],
24          jm_cv_func_working_malloc=yes,
25          jm_cv_func_working_malloc=no,
26          dnl When crosscompiling, assume malloc is broken.
27          jm_cv_func_working_malloc=no)
28   ])
29   if test $jm_cv_func_working_malloc = no; then
30     AC_SUBST(LIBOBJS)
31     LIBOBJS="$LIBOBJS malloc.$ac_objext"
32     AC_DEFINE_UNQUOTED(malloc, rpl_malloc,
33       [Define to rpl_malloc if the replacement function should be used.])
34   fi