Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Oct 2016 10:04:47 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424557 - head/sysutils/sample
Message-ID:  <201610241004.u9OA4ltU059364@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Oct 24 10:04:47 2016
New Revision: 424557
URL: https://svnweb.freebsd.org/changeset/ports/424557

Log:
  - Mark roken on 9.x: does not build:
  
  cc1: warnings being treated as errors
  sample_driver.c: In function 'sample_read':
  sample_driver.c:614: warning: 'samples_left' may be used uninitialized in this function
  *** [sample_driver.o] Error code 1
  
  Approved by:	portmgr blanket

Modified:
  head/sysutils/sample/Makefile

Modified: head/sysutils/sample/Makefile
==============================================================================
--- head/sysutils/sample/Makefile	Mon Oct 24 09:57:36 2016	(r424556)
+++ head/sysutils/sample/Makefile	Mon Oct 24 10:04:47 2016	(r424557)
@@ -10,9 +10,10 @@ COMMENT=	Examine periodic stack traces o
 
 LICENSE=	BSD3CLAUSE
 
-BROKEN_i386=		Does not build: don't know how to make sample_support_i386.c
-BROKEN_powerpc64=	Does not build
-BROKEN_sparc64=		Does not build: don't know how to make sample_support_sparc64.c
+BROKEN_i386=		does not build: don't know how to make sample_support_i386.c
+BROKEN_powerpc64=	does not build
+BROKEN_sparc64=		does not build: don't know how to make sample_support_sparc64.c
+BROKEN_FreeBSD_9=	does not build
 
 BUILD_DEPENDS=	${LOCALBASE}/lib/libbfd.a:devel/libbfd \
 		${LOCALBASE}/lib/libiberty.a:devel/gnulibiberty \
@@ -28,7 +29,7 @@ USES=		python:build kmod
 
 MAKE_ENV=	SYSDIR=${SRC_BASE}/sys
 
-SSP_UNSAFE=	YES
+SSP_UNSAFE=	yes
 
 do-install:
 	${INSTALL_KLD} ${WRKSRC}/driver/sample_driver.ko ${STAGEDIR}${KMODDIR}



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