mail/bogofilter: unbreak with clang 9

cpp: error: '-I-' not supported, please use -iquote instead

Reported by:	antoine (via bug 240629 exp-run)
This commit is contained in:
Jan Beich 2019-09-23 11:56:18 +00:00
parent 2442a72d1b
commit 204e156f65
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512633

View file

@ -0,0 +1,17 @@
Clang 9 no longer pretends to be GCC
https://reviews.llvm.org/rL356931
https://reviews.llvm.org/rL366091
--- configure.orig 2019-09-08 15:43:06 UTC
+++ configure
@@ -6464,8 +6464,8 @@ if test "$GCC" = yes && test "$ICC" = no ; then
""|2.*|3.*) ;;
4.*) gcc4=yes ;;
esac
- case "$CC" in
- *clang) gcc4=yes ;;
+ case `$CC --version 2>/dev/null` in
+ *clang*) gcc4=yes ;;
esac
fi
if test $gcc4 = yes; then