svn commit: r478963 - head/net-im/jabber

Tobias Kortkamp tobik at FreeBSD.org
Tue Sep 4 14:22:49 UTC 2018


Author: tobik
Date: Tue Sep  4 14:22:48 2018
New Revision: 478963
URL: https://svnweb.freebsd.org/changeset/ports/478963

Log:
  net-im/jabber: Fix build with Clang 6
  
  expat.cc:412:20: error: comparison between pointer and integer ('const char *' and 'int')
      while (atts[i] != '\0') {
             ~~~~~~~ ^  ~~~~
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p478648_s338416/logs/errors/jabber-1.6.1.1_20,1.log
  
  Also deprecate it.  It appears to be unmaintained upstream and the
  last relase was more than 10 years ago.

Modified:
  head/net-im/jabber/Makefile

Modified: head/net-im/jabber/Makefile
==============================================================================
--- head/net-im/jabber/Makefile	Tue Sep  4 14:11:56 2018	(r478962)
+++ head/net-im/jabber/Makefile	Tue Sep  4 14:22:48 2018	(r478963)
@@ -17,6 +17,9 @@ COMMENT=	XMPP/Jabber server daemon
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+DEPRECATED=	Unmaintained upstream
+EXPIRATION_DATE=	2018-10-15
+
 LIB_DEPENDS=	libpopt.so:devel/popt \
 		libpth.so:devel/pth-hard \
 		libidn.so:dns/libidn \
@@ -24,6 +27,7 @@ LIB_DEPENDS=	libpopt.so:devel/popt \
 		libexpat.so:textproc/expat2
 
 USES=		gettext gmake iconv libtool localbase:ldflags pkgconfig
+USE_CXXSTD=	c++98
 GNU_CONFIGURE=	yes
 USE_RC_SUBR=	jabber
 CONFIGURE_ARGS=	--localstatedir=/var \


More information about the svn-ports-head mailing list