diff options
author | Dirk Opfer <dirk@opfer-online.de> | 2006-06-21 14:20:19 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-21 14:20:19 +0000 |
commit | 692b67046261fa0d8cf5c2bb5d19eb8e66a2f2f0 (patch) | |
tree | f5be174cf0c4814904085a409fa5945087bbe59b /packages/asterisk/asterisk-1.2.9.1/uclibc-compat-getloadavg.patch | |
parent | 8a23fffee77f6f10025cf43f3c651bdd0c61d656 (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-compat-getloadavg.patch')
-rw-r--r-- | packages/asterisk/asterisk-1.2.9.1/uclibc-compat-getloadavg.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/asterisk/asterisk-1.2.9.1/uclibc-compat-getloadavg.patch b/packages/asterisk/asterisk-1.2.9.1/uclibc-compat-getloadavg.patch new file mode 100644 index 0000000000..a909513b1c --- /dev/null +++ b/packages/asterisk/asterisk-1.2.9.1/uclibc-compat-getloadavg.patch @@ -0,0 +1,13 @@ +diff -ruN asterisk-1.2.0-old/include/asterisk/compat.h asterisk-1.2.0-new/include/asterisk/compat.h +--- asterisk-1.2.0-old/include/asterisk/compat.h 2005-11-08 05:13:19.000000000 +0100 ++++ asterisk-1.2.0-new/include/asterisk/compat.h 2005-12-04 05:32:31.000000000 +0100 +@@ -75,7 +75,9 @@ + #define HAVE_STRTOQ + + #ifdef _BSD_SOURCE ++#ifndef __UCLIBC__ + #define HAVE_GETLOADAVG ++#endif /* __UCLIBC__ */ + #endif + + #ifdef __linux__ |