summaryrefslogtreecommitdiffstats
path: root/src/configure.in.bot
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-09 09:27:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-22 13:37:38 +0900
commitca15b14da5f68f8cd2b86976009fd1a6a1c7ea55 (patch)
tree0ff10f62094e706806ca25dd063fa1cb69f37306 /src/configure.in.bot
parent7a5739d94f1b459c01c7f6acf5f3b1d99829d352 (diff)
downloadkrecipes-ca15b14d.tar.gz
krecipes-ca15b14d.zip
Drop support for automake builds
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 189026316e42f7499f9ef45556b1ebaf31acd36e)
Diffstat (limited to 'src/configure.in.bot')
-rw-r--r--src/configure.in.bot57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/configure.in.bot b/src/configure.in.bot
deleted file mode 100644
index c01eef7..0000000
--- a/src/configure.in.bot
+++ /dev/null
@@ -1,57 +0,0 @@
-echo ""
-echo ""
-echo "----- Configure Results -----"
-echo "- -"
-
-if test "x$have_mysql" = "xtrue"; then
-echo "- MySQL Support................... YES -"
-else
-echo "- MySQL Support................... NO -"
-fi
-
-echo "- -"
-
-if test "x$have_postgresql" = "xtrue"; then
-echo "- PostgreSQL Support.............. YES -"
-else
-echo "- PostgreSQL Support.............. NO -"
-fi
-
-echo "- -"
-
-if test "x$have_sqlite3" = "xtrue"; then
-echo "- SQLite Found..................... YES -"
-else
-echo "- SQLite Found..................... NO -"
-fi
-echo "- -"
-echo "------------------------------------------------"
-
-
-if test "x$will_not_build_krecipes" = "xtrue"; then
-echo ""
-echo "*** Krecipes needs a database backend enabled. If ***"
-echo "*** you wish to use SQLite, you must have SQLite ***"
-echo "*** installed before compiling. ***"
-echo "*** KRECIPES WILL NOT BE BUILT ***"
-echo ""
-echo "You can get SQLite from: http://www.hwaci.com/sw/sqlite/"
-echo "Or MySQL from: http://www.mysql.com"
-
-else if test "x$have_mysql" = "xtrue"; then
- if test "x$have_sqlite3" = "xtrue"; then
- echo "- -"
- echo "- Fine, you can build Krecipes now -"
- echo "------------------------------------------------"
- else
- echo "- -"
- echo "- You don't have SQLite installed (or have -"
- echo "- chosen to disable it), but Krecipes can -"
- echo "- work just fine with another supported -"
- echo "- database. -"
- echo "- If you still want to, you can get SQLite -"
- echo "- from http://www.hwaci.com/sw/sqlite/ -"
- echo "------------------------------------------------"
- fi
- fi
-fi