summaryrefslogtreecommitdiffstats
path: root/configure.in.bot
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 22:38:03 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 22:38:03 +0000
commitdadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch)
tree99e72842fe687baea16376a147619b6048d7e441 /configure.in.bot
downloadkmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz
kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in.bot')
-rw-r--r--configure.in.bot57
1 files changed, 57 insertions, 0 deletions
diff --git a/configure.in.bot b/configure.in.bot
new file mode 100644
index 0000000..234429b
--- /dev/null
+++ b/configure.in.bot
@@ -0,0 +1,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_qtdesigner" = "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 "------------------------------------------"