svn commit: r522034 - head/net/kamailio

Piotr Kubaj pkubaj at FreeBSD.org
Sat Jan 4 13:57:00 UTC 2020


Author: pkubaj
Date: Sat Jan  4 13:56:59 2020
New Revision: 522034
URL: https://svnweb.freebsd.org/changeset/ports/522034

Log:
  net/kamailio: fix build on GCC architectures
  
  C11 compiler is necessary because of -latomic.
  
  MFH:		2020Q1 (build fix blanket)

Modified:
  head/net/kamailio/Makefile

Modified: head/net/kamailio/Makefile
==============================================================================
--- head/net/kamailio/Makefile	Sat Jan  4 12:57:14 2020	(r522033)
+++ head/net/kamailio/Makefile	Sat Jan  4 13:56:59 2020	(r522034)
@@ -13,14 +13,13 @@ COMMENT=	Very fast and configurable open source SIP pr
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_powerpc64=	Does not build: /bin/sh: clang: not found
-
 LIB_DEPENDS=	libexpat.so:textproc/expat2 \
 		libxml2.so:textproc/libxml2 \
 		libcurl.so:ftp/curl
 RUN_DEPENDS=	${LOCALBASE}/bin/bash:shells/bash
 
-USES=		gmake ncurses pkgconfig python:3.5+ readline shebangfix
+USES=		compiler:c11 gmake ncurses pkgconfig python:3.5+ readline \
+		shebangfix
 
 USE_LDCONFIG=	yes
 SHEBANG_FILES=	utils/kamctl/dbtextdb/dbtextdb.py \


More information about the svn-ports-head mailing list