summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-01-18 22:42:38 +0000
committerDavid M. Lee <dlee@digium.com>2013-01-18 22:42:38 +0000
commitbc97a4ded17bee63555b6215a5ec3d3206f8eec1 (patch)
treef91cbdd19059bbf4c31bd649bcde88f7aa509bc3 /main
parentceedf6d3b5bb49deaf181e1d1af2f20b990a3da1 (diff)
Up the minimum OS X version to 10.6.
* This allows us to remove some special-case build logic. * 10.5 is down to less that 8% of the OS X market share. 10.4 is down to under 2%. * Apple is no longer releasing security updates for 10.5 and earlier. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@379495 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/main/Makefile b/main/Makefile
index 5dec42e68..d12fe3f38 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -55,10 +55,8 @@ endif
ifneq ($(findstring darwin,$(OSARCH)),)
AST_LIBS+=-lresolv
- ASTLINK=-Xlinker -macosx_version_min -Xlinker 10.4 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace
- ifeq ($(shell if test `/usr/bin/sw_vers -productVersion | cut -c4` -gt 5; then echo 6; else echo 0; fi),6)
- ASTLINK+=/usr/lib/bundle1.o
- endif
+ ASTLINK=-Xlinker -macosx_version_min -Xlinker 10.6 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace
+ ASTLINK+=/usr/lib/bundle1.o
else
# These are used for all but Darwin
ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)