~ubuntu-branches/ubuntu/saucy/clamav/saucy-backports

« back to all changes in this revision

Viewing changes to clamconf/clamconf.c

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-07-15 01:08:10 UTC
  • mfrom: (0.35.47 sid)
  • Revision ID: package-import@ubuntu.com-20140715010810-ru66ek4fun2iseba
Tags: 0.98.4+dfsg-2~ubuntu13.10.1
No-change backport to saucy (LP: #1341962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <sys/stat.h>
36
36
#include <dirent.h>
37
37
 
 
38
#include <openssl/ssl.h>
 
39
#include <openssl/err.h>
 
40
#include "libclamav/crypto.h"
 
41
 
38
42
#include "shared/optparser.h"
39
43
#include "shared/misc.h"
40
44
 
45
49
#include "libclamav/bytecode.h"
46
50
#include "libclamav/bytecode_detect.h"
47
51
#include "target.h"
 
52
#include "fpu.h"
48
53
 
49
54
#ifndef _WIN32
50
55
extern const struct clam_option *clam_options;
448
453
#ifdef FRESHCLAM_DNS_FIX
449
454
        printf("FRESHCLAM_DNS_FIX ");
450
455
#endif
451
 
#ifdef FPU_WORDS_BIGENDIAN
452
 
        printf("AUTOIT_EA06 ");
 
456
#ifndef _WIN32
 
457
        if (get_fpu_endian() != FPU_ENDIAN_UNKNOWN)
453
458
#endif
 
459
                        printf("AUTOIT_EA06 ");
454
460
#ifdef HAVE_BZLIB_H
455
461
        printf("BZIP2 ");
456
462
#endif
480
486
    cli_detect_environment(&env);
481
487
    print_platform(&env);
482
488
    print_build(&env);
 
489
    cl_cleanup_crypto();
483
490
    return 0;
484
491
}