chiark / gitweb /
Resolve a bunch of Lintian warnings
[disorder] / configure.ac
index 0f8f91c301c29df0bfd9d05f6060817f4f371f8a..d0e88e42316c8fb1492129d4bec5001552c7d89c 100644 (file)
@@ -188,7 +188,7 @@ AC_CACHE_CHECK([sox version],[rjk_cv_soxver],[
 
 AC_CACHE_CHECK([default sox generation],[rjk_cv_soxgen],[
   case $rjk_cv_soxver in
-  [0-9].* | 1[0123].* )
+  [[0-9]].* | 1[[0123]].* )
     rjk_cv_soxgen=0
     ;;
   * )
@@ -596,10 +596,27 @@ if test $want_server = yes; then
                      ],
                      [rjk_cv_db_version=ok],
                      [rjk_cv_db_version=inadequate])
+    if test $rjk_cv_db_version = ok; then
+      AC_PREPROC_IFELSE([
+                         #include <db.h>
+                         #if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 6
+                         # error http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510270
+                         #endif
+                        ],
+                        [rjk_cv_db_version=ok],
+                        [rjk_cv_db_version=toxic])
+    fi
   ])
-  if test $rjk_cv_db_version != ok; then
-    AC_MSG_ERROR([need db.h version at least 4.2])
-  fi
+  case $rjk_cv_db_version in
+  ok )
+    ;;
+  inadequate )
+    AC_MSG_ERROR([need db version at least 4.3 (but not 4.6)])
+    ;;
+  toxic )
+    AC_MSG_ERROR([db version 4.6.x does not work - see debian bug 510270])
+    ;;
+  esac
 fi
 
 AM_CONDITIONAL([SERVER], [test x$want_server = xyes])