diff options
author | Michele Calgaro <[email protected]> | 2024-10-13 11:56:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-29 21:58:42 +0900 |
commit | 2879ff70be9271550477982a1a6371714db38562 (patch) | |
tree | c2054149dba923ab080fe7093432c7663a990111 /src/configure.in.bot | |
parent | 3eb38d2556f676d1027746f20bf12a1dd74451ef (diff) | |
download | krecipes-2879ff70be9271550477982a1a6371714db38562.tar.gz krecipes-2879ff70be9271550477982a1a6371714db38562.zip |
Rearrange folders structure to remove unnecessary 'krecipes' second level subfolder
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502)
Diffstat (limited to 'src/configure.in.bot')
-rw-r--r-- | src/configure.in.bot | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/configure.in.bot b/src/configure.in.bot new file mode 100644 index 0000000..6116164 --- /dev/null +++ b/src/configure.in.bot @@ -0,0 +1,57 @@ +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_sqlite" = "xtrue" || 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_sqlite" = "xtrue" || 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 |