~yolanda.robla/ubuntu/saucy/clamav/dep-8-tests

« back to all changes in this revision

Viewing changes to clamav-config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2009-11-02 23:27:19 UTC
  • mfrom: (0.35.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091102232719-61ay35095dhbuxfm
Tags: 0.95.3+dfsg-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build-dep on electric-fence (in Universe)
  - Build-dep on libltdl3-dev instead of libltdl-dev for updating earlier
    releases more easily
  - Add apparmor profiles for clamd and freshclam along with maintainer
    script changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
/* gethostbyname_r takes 6 arguments */
197
197
#undef HAVE_GETHOSTBYNAME_R_6
198
198
 
 
199
/* Define to 1 if getpagesize() is available */
 
200
#undef HAVE_GETPAGESIZE
 
201
 
199
202
/* Define to 1 if you have the <grp.h> header file. */
200
203
#undef HAVE_GRP_H
201
204
 
247
250
/* Define to 1 if you have the <mach-o/dyld.h> header file. */
248
251
#undef HAVE_MACH_O_DYLD_H
249
252
 
250
 
/* have mallinfo */
 
253
/* Define to 1 if you have the `mallinfo' function. */
251
254
#undef HAVE_MALLINFO
252
255
 
253
256
/* Define to 1 if you have the <malloc.h> header file. */
356
359
/* Define to 1 if you have the `strlcpy' function. */
357
360
#undef HAVE_STRLCPY
358
361
 
 
362
/* Define to 1 if sysconf(_SC_PAGESIZE) is available */
 
363
#undef HAVE_SYSCONF_SC_PAGESIZE
 
364
 
359
365
/* link against system-wide libtommath */
360
366
#undef HAVE_SYSTEM_TOMMATH
361
367
 
454
460
/* Define to the one symbol short name of this package. */
455
461
#undef PACKAGE_TARNAME
456
462
 
 
463
/* Define to the home page for this package. */
 
464
#undef PACKAGE_URL
 
465
 
457
466
/* Define to the version of this package. */
458
467
#undef PACKAGE_VERSION
459
468
 
542
551
   nothing if this is not supported.  Do not define if restrict is
543
552
   supported directly.  */
544
553
#undef restrict
545
 
/* Work around a bug in Sun C++: it does not support _Restrict, even
546
 
   though the corresponding Sun C compiler does, which causes
547
 
   "#define restrict _Restrict" in the previous line.  Perhaps some future
548
 
   version of Sun C++ will work with _Restrict; if so, it'll probably
549
 
   define __RESTRICT, just as Sun C does.  */
 
554
/* Work around a bug in Sun C++: it does not support _Restrict or
 
555
   __restrict__, even though the corresponding Sun C compiler ends up with
 
556
   "#define restrict _Restrict" or "#define restrict __restrict__" in the
 
557
   previous line.  Perhaps some future version of Sun C++ will work with
 
558
   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
550
559
#if defined __SUNPRO_CC && !defined __RESTRICT
551
560
# define _Restrict
 
561
# define __restrict__
552
562
#endif
553
563
 
554
564
/* Define to "int" if <sys/socket.h> does not define. */