svn commit: r396080 - head/devel/stringencoders

Alexey Dokuchaev danfe at FreeBSD.org
Fri Sep 4 11:28:33 UTC 2015


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>


More information about the svn-ports-all mailing list