summaryrefslogtreecommitdiff
path: root/packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch
diff options
context:
space:
mode:
authorDirk Opfer <dirk@opfer-online.de>2006-06-21 14:20:19 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-06-21 14:20:19 +0000
commit692b67046261fa0d8cf5c2bb5d19eb8e66a2f2f0 (patch)
treef5be174cf0c4814904085a409fa5945087bbe59b /packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch
parent8a23fffee77f6f10025cf43f3c651bdd0c61d656 (diff)
Asterisk 1.2.9.1: add patches to compile against uclibc
- add patch to disable getloadavg calls, because this isn't available in uclibc - also disable res_ninit and friends
Diffstat (limited to 'packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch')
-rw-r--r--packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch b/packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch
new file mode 100644
index 0000000000..23657bcc76
--- /dev/null
+++ b/packages/asterisk/asterisk-1.2.9.1/uclibc-dsn.patch
@@ -0,0 +1,18 @@
+diff -ruN asterisk-1.0.7-old/dns.c asterisk-1.0.7-new/dns.c
+--- asterisk-1.0.7-old/dns.c 2004-06-22 22:11:15.000000000 +0200
++++ asterisk-1.0.7-new/dns.c 2005-03-19 17:38:06.000000000 +0100
+@@ -153,7 +153,13 @@
+
+ #if defined(res_ninit)
+ #define HAS_RES_NINIT
+-#else
++#endif
++
++#ifdef __UCLIBC__
++#undef HAS_RES_NINIT
++#endif
++
++#ifndef HAS_RES_NINIT
+ AST_MUTEX_DEFINE_STATIC(res_lock);
+ #if 0
+ #warning "Warning, res_ninit is missing... Could have reentrancy issues"