Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Nov 2019 20:09:10 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517610 - in head/net-mgmt/driftnet: . files
Message-ID:  <201911142009.xAEK9A8R083115@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Thu Nov 14 20:09:10 2019
New Revision: 517610
URL: https://svnweb.freebsd.org/changeset/ports/517610

Log:
  Fix build on GCC architectures
  
  PR:		241894
  Submitted by:	pkubaj
  MFH:		2019Q4 (blanket)

Modified:
  head/net-mgmt/driftnet/Makefile
  head/net-mgmt/driftnet/files/patch-configure.ac

Modified: head/net-mgmt/driftnet/Makefile
==============================================================================
--- head/net-mgmt/driftnet/Makefile	Thu Nov 14 19:54:37 2019	(r517609)
+++ head/net-mgmt/driftnet/Makefile	Thu Nov 14 20:09:10 2019	(r517610)
@@ -19,6 +19,7 @@ BUILD_DEPENDS=	makedepend:devel/makedepend
 GNU_CONFIGURE=	yes
 USES=		autoreconf gettext-runtime gmake gnome jpeg localbase:ldflags \
 		pkgconfig xorg
+USE_CSTD=	c99
 USE_GITHUB=	yes
 USE_GNOME=	gtk20
 USE_XORG=	x11 xext xi

Modified: head/net-mgmt/driftnet/files/patch-configure.ac
==============================================================================
--- head/net-mgmt/driftnet/files/patch-configure.ac	Thu Nov 14 19:54:37 2019	(r517609)
+++ head/net-mgmt/driftnet/files/patch-configure.ac	Thu Nov 14 20:09:10 2019	(r517610)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911142009.xAEK9A8R083115>