Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Jan 2014 09:30:02 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/185500: commit references a PR
Message-ID:  <201401190930.s0J9U2GE027155@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/185500; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185500: commit references a PR
Date: Sun, 19 Jan 2014 09:24:44 +0000 (UTC)

 Author: miwi
 Date: Sun Jan 19 09:24:34 2014
 New Revision: 340240
 URL: http://svnweb.freebsd.org/changeset/ports/340240
 QAT: https://qat.redports.org/buildarchive/r340240/
 
 Log:
   - Fix build with clang
   
   PR:		185500
   Submitted by:	Ports Fury
 
 Added:
   head/emulators/xbraitenberg/files/
   head/emulators/xbraitenberg/files/patch-permstr.hh   (contents, props changed)
 Modified:
   head/emulators/xbraitenberg/Makefile   (contents, props changed)
 
 Modified: head/emulators/xbraitenberg/Makefile
 ==============================================================================
 --- head/emulators/xbraitenberg/Makefile	Sun Jan 19 09:23:12 2014	(r340239)
 +++ head/emulators/xbraitenberg/Makefile	Sun Jan 19 09:24:34 2014	(r340240)
 @@ -8,12 +8,16 @@ CATEGORIES=	emulators
  MASTER_SITES=	http://www.lcdf.org/~eddietwo/xbraitenberg/
  
  MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A Braitenberg vehicle simulator with pseudo-physics
 +COMMENT=	Braitenberg vehicle simulator with pseudo-physics
  
  USE_XORG=	x11 ice sm xext
  GNU_CONFIGURE=	yes
 +CONFIGURE_ENV=	ac_cv_fpermissive=no
  
  PLIST_FILES=	bin/xbraitenberg
  
 -NO_STAGE=	yes
 +post-patch:
 +	@${REINPLACE_CMD} -e \
 +		'/operator bool() const/d' ${WRKSRC}/operator.hh
 +
  .include <bsd.port.mk>
 
 Added: head/emulators/xbraitenberg/files/patch-permstr.hh
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/emulators/xbraitenberg/files/patch-permstr.hh	Sun Jan 19 09:24:34 2014	(r340240)
 @@ -0,0 +1,22 @@
 +--- permstr.hh.orig
 ++++ permstr.hh
 +@@ -4,6 +4,10 @@
 + #include <cstddef>
 + #include <cstdarg>
 + 
 ++class PermString;
 ++
 ++PermString permprintf(const char *, ...);
 ++
 + class PermString { struct Doodad; public:
 +   
 +     typedef Doodad *Capsule;
 +@@ -91,7 +95,7 @@
 + inline int
 + hashcode(PermString s)
 + {
 +-    return (int)(s.cc());
 ++    return (int)(size_t)(s.cc());
 + }
 + 
 + #endif
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 



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