~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to third-party/qca/qca/src/botantools/botantools.pri

  • Committer: Package Import Robot
  • Author(s): Jan Niehusmann
  • Date: 2014-07-01 21:49:34 UTC
  • mfrom: (6.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20140701214934-gt4dkgm94byi4vnn
Tags: 0.15-1
* New upstream version
* set debhelper compat level to 9
* set Standards-Version to 3.9.5 (no further changes)
* add lintian override regarding license-problem-non-free-RFC
* use qconf to regenerate configure script
* implement hardening using buildflags instead of hardening-wrapper

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BOTAN_BASE = $$PWD/botan
2
 
 
3
 
DEFINES += \
4
 
        BOTAN_TYPES_QT \
5
 
        BOTAN_TOOLS_ONLY \
6
 
        BOTAN_FIX_GDB \
7
 
        BOTAN_MINIMAL_BIGINT
8
 
 
9
 
DEFINES += BOTAN_MP_WORD_BITS=32
10
 
DEFINES += BOTAN_KARAT_MUL_THRESHOLD=12
11
 
DEFINES += BOTAN_KARAT_SQR_THRESHOLD=12
12
 
 
13
 
DEFINES += BOTAN_EXT_MUTEX_QT
14
 
unix:DEFINES += BOTAN_EXT_ALLOC_MMAP
15
 
 
16
 
INCLUDEPATH += $$BOTAN_BASE
17
 
SOURCES += \
18
 
        $$BOTAN_BASE/util.cpp \
19
 
        $$BOTAN_BASE/charset.cpp \
20
 
        $$BOTAN_BASE/parsing.cpp \
21
 
        $$BOTAN_BASE/exceptn.cpp \
22
 
        $$BOTAN_BASE/mutex.cpp \
23
 
        $$BOTAN_BASE/mux_qt/mux_qt.cpp \
24
 
        $$BOTAN_BASE/defalloc.cpp \
25
 
        $$BOTAN_BASE/mem_pool.cpp \
26
 
        $$BOTAN_BASE/libstate.cpp \
27
 
        $$BOTAN_BASE/modules.cpp \
28
 
        $$BOTAN_BASE/mp_comba.cpp \
29
 
        $$BOTAN_BASE/mp_mul.cpp \
30
 
        $$BOTAN_BASE/mp_mulop.cpp \
31
 
        $$BOTAN_BASE/mp_shift.cpp \
32
 
        $$BOTAN_BASE/mp_asm.cpp \
33
 
        $$BOTAN_BASE/mp_misc.cpp \
34
 
        $$BOTAN_BASE/divide.cpp \
35
 
        $$BOTAN_BASE/bit_ops.cpp \
36
 
        $$BOTAN_BASE/big_base.cpp \
37
 
        $$BOTAN_BASE/big_code.cpp \
38
 
        $$BOTAN_BASE/big_io.cpp \
39
 
        $$BOTAN_BASE/big_ops2.cpp \
40
 
        $$BOTAN_BASE/big_ops3.cpp
41
 
 
42
 
unix:{
43
 
        SOURCES += \
44
 
                $$BOTAN_BASE/ml_unix/mlock.cpp \
45
 
                $$BOTAN_BASE/alloc_mmap/mmap_mem.cpp
46
 
}
47
 
 
48
 
windows:{
49
 
        SOURCES += \
50
 
                $$BOTAN_BASE/ml_win32/mlock.cpp
51
 
}
52