diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-07-29 04:08:31 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-07-29 04:08:31 +0800 |
commit | 0f129b897801274babcb2e1f5a11a2389a780a73 (patch) | |
tree | 7561ef45ecd01b3770bf5038d81da038be458858 /security | |
parent | b4d0a3c2d549d3b3534118c0176b8e86fb89297e (diff) | |
download | freebsd-ports-gnome-0f129b897801274babcb2e1f5a11a2389a780a73.tar.gz freebsd-ports-gnome-0f129b897801274babcb2e1f5a11a2389a780a73.tar.zst freebsd-ports-gnome-0f129b897801274babcb2e1f5a11a2389a780a73.zip |
security/krb5-devel: fix build with GCC-based architectures
C11 compiler is necessary:
edwards25519_fiat.h:14: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fiat_25519_int128'
Approved by: mentors (implicit approval)
Diffstat (limited to 'security')
-rw-r--r-- | security/krb5-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/krb5-devel/Makefile b/security/krb5-devel/Makefile index 8a1e203115c6..85dc8a438fc4 100644 --- a/security/krb5-devel/Makefile +++ b/security/krb5-devel/Makefile @@ -29,8 +29,8 @@ USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu99 GNU_CONFIGURE= yes -USES= autoreconf cpe gmake localbase perl5 libtool:build \ - gssapi:bootstrap,mit pkgconfig ssl +USES= autoreconf compiler:c11 cpe gmake localbase perl5 \ + libtool:build gssapi:bootstrap,mit pkgconfig ssl CONFIGURE_ARGS?= --enable-shared --without-system-verto \ --disable-rpath --localstatedir="${PREFIX}/var" CONFIGURE_ENV= INSTALL="${INSTALL}" INSTALL_LIB="${INSTALL_LIB}" YACC="${YACC}" |