diff options
author | paul <paul@7b491191-dbf0-0310-aff6-d879d4d69008> | 2005-10-05 15:04:58 +0000 |
---|---|---|
committer | paul <paul@7b491191-dbf0-0310-aff6-d879d4d69008> | 2005-10-05 15:04:58 +0000 |
commit | 7b658b10aaeefa21b189f23faa9f6efcbbccfee1 (patch) | |
tree | bfb003c8d7edca9612c52dd2b274267dfd087158 /acinclude.m4 | |
parent | 1b4e3db784395bf8a5ce97a79813e1975be2a963 (diff) |
merging git tree
git-svn-id: https://svn.ic-s.nl/svn/dbmail/trunk/dbmail@1893 7b491191-dbf0-0310-aff6-d879d4d69008
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 6bc39adf..0699e0ad 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -145,10 +145,10 @@ then if test "$withval" != "yes" then AC_MSG_CHECKING([for sieve2_interface.h (user supplied)]) - if test -r "$sieveheadername/sieve2_interface.h" + if test -r "$sieveheadername/sieve2.h" then # found - AC_MSG_RESULT([$sieveheadername/sieve2_interface.h]) + AC_MSG_RESULT([$sieveheadername/sieve2.h]) SIEVEINC=$sieveheadername else # Not found @@ -156,18 +156,18 @@ then SIEVEINC="" sieveheadername="" AC_MSG_ERROR([ - Unable to find sieve2_inteface.h where you specified, try just --with-sieve to + Unable to find sieve2.h where you specified, try just --with-sieve to have configure guess]) fi else # Lets look in our standard paths - AC_MSG_CHECKING([for sieve2_interface.h]) + AC_MSG_CHECKING([for sieve2.h]) for sievepaths in $sieveheaderpaths do - if test -r "$sievepaths/sieve2_interface.h" + if test -r "$sievepaths/sieve2.h" then SIEVEINC="$sievepaths" - AC_MSG_RESULT([$sievepaths/sieve2_interface.h]) + AC_MSG_RESULT([$sievepaths/sieve2.h]) break fi done @@ -175,7 +175,7 @@ then then AC_MSG_RESULT([no]) AC_MSG_ERROR([ - Unable to locate sieve2_inteface.h, try specifying with --with-sieve]) + Unable to locate sieve2.h, try specifying with --with-sieve]) fi fi else @@ -189,7 +189,7 @@ AC_DEFUN([DBMAIL_CHECK_SIEVE_LIBS], [dnl # Look for libs needed to link to SIEVE first if test ! "${sieveheadername-x}" = "x" then - AC_CHECK_LIB(sieve,sieve2_extensions_listsupport,[ SORTLIB="-lsieve"], [SORTLIB=""]) + AC_CHECK_LIB(sieve,sieve2_listextensions,[ SORTLIB="-lsieve"], [SORTLIB=""]) if test -z "$SORTLIB" then AC_MSG_ERROR([ |