svn commit: r531527 - head/net-im/ejabberd

Piotr Kubaj pkubaj at FreeBSD.org
Sun Apr 12 16:09:41 UTC 2020


Author: pkubaj
Date: Sun Apr 12 16:09:40 2020
New Revision: 531527
URL: https://svnweb.freebsd.org/changeset/ports/531527

Log:
  net-im/ejabberd: fix build on GCC architectures
  
  GCC 4.2 doesn't support LTO:
  cc1: error: unrecognized command line option "-flto"

Modified:
  head/net-im/ejabberd/Makefile

Modified: head/net-im/ejabberd/Makefile
==============================================================================
--- head/net-im/ejabberd/Makefile	Sun Apr 12 16:00:59 2020	(r531526)
+++ head/net-im/ejabberd/Makefile	Sun Apr 12 16:09:40 2020	(r531527)
@@ -18,7 +18,8 @@ LIB_DEPENDS=	libexpat.so:textproc/expat2 \
 		libpng.so:graphics/png \
 		libwebp.so:graphics/webp
 
-USES=		cpe gmake pkgconfig shebangfix ssl jpeg autoreconf:build
+USES=		compiler:c11 cpe gmake pkgconfig shebangfix ssl jpeg \
+		autoreconf:build
 
 USERS=		ejabberd
 GROUPS=		${USERS}


More information about the svn-ports-all mailing list