diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-11-16 13:07:26 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-11-16 13:07:26 +0000 |
commit | 84bfd833d37f3d14d1fad89d0b75af8a069dedf2 (patch) | |
tree | af70b5afa0806cd575f2e5fd2e525ae76b60dfd0 /net-libs/wvstreams/files | |
parent | stable on ppc gsla: 71311 (diff) | |
download | historical-84bfd833d37f3d14d1fad89d0b75af8a069dedf2.tar.gz historical-84bfd833d37f3d14d1fad89d0b75af8a069dedf2.tar.bz2 historical-84bfd833d37f3d14d1fad89d0b75af8a069dedf2.zip |
version bump and uclibc patch from bug #70974
Diffstat (limited to 'net-libs/wvstreams/files')
4 files changed, 37 insertions, 0 deletions
diff --git a/net-libs/wvstreams/files/digest-wvstreams-3.75-r1 b/net-libs/wvstreams/files/digest-wvstreams-3.75-r1 new file mode 100644 index 000000000000..d368057d0506 --- /dev/null +++ b/net-libs/wvstreams/files/digest-wvstreams-3.75-r1 @@ -0,0 +1 @@ +MD5 8682997d2494c7defbe9b211067635b2 wvstreams-3.75.0.tar.gz 526295 diff --git a/net-libs/wvstreams/files/digest-wvstreams-4.0 b/net-libs/wvstreams/files/digest-wvstreams-4.0 new file mode 100644 index 000000000000..933c88500731 --- /dev/null +++ b/net-libs/wvstreams/files/digest-wvstreams-4.0 @@ -0,0 +1 @@ +MD5 f2b282248b53653d7531cc4b3e33c77b wvstreams-4.0.tar.gz 3004311 diff --git a/net-libs/wvstreams/files/wvcrash-uclibc-gentoo.patch b/net-libs/wvstreams/files/wvcrash-uclibc-gentoo.patch new file mode 100644 index 000000000000..c111a03d00c5 --- /dev/null +++ b/net-libs/wvstreams/files/wvcrash-uclibc-gentoo.patch @@ -0,0 +1,13 @@ +--- utils/wvcrash.cc.orig 2004-11-12 10:32:07 -0600 ++++ utils/wvcrash.cc 2004-11-12 10:34:34 -0600 +@@ -10,8 +10,8 @@ + #include <fcntl.h> + #include <string.h> + +-// FIXME: this file mostly only works in Linux +-#ifdef __linux ++// FIXME: this file mostly only works in Linux and without uclibc ++#if defined(__linux) && !defined(__UCLIBC__) + + # include <execinfo.h> + #include <unistd.h> diff --git a/net-libs/wvstreams/files/wvstreams-4.0-tcl_8_4.patch b/net-libs/wvstreams/files/wvstreams-4.0-tcl_8_4.patch new file mode 100644 index 000000000000..45999744abea --- /dev/null +++ b/net-libs/wvstreams/files/wvstreams-4.0-tcl_8_4.patch @@ -0,0 +1,22 @@ +--- vars.mk.orig 2004-10-14 01:09:50.000000000 +0930 ++++ vars.mk 2004-11-16 22:11:28.073880504 +0930 +@@ -250,3 +250,5 @@ + + libwvgtk.a libwvgtk.so: $(call objects,gtk) + libwvgtk.so: -lgtk -lgdk libwvstreams.so libwvutils.so ++ ++libuniconf_tcl.so: bindings/uniconf_tcl.o -ltcl8.4 -luniconf +--- configure.ac.orig 2004-10-14 01:09:50.000000000 +0930 ++++ configure.ac 2004-11-16 22:13:36.588343336 +0930 +@@ -269,9 +269,9 @@ + # tcl + if test "$with_tcl" != "no"; then + CPPFLAGS_save="$CPPFLAGS" +- WV_APPEND(CPPFLAGS, -I/usr/include/tcl8.3) ++ WV_APPEND(CPPFLAGS, -I/usr/include) + AC_CHECK_HEADERS(tcl.h,, [with_tcl=no]) +- AC_CHECK_LIB(tcl8.3, TclInterpInit,, [with_tcl=no]) ++ AC_CHECK_LIB(tcl8.4, TclInterpInit,, [with_tcl=no]) + if test "$with_tcl" != "no"; then + CPPFLAGS="$CPPFLAGS_save" + fi |