X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/misc/blobdiff_plain/c818aceddb8a734c7b3fe0e35f442bbd70e0b0ab..ed68d9a61a11bc1ba3f80c1b51c2715906c62f87:/configure.ac diff --git a/configure.ac b/configure.ac index b171850..97e1c30 100644 --- a/configure.ac +++ b/configure.ac @@ -59,9 +59,6 @@ LIBS=$OLIBS AC_CHECK_LIB([cdb], [cdb_seek], [have_cdb=yes], [have_cdb=no]) AM_CONDITIONAL([HAVE_LIBCDB], [test $have_cdb = yes]) -AC_CHECK_LIB([spamc], [message_filter], [have_spamc=yes], [have_spamc=no]) -AM_CONDITIONAL([HAVE_LIBSPAMC], [test $have_spamc = yes]) - ## Packages. PKG_CHECK_MODULES([mLib], [mLib >= 2.0.4], [have_mLib=yes], [have_mLib=no]) AM_CONDITIONAL([HAVE_MLIB], [test $have_mLib = yes]) @@ -75,7 +72,7 @@ AC_CHECK_FUNC([prlimit], [have_prlimit=yes], [have_prlimit=no]) AM_CONDITIONAL([HAVE_PRLIMIT], [test $have_prlimit = yes]) ## Processor type. -case "$host_cpu" in i?86) x86=yes;; *) x86=no;; esac +case "$host_cpu" in i?86 | x86_64) x86=yes;; *) x86=no;; esac AM_CONDITIONAL([X86], [test $x86 = yes -a $GCC = yes]) dnl--------------------------------------------------------------------------