1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00

- Update to version 1.2.26

PR:		ports/96012
Submitted by:	Ports Fury
This commit is contained in:
Sergey Matveychuk 2006-04-20 05:42:42 +00:00
parent 1a251b99c9
commit 7661f5c4e8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159989
3 changed files with 13 additions and 10 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= icewm
PORTVERSION= 1.2.25
PORTVERSION= 1.2.26
CATEGORIES= x11-wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -17,7 +17,6 @@ COMMENT= Window Manager designed for speed, usability and consistency
USE_X_PREFIX= yes
WANT_GNOME= yes
USE_GNOME= gnometarget
USE_REINPLACE= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \

View File

@ -1,3 +1,3 @@
MD5 (icewm-1.2.25.tar.gz) = af69d095a6c6fba1f73f80e966bc4459
SHA256 (icewm-1.2.25.tar.gz) = b0971c6f79a1642eda06cdb79e022a05168f8031e408cc96e367318c9c5f97fa
SIZE (icewm-1.2.25.tar.gz) = 1042790
MD5 (icewm-1.2.26.tar.gz) = 097b12d3f8e0f57a964e4821bc1825ed
SHA256 (icewm-1.2.26.tar.gz) = 96ed51cbaead5bd8c33522be5bf0baac4c051db0a826f764eb8528b2ec0c5497
SIZE (icewm-1.2.26.tar.gz) = 1042824

View File

@ -1,7 +1,7 @@
--- src/ylocale.cc.orig Wed Apr 21 05:06:34 2004
+++ src/ylocale.cc Sun Apr 25 19:40:07 2004
@@ -149,7 +149,8 @@
return NULL;
--- src/ylocale.cc.orig Mon Apr 17 01:12:31 2006
+++ src/ylocale.cc Mon Apr 17 16:19:46 2006
@@ -149,10 +149,11 @@
return NULL;
YUChar * uStr(new YUChar[lLen + 1]);
- char * inbuf((char *) lStr), * outbuf((char *) uStr);
@ -9,4 +9,8 @@
+ char * outbuf((char *) uStr);
size_t inlen(lLen), outlen(4 * lLen);
if (0 > (int) iconv(instance->toUnicode, &inbuf, &inlen, &outbuf, &outlen))
- if (0 > (int) iconv(instance->toUnicode, const_cast<char **>(&inbuf), &inlen, &outbuf, &outlen))
+ if (0 > (int) iconv(instance->toUnicode, &inbuf, &inlen, &outbuf, &outlen))
warn(_("Invalid multibyte string \"%s\": %s"), lStr, strerror(errno));
*((YUChar *) outbuf) = 0;