summaryrefslogtreecommitdiff
path: root/main/Makefile
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@respoke.io>2015-06-02 15:07:08 -0500
committerJoshua Colp <jcolp@digium.com>2015-06-05 11:23:16 -0500
commit9fca378b36918aaf8c697bd4138260f68b968c03 (patch)
tree183aad5967332028a959173ec87a4459a7e3ce2d /main/Makefile
parentd463bac5742ef59a2ceb90a0ffe7ab0db5aca36b (diff)
Fixes for OS X
* Add some type casting so tv_usec can really be a long, instead of some strange platform specific type. * Add some .dylib style files to .gitignore. * Switch from using -Xlinker to -Wl,. For [reasons unknown][], newer versions of GCC, when compiling the Homebrew formula for Asterisk, are not properly passing the -Xlinker options to the linker. Given that -Wl, does exactly the [same thing][], and does it properly, this patch changes the -Xlinker options to use -Wl, instead. [reasons unknown]: http://bit.ly/1SUbEYx [same thing]: https://gcc.gnu.org/onlinedocs/gcc/Link-Options.html Change-Id: Id5e6b3c6cc86282ea5fca630dc3991137c5bf4dd
Diffstat (limited to 'main/Makefile')
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index 08496e618..bfdfb463d 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -60,7 +60,7 @@ endif
ifneq ($(findstring darwin,$(OSARCH)),)
AST_LIBS+=-lresolv
- ASTLINK=-mmacosx-version-min=10.6 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace
+ ASTLINK=-mmacosx-version-min=10.6 -Wl,-undefined,dynamic_lookup -force_flat_namespace
ASTLINK+=/usr/lib/bundle1.o
else
# These are used for all but Darwin