~ubuntu-branches/ubuntu/lucid/patch/lucid

« back to all changes in this revision

Viewing changes to m4/malloc.m4

  • Committer: Bazaar Package Importer
  • Author(s): Michael Fedrowitz
  • Date: 2004-07-18 12:56:02 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040718125602-s2ukzvags50l967n
Tags: 2.5.9-2
* Standards-Version 3.6.1 (no changes required).
* Applied upstream patch to fix CR stripping. (Closes: #196297)
* Applied a patch from SUSE to prevent previously created backup files
  from being overwritten. (Closes: #248950)
* Ran aclocal and autoconf to make the above patch work.
* Touch aclocal.m4 and configure during build to prevent the usual
  time-skew problems.
* Removed emacs vars from changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#serial 3
 
1
# malloc.m4 serial 7
 
2
dnl Copyright (C) 2002 Free Software Foundation, Inc.
 
3
dnl This file is free software, distributed under the terms of the GNU
 
4
dnl General Public License.  As a special exception to the GNU General
 
5
dnl Public License, this file may be distributed as part of a program
 
6
dnl that contains a configuration script generated by Autoconf, under
 
7
dnl the same distribution terms as the rest of that program.
2
8
 
3
9
dnl From Jim Meyering.
4
10
dnl Determine whether malloc accepts 0 as its argument.
5
11
dnl If it doesn't, arrange to use the replacement function.
6
 
dnl
7
12
 
8
 
AC_DEFUN(jm_FUNC_MALLOC,
 
13
AC_DEFUN([jm_FUNC_MALLOC],
9
14
[
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. ])
14
 
 
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.])
 
15
  AC_REQUIRE([AC_FUNC_MALLOC])
 
16
  dnl autoconf < 2.57 used the symbol ac_cv_func_malloc_works.
 
17
  if test X"$ac_cv_func_malloc_0_nonnull" = Xno || test X"$ac_cv_func_malloc_works" = Xno; then
 
18
    gl_PREREQ_MALLOC
34
19
  fi
35
20
])
 
21
 
 
22
# Prerequisites of lib/malloc.c.
 
23
AC_DEFUN([gl_PREREQ_MALLOC], [
 
24
  :
 
25
])