summaryrefslogtreecommitdiffstats
path: root/configure.in.bot
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2022-12-09 13:09:00 +0900
committerMichele Calgaro <[email protected]>2022-12-10 11:58:04 +0900
commitcc22d7d083fa62523071a74683b227d838f6642f (patch)
tree5ad24d19df46d8bd0ea5acabfc3b83d5ddb8ef29 /configure.in.bot
parent19068f2c66533416fd57d236675e8882f5835165 (diff)
downloadkmymoney-cc22d7d083fa62523071a74683b227d838f6642f.tar.gz
kmymoney-cc22d7d083fa62523071a74683b227d838f6642f.zip
Drop automake build support.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'configure.in.bot')
-rw-r--r--configure.in.bot57
1 files changed, 0 insertions, 57 deletions
diff --git a/configure.in.bot b/configure.in.bot
deleted file mode 100644
index 782fcbb..0000000
--- a/configure.in.bot
+++ /dev/null
@@ -1,57 +0,0 @@
-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 "------------------------------------------"