Changeset 173 for trunk


Ignore:
Timestamp:
Aug 18, 2008, 8:26:30 PM (16 years ago)
Author:
katerina
Message:

x dnmalloc compile error (ticket #110).

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r171 r173  
    1313dnl start
    1414dnl
    15 AM_INIT_AUTOMAKE(samhain, 2.4.5)
     15AM_INIT_AUTOMAKE(samhain, 2.4.5a)
    1616AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1717AC_CANONICAL_HOST
  • trunk/docs/Changelog

    r172 r173  
    1 2.4.5:
     12.4.5a:
     2        * fix compile problem in dnmalloc.c (remove prototypes for
     3          memset/memcpy), problem reported by Juergen Daubert
     4       
     52.4.5 (07-08-2008):
    26        * testscripts: 'chmod -R' -> 'chmod -f -R', since Solaris 10
    37          bails out on a chmod on a dangling link
  • trunk/src/dnmalloc.c

    r172 r173  
    9797   further to 1.0:
    9898   Valgrind client requests inserted (#define USE_VALGRIND)
    99    Fix malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
     99   Fix: malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
    100100   Portability: minsize = 32 bit on 64bit architecture
    101101   Minor cleanups
     102   Fix: eliminate prototypes for memset, memcpy (they're in string.h)
    102103
    103104   There may be some bugs left in this version. please use with caution.
     
    586587
    587588#ifdef WIN32
    588 /* On Win32 memset and memcpy are already declared in windows.h */
     589  /* On Win32 memset and memcpy are already declared in windows.h */
    589590#else
    590591#if __STD_C
    591 void* memset(void*, int, size_t);
    592 void* memcpy(void*, const void*, size_t);
     592  /* Defined in string.h */
    593593#else
    594594Void_t* memset();
Note: See TracChangeset for help on using the changeset viewer.