diff options
author | 2009-08-09 17:19:34 +0000 | |
---|---|---|
committer | 2009-08-09 17:19:34 +0000 | |
commit | c4d00e279103752c904af7a38d24fd8d5767817e (patch) | |
tree | 94d0b38dcd3053d58becb2a15e5be5a0ab086e55 /net-misc/hsc/files | |
parent | Remove hdump from tree. (diff) | |
download | gentoo-2-c4d00e279103752c904af7a38d24fd8d5767817e.tar.gz gentoo-2-c4d00e279103752c904af7a38d24fd8d5767817e.tar.bz2 gentoo-2-c4d00e279103752c904af7a38d24fd8d5767817e.zip |
Fix building with GLIBC 2.10+ wrt #279083.
(Portage version: 2.2_rc36/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/hsc/files')
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch b/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch new file mode 100644 index 000000000000..5c10efc0f9a2 --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch @@ -0,0 +1,12 @@ +diff -ur hsc-1.0.orig/src/hsclib/css.c hsc-1.0/src/hsclib/css.c +--- hsc-1.0.orig/src/hsclib/css.c 2006-04-03 17:18:37.000000000 +0300 ++++ hsc-1.0/src/hsclib/css.c 2009-08-09 20:19:51.000000000 +0300 +@@ -129,7 +129,7 @@ + #ifdef isblank + #undef isblank + #endif +-static int isblank(int c) ++int isblank(int c) + { + return ((c == ' ') || (c == '\t')); + } |