From owner-svn-ports-branches@freebsd.org Thu Nov 14 20:10:06 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8F4D91B1FFA; Thu, 14 Nov 2019 20:10:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47DXdp3M7qz3Nl1; Thu, 14 Nov 2019 20:10:06 +0000 (UTC) (envelope-from ehaupt@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 561D95AC7; Thu, 14 Nov 2019 20:10:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAEKA62U083376; Thu, 14 Nov 2019 20:10:06 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAEKA6in083374; Thu, 14 Nov 2019 20:10:06 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201911142010.xAEKA6in083374@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 14 Nov 2019 20:10:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r517611 - in branches/2019Q4/net-mgmt/driftnet: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in branches/2019Q4/net-mgmt/driftnet: . files X-SVN-Commit-Revision: 517611 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.29 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: Thu, 14 Nov 2019 20:10:06 -0000 Author: ehaupt Date: Thu Nov 14 20:10:05 2019 New Revision: 517611 URL: https://svnweb.freebsd.org/changeset/ports/517611 Log: MFH: r517610 Fix build on GCC architectures PR: 241894 Submitted by: pkubaj Approved by: portmgr blanket Modified: branches/2019Q4/net-mgmt/driftnet/Makefile branches/2019Q4/net-mgmt/driftnet/files/patch-configure.ac Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net-mgmt/driftnet/Makefile ============================================================================== --- branches/2019Q4/net-mgmt/driftnet/Makefile Thu Nov 14 20:09:10 2019 (r517610) +++ branches/2019Q4/net-mgmt/driftnet/Makefile Thu Nov 14 20:10:05 2019 (r517611) @@ -19,6 +19,7 @@ BUILD_DEPENDS= makedepend:devel/makedepend GNU_CONFIGURE= yes USES= autoreconf gettext-runtime gmake gnome jpeg localbase:ldflags \ pkgconfig +USE_CSTD= c99 USE_GITHUB= yes USE_GNOME= gtk20 USE_XORG= x11 xext xi Modified: branches/2019Q4/net-mgmt/driftnet/files/patch-configure.ac ============================================================================== --- branches/2019Q4/net-mgmt/driftnet/files/patch-configure.ac Thu Nov 14 20:09:10 2019 (r517610) +++ branches/2019Q4/net-mgmt/driftnet/files/patch-configure.ac Thu Nov 14 20:10:05 2019 (r517611) @@ -1,4 +1,4 @@ ---- configure.ac.orig 2018-09-15 19:08:05 UTC +--- configure.ac.orig 2019-10-19 17:01:57 UTC +++ configure.ac @@ -22,7 +22,7 @@ build_linux=no build_mac=no @@ -9,3 +9,12 @@ build_linux=yes ;; cygwin*|mingw*) +@@ -69,7 +69,7 @@ AC_ARG_ENABLE([debug], + [enable_debug=yes]) + + if test "x$enable_debug" = xyes; then +- CFLAGS="-O2 -g -DDEBUG" ++ CFLAGS+="-O2 -g -DDEBUG" + else + CFLAGS="-O2 -DNDEBUG" + fi