diff options
author | Michael Januszewski <spock@gentoo.org> | 2010-04-04 11:55:13 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2010-04-04 11:55:13 +0000 |
commit | 1b64aa2101c520354415bdf482d43afc58932afb (patch) | |
tree | 2c7c10fd46c82f96035e201333e685d9ae72f824 /www-client/elinks/files | |
parent | Update metadata.xml, since maintaining user left, this is free for takeover (diff) | |
download | gentoo-2-1b64aa2101c520354415bdf482d43afc58932afb.tar.gz gentoo-2-1b64aa2101c520354415bdf482d43afc58932afb.tar.bz2 gentoo-2-1b64aa2101c520354415bdf482d43afc58932afb.zip |
Version bump (includes a workaround for bug #310495).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-client/elinks/files')
-rw-r--r-- | www-client/elinks/files/elinks-0.12_pre5-compilation-fix.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www-client/elinks/files/elinks-0.12_pre5-compilation-fix.patch b/www-client/elinks/files/elinks-0.12_pre5-compilation-fix.patch new file mode 100644 index 000000000000..dee09a67eb45 --- /dev/null +++ b/www-client/elinks/files/elinks-0.12_pre5-compilation-fix.patch @@ -0,0 +1,12 @@ +diff -Naurp elinks-0.12pre5-orig//src/intl/charsets.c elinks-0.12pre5/src/intl/charsets.c +--- elinks-0.12pre5-orig//src/intl/charsets.c 2010-04-04 12:19:02.000000000 +0200 ++++ elinks-0.12pre5/src/intl/charsets.c 2010-04-04 12:19:20.000000000 +0200 +@@ -821,7 +821,7 @@ free_utf_table(void) + + /* Cast away const. */ + for (i = 128; i < 256; i++) +- mem_free((unsigned char *) utf_table[i].u.str); ++ mem_free(utf_table[i].u.str); + } + + static struct conv_table * |