~ubuntu-branches/debian/sid/upx-ucl/sid

« back to all changes in this revision

Viewing changes to src/conf.h

  • Committer: Package Import Robot
  • Author(s): Robert Luberda
  • Date: 2013-05-10 09:18:12 UTC
  • mfrom: (5.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130510091812-l0xhxajjny9s0d8p
Tags: 3.09-2
* Upload to unstable.
* Standard-Version: 3.9.4:
  + add Built-Using field referring to version of lzma-dev package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
   This file is part of the UPX executable compressor.
4
4
 
5
 
   Copyright (C) 1996-2011 Markus Franz Xaver Johannes Oberhumer
6
 
   Copyright (C) 1996-2011 Laszlo Molnar
 
5
   Copyright (C) 1996-2013 Markus Franz Xaver Johannes Oberhumer
 
6
   Copyright (C) 1996-2013 Laszlo Molnar
7
7
   All Rights Reserved.
8
8
 
9
9
   UPX and the UCL library are free software; you can redistribute them
222
222
#if (WITH_VALGRIND)
223
223
#  include <valgrind/memcheck.h>
224
224
#endif
225
 
 
226
 
#if !defined(VALGRIND_MAKE_WRITABLE)
227
 
#  define VALGRIND_MAKE_WRITABLE(addr,len)      0
228
 
#endif
229
 
#if !defined(VALGRIND_MAKE_READABLE)
230
 
#  if 0
231
 
#    define VALGRIND_MAKE_READABLE(addr,len)    (memset(addr,0,len), 0)
232
 
#  else
233
 
#    define VALGRIND_MAKE_READABLE(addr,len)    0
234
 
#  endif
235
 
#endif
236
 
#if !defined(VALGRIND_DISCARD)
237
 
#  define VALGRIND_DISCARD(handle)              ((void)(&handle))
 
225
#if !defined(VALGRIND_MAKE_MEM_DEFINED)
 
226
#  define VALGRIND_MAKE_MEM_DEFINED(addr,len)   0
 
227
#endif
 
228
#if !defined(VALGRIND_MAKE_MEM_NOACCESS)
 
229
#  define VALGRIND_MAKE_MEM_NOACCESS(addr,len)  0
 
230
#endif
 
231
#if !defined(VALGRIND_MAKE_MEM_UNDEFINED)
 
232
#  define VALGRIND_MAKE_MEM_UNDEFINED(addr,len) 0
238
233
#endif
239
234
 
240
235