blob: 782fcbb8558bf722bf8f3256da6e335b437c81c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
echo ""
echo ""
echo "Configure results (user options):"
echo "------------------------------------------"
echo "OFX plugin: $enable_ofxplugin"
echo ""
echo "OFX direct connect: $enable_ofxbanking"
echo ""
echo "Chart support: yes"
echo ""
echo "SQLITE3 support: $enable_sqlite3"
echo "------------------------------------------"
echo ""
echo ""
echo "Configure results (developer options):"
echo "------------------------------------------"
if test "x$use_memory_leak_check" != "xno"; then
echo "Memory leak check support: yes"
else
echo "Memory leak check support: no"
fi
echo ""
if test "$enable_tqtdesigner" = "yes"; then
echo "Qt-Designer library support: yes"
else
echo "Qt-Designer library support: no"
fi
echo ""
echo "PDF document generation: $enable_pdfdocs"
echo ""
if test x$no_cppunit = x; then
echo "CPPUNIT support: yes"
echo " online tests: "$enable_online_tests;
elif test x$no_cppunit = xuser; then
echo "CPPUNIT support: disabled"
else
echo "CPPUNIT support: no"
echo " You are missing the CPPUNIT headers and libraries"
echo " The unit test framework support won't be compiled."
echo " This is not relevant for the usage of the application.";
echo " Unit tests are only required by the developers.";
fi
echo "------------------------------------------"
|