1. Make OS X compile cleanly with app_stack.

2. Use curl to download sound files, as curl is installed natively on OS X,
whereas wget and fetch are not.
(closes issue #14332)
 Reported by: oej
 Tested by: Corydon76


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@173130 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2009-02-03 00:29:49 +00:00
parent 673d85387a
commit e179e613f7
7 changed files with 184 additions and 8 deletions

View File

@@ -74,4 +74,10 @@
#define attribute_weak
#endif
#ifdef HAVE_ATTRIBUTE_weak_import
#define attribute_weak_import __attribute__((weak_import))
#else
#define attribute_weak_import
#endif
#endif /* _ASTERISK_COMPILER_H */