Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Sep 2015 11:28:33 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396080 - head/devel/stringencoders
Message-ID:  <201509041128.t84BSXsO011593@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Fri Sep  4 11:28:32 2015
New Revision: 396080
URL: https://svnweb.freebsd.org/changeset/ports/396080

Log:
  Unbreak the build on PowerPC: the port assumes that `char' is always signed,
  which is not necessarily true.

Modified:
  head/devel/stringencoders/Makefile

Modified: head/devel/stringencoders/Makefile
==============================================================================
--- head/devel/stringencoders/Makefile	Fri Sep  4 11:16:31 2015	(r396079)
+++ head/devel/stringencoders/Makefile	Fri Sep  4 11:28:32 2015	(r396080)
@@ -14,7 +14,6 @@ COMMENT=	Collection of high performance 
 USES=		libtool perl5
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
-
-BROKEN_powerpc=	Does not compile on powerpc
+CFLAGS+=	-fsigned-char	# chars are unsigned on PowerPC and ARM
 
 .include <bsd.port.mk>



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