diff options
author | Keith Packard <keithp@keithp.com> | 2016-04-20 20:27:47 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-04-21 21:35:24 -0400 |
commit | 565d8f22c23c7c6c6817d11ef1ca02e70ba5d2ae (patch) | |
tree | 099bc34919b3750322679359d8b9cbe0eec123f9 /libaltos/Makefile-standalone | |
parent | f10fbff6758dfcfbeeeb224f8ab02fa107aae5f6 (diff) |
libaltos: Fix for Mac OS X El Capitan
USB enumeration for serial devices changed
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'libaltos/Makefile-standalone')
-rw-r--r-- | libaltos/Makefile-standalone | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libaltos/Makefile-standalone b/libaltos/Makefile-standalone index 9a44b8e0..1430aacb 100644 --- a/libaltos/Makefile-standalone +++ b/libaltos/Makefile-standalone @@ -33,8 +33,8 @@ OS_SRCS=libaltos_posix.c libaltos_darwin.c # -iwithsysroot /System/Library/Frameworks/IOKit.framework/Headers \ # -iwithsysroot /System/Library/Frameworks/CoreFoundation.framework/Headers -XCODE=/Applications/Xcode.app -SDK=$(XCODE)/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk +XCODE=/Applications/Xcode-beta.app +SDK=$(XCODE)/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk MINVERSION=10.5 OS_LIB_CFLAGS=\ @@ -43,7 +43,7 @@ OS_LIB_CFLAGS=\ -iwithsysroot /System/Library/Frameworks/JavaVM.framework/Headers \ -iwithsysroot /System/Library/Frameworks/IOKit.framework/Headers \ -iwithsysroot /System/Library/Frameworks/CoreFoundation.framework/Headers -OS_APP_CFLAGS=$(OS_LIB_CFLAGS) +OS_APP_CFLAGS=$(OS_LIB_CFLAGS) -O0 -g OS_LDFLAGS =\ -framework IOKit -framework CoreFoundation |