From owner-svn-ports-branches@freebsd.org Mon Aug 21 10:38:44 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160A4DD0E5B; Mon, 21 Aug 2017 10:38:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8FD76989B; Mon, 21 Aug 2017 10:38:43 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7LAchHV046033; Mon, 21 Aug 2017 10:38:43 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7LAchUL046032; Mon, 21 Aug 2017 10:38:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708211038.v7LAchUL046032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 21 Aug 2017 10:38:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448461 - branches/2017Q3/net/czmq X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/net/czmq X-SVN-Commit-Revision: 448461 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 10:38:44 -0000 Author: koobs Date: Mon Aug 21 10:38:42 2017 New Revision: 448461 URL: https://svnweb.freebsd.org/changeset/ports/448461 Log: MFH: r448460 net/czmq: Squash -Werror flag zmq_utils.h functionality was moved to zmq.h since 4.2.0, with a deprecation warning added. ports r448376 updated libzm4 to 4.2.2, which caused a build error in net/cmzq due to the -Werror flag (set by default): /usr/local/include/zmq_utils.h:41:32: error: unknown warning group '-Werror', ignored [-Werror,-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Werror" ^ /usr/local/include/zmq_utils.h:44:9: warning: Warning: zmq_utils.h is deprecated. All its functionality is provided by zmq.h. [-W#pragma-messages] #pragma message("Warning: zmq_utils.h is deprecated. All its functionality is provided by zmq.h.") ^ Squash the -Werror flag (as done in net/libzmq4) accordingly. While I'm here: - Modernize test target - Group build related entries (MAKE_ENV/CPPFLAGS) PR: 221688 Reported by: olgeni, Jan Bramkamp Approved by: ports-secteam (blanket) Modified: branches/2017Q3/net/czmq/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/czmq/Makefile ============================================================================== --- branches/2017Q3/net/czmq/Makefile Mon Aug 21 10:35:42 2017 (r448460) +++ branches/2017Q3/net/czmq/Makefile Mon Aug 21 10:38:42 2017 (r448461) @@ -22,10 +22,10 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libzmq=${LOCALBASE} \ --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig -MAKE_ENV= V=1 INSTALL_TARGET= install-strip +TEST_TARGET= check -regression-test: build - @cd ${WRKSRC} && ${MAKE} check +MAKE_ENV= V=1 +CPPFLAGS+= -Wno-error .include