ports/150074: [patch] games/hex-a-hop: update to 1.1.0

Anonymous swell.k at gmail.com
Sun Aug 29 14:20:02 UTC 2010


The following reply was made to PR ports/150074; it has been noted by GNATS.

From: Anonymous <swell.k at gmail.com>
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: ports/150074: [patch] games/hex-a-hop: update to 1.1.0
Date: Sun, 29 Aug 2010 18:09:32 +0400

 Looks like I've stepped on a landmine: const qualifier in iconv.h.
 Below is a patch from the maintainer that fixes compilation with GNU iconv.
 
 --- c.diff begins here ---
 Index: games/hex-a-hop/files/patch-src-text.cpp
 ===================================================================
 RCS file: games/hex-a-hop/files/patch-src-text.cpp
 diff -N games/hex-a-hop/files/patch-src-text.cpp
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ games/hex-a-hop/files/patch-src-text.cpp	29 Aug 2010 14:00:10 -0000
 @@ -0,0 +1,11 @@
 +--- src/text.cpp~
 ++++ src/text.cpp
 +@@ -439,7 +439,7 @@ void ConvertToUTF8(const std::string &te
 + 	errno = 0;
 + 	static const char *locale_enc = gettext_init.GetEncoding();
 + 	iconv_t cd = iconv_open("UTF-8", locale_enc);
 +-	char *in_buf = const_cast<char *>(&text_locally_encoded[0]);
 ++	const char *in_buf = const_cast<char *>(&text_locally_encoded[0]);
 + 	char *out_buf = &text_utf8[0];
 + 	iconv(cd, &in_buf, &text_length, &out_buf, &text_utf8_length);
 + 	iconv_close(cd);
 --- c.diff ends here ---



More information about the freebsd-ports-bugs mailing list