From owner-svn-ports-head@freebsd.org Fri Jun 29 16:38:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E5A2EFDE36; Fri, 29 Jun 2018 16:38:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D3E8571BE4; Fri, 29 Jun 2018 16:38:07 +0000 (UTC) (envelope-from amdmi3@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B100823560; Fri, 29 Jun 2018 16:38:07 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5TGc7fY077338; Fri, 29 Jun 2018 16:38:07 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5TGc7kL077337; Fri, 29 Jun 2018 16:38:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806291638.w5TGc7kL077337@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 29 Jun 2018 16:38:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473558 - head/security/steghide X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/security/steghide X-SVN-Commit-Revision: 473558 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2018 16:38:08 -0000 Author: amdmi3 Date: Fri Jun 29 16:38:07 2018 New Revision: 473558 URL: https://svnweb.freebsd.org/changeset/ports/473558 Log: - Fix build with clang 6 - Switch to options helpers Modified: head/security/steghide/Makefile Modified: head/security/steghide/Makefile ============================================================================== --- head/security/steghide/Makefile Fri Jun 29 16:36:04 2018 (r473557) +++ head/security/steghide/Makefile Fri Jun 29 16:38:07 2018 (r473558) @@ -20,18 +20,15 @@ USES= gmake jpeg libtool:build perl5 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -fpermissive LIBS+= -L${LOCALBASE}/lib -lmcrypt +CXXFLAGS+= -Wno-static-float-init MAKE_ARGS= LIBTOOL="${LOCALBASE}/bin/libtool" OPTIONS_DEFINE= DOCS NLS OPTIONS_SUB= yes + NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls - -.include - -.if ${PORT_OPTIONS:MNLS} -LIBS+= -lintl -.endif +NLS_LIBS= -lintl post-patch: @${REINPLACE_CMD} '/CXXFLAGS=/s|-O2|${CXXFLAGS}|' ${WRKSRC}/configure