Skip to content

Commit

Permalink
mail/exim: unbreak build with LLVM15 (+)
Browse files Browse the repository at this point in the history
Pass -Wno-int-conversion to CFLAGS fixes error with strict conversion rules introduced in LLVM15

error: incompatible pointer to integer conversion passing 'char *' to parameter of type 'BOOL' (aka 'unsigned int') [-Wint-conversion]
  • Loading branch information
fluffykhv committed Feb 14, 2023
1 parent 53ee611 commit 80ef111
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mail/exim/Makefile
Expand Up @@ -21,6 +21,9 @@ USES= compiler cpe tar:bzip2 perl5
USE_CSTD= c99
USE_PERL5= run

# LLVM15 workaround
CFLAGS= -Wno-int-conversion

# Exim build system is job unsafe atm
MAKE_JOBS_UNSAFE= yes
# One can tune the following "hidden" knobs:
Expand Down

0 comments on commit 80ef111

Please sign in to comment.