~ubuntu-branches/ubuntu/hardy/clamav/hardy-backports

« back to all changes in this revision

Viewing changes to libclamav/others.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-01 11:26:02 UTC
  • mfrom: (0.5.36 natty)
  • Revision ID: james.westby@ubuntu.com-20101201112602-f408toqx14w4duw7
Tags: 0.96.4+dfsg-1ubuntu1~hardy1
* Source backport for Hardy:
  - Build without llvm support on lpia to fix FTBFS (not a regression as
    llvm has never built on hardy lpia)
  - Drop -T -W from apparmor_parser calls in clamav-daemon and freshclam
    postinsts since it is not supported in Hardy's apparmor
  - Drop deny rule in freshclam apparmor profile since deny is not
    supported in Hardy's apparmor
  - Drop dh_lintian from debian/rules and adjust version of debhelper
    build-dep
  - Drop build-dep and libclamav-dev depends on non-existent libtommath-dev
  - Changed Section to 'utils' for clamav-dbg package
  - Drop versioning of lsb-base depends
  - Revert lsb status changes from maintainer scripts
  - Ignore test suite errors on hppa
  - Build-depend on libltdl3-dev instead of libltdl-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 * in re-enabling affected modules.
54
54
 */
55
55
 
56
 
#define CL_FLEVEL 55
 
56
#define CL_FLEVEL 56
57
57
#define CL_FLEVEL_DCONF CL_FLEVEL
58
58
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
59
59
 
427
427
void cli_errmsg(const char *str, ...);
428
428
#endif
429
429
 
 
430
#ifdef __GNUC__
 
431
void cli_infomsg(const cli_ctx* ctx, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
 
432
#else
 
433
void cli_infomsg(const cli_ctx* ctx, const char *fmt, ...);
 
434
#endif
 
435
 
 
436
void cli_logg_setup(const cli_ctx* ctx);
 
437
 
430
438
/* tell compiler about branches that are very rarely taken,
431
439
 * such as debug paths, and error paths */
432
440
#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)