]> the.earth.li Git - onak.git/commitdiff
Hard error when db version is < 4.
authorJonathan McDowell <noodles@earth.li>
Mon, 20 Sep 2004 14:32:11 +0000 (14:32 +0000)
committerJonathan McDowell <noodles@earth.li>
Mon, 20 Sep 2004 14:32:11 +0000 (14:32 +0000)
Fix configure.ac so we hard error if our version is less than 4.

configure.ac

index a3468aac8dd27dedd0d3c810b5f6f753a71f3e00..e0a7e8473ef0d2fc3ead2e7a9add422e92ba122c 100644 (file)
@@ -21,7 +21,7 @@ then
        set `eval $ac_cpp conftest.c | egrep '^ *[[0-9]] *'`; v="$1"; vv="$2"
        AC_MSG_RESULT($v.$vv)
        if test "$v" -ne 4; then
-               AC_MSG_RESULT([   * onak requires libdb version 4])
+               AC_MSG_ERROR([   * onak requires libdb version 4])
        fi
        for db in "db-$v.$vv" "db$v.$vv" "db-$v" "db$v" "db"; do
                AC_MSG_CHECKING(for db_create in lib$db)