summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2009-01-04 13:25:00 +0000
committerChristoph Mende <angelos@gentoo.org>2009-01-04 13:25:00 +0000
commit39916869c8656aa4472c3dda49ae1cb51dc8a03b (patch)
tree8b0cf38348dfd7458eeb1eba962dc45d34a594b2 /media-sound/audio-entropyd/files
parentclean up (diff)
downloadhistorical-39916869c8656aa4472c3dda49ae1cb51dc8a03b.tar.gz
historical-39916869c8656aa4472c3dda49ae1cb51dc8a03b.tar.bz2
historical-39916869c8656aa4472c3dda49ae1cb51dc8a03b.zip
Version bump
Package-Manager: portage-2.2_rc20/cvs/Linux 2.6.28 x86_64
Diffstat (limited to 'media-sound/audio-entropyd/files')
-rw-r--r--media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch b/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch
new file mode 100644
index 000000000000..bdf5adeff825
--- /dev/null
+++ b/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch
@@ -0,0 +1,27 @@
+--- audio-entropyd-1.0.1.orig/error.c 2008-01-22 09:50:28 +0000
++++ audio-entropyd-1.0.1/error.c 2008-01-22 09:53:51 +0000
+@@ -9,13 +9,13 @@
+ #include <signal.h>
+ #include <syslog.h>
+ #include <regex.h>
+-#if defined(__GLIBC__)
++#if defined(__GLIBC__) && !defined(__UCLIBC__)
+ #include <execinfo.h>
+ #endif
+
+ void print_trace(void)
+ {
+-#if defined(__GLIBC__)
++#if defined(__GLIBC__) && !defined(__UCLIBC__)
+ void *array[MAX_BACKTRACE_LENGTH];
+ size_t size;
+
+@@ -39,7 +39,7 @@
+ printf("\n\n\nDebug information:\n");
+ if (errno) fprintf(stderr, "errno: %d=%s (if applicable)\n", errno, strerror(errno));
+
+-#if defined(__GLIBC__)
++#if defined(__GLIBC__) && !defined(__UCLIBC__)
+ print_trace();
+ #endif
+