~ubuntu-branches/ubuntu/trusty/libtasn1-3/trusty-proposed

« back to all changes in this revision

Viewing changes to gl/realloc.c

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-02-12 16:38:16 UTC
  • mfrom: (4.2.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110212163816-c32zjlxe94c7ecvo
Tags: 2.9-2
* Upload to unstable.
* Downgrade libtasn1-3 priority to standard.
* Drop superfluous code from debian/rules.
* set CFLAGS += -Wall, the latest combination of cdbs + dpkg-dev does not
  seem to set it by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
/* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h.  */
24
24
#ifdef realloc
25
25
# define NEED_REALLOC_GNU 1
 
26
/* Whereas the gnulib module 'realloc-gnu' defines HAVE_REALLOC_GNU.  */
 
27
#elif GNULIB_REALLOC_GNU && !HAVE_REALLOC_GNU
 
28
# define NEED_REALLOC_GNU 1
26
29
#endif
27
30
 
28
31
/* Infer the properties of the system's malloc function.
29
 
   Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h.  */
30
 
#if GNULIB_MALLOC_GNU && !defined malloc
 
32
   The gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU.  */
 
33
#if GNULIB_MALLOC_GNU && HAVE_MALLOC_GNU
31
34
# define SYSTEM_MALLOC_GLIBC_COMPATIBLE 1
32
35
#endif
33
36