diff options
author | Kevin Walzer <kw@codebykevin.com> | 2014-03-16 21:18:22 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2014-03-16 21:18:22 (GMT) |
commit | 7f35489789c22f3ffecf0bb04fee535339e0a771 (patch) | |
tree | c8c1bb2f71d24d918af27b84785cf4435c2108b6 /unix | |
parent | f7d16318aae20d960e3c9a993cc28a8174359486 (diff) | |
download | tk-7f35489789c22f3ffecf0bb04fee535339e0a771.zip tk-7f35489789c22f3ffecf0bb04fee535339e0a771.tar.gz tk-7f35489789c22f3ffecf0bb04fee535339e0a771.tar.bz2 |
Update configure files on Aqua to remove garbage collection flag, which is no longer supported with Xcode 5.1; also add key to Wish Info.plist to support high-resolution (Retina) displays.
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index ab4f9f6..ad9b051 100755 --- a/unix/configure +++ b/unix/configure @@ -9631,7 +9631,7 @@ cat >>confdefs.h <<\_ACEOF _ACEOF LIBS="$LIBS -framework Cocoa -framework Carbon -framework IOKit" - EXTRA_CC_SWITCHES='-std=gnu99 -x objective-c -fobjc-gc' + EXTRA_CC_SWITCHES='-std=gnu99 -x objective-c ' TK_WINDOWINGSYSTEM=AQUA if test -n "${enable_symbols}" -a "${enable_symbols}" != no; then diff --git a/unix/configure.in b/unix/configure.in index 948eae2..4527612 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -369,7 +369,7 @@ fi if test $tk_aqua = yes; then AC_DEFINE(MAC_OSX_TK, 1, [Are we building TkAqua?]) LIBS="$LIBS -framework Cocoa -framework Carbon -framework IOKit" - EXTRA_CC_SWITCHES='-std=gnu99 -x objective-c -fobjc-gc' + EXTRA_CC_SWITCHES='-std=gnu99 -x objective-c' TK_WINDOWINGSYSTEM=AQUA if test -n "${enable_symbols}" -a "${enable_symbols}" != no; then AC_DEFINE(TK_MAC_DEBUG, 1, [Are TkAqua debug messages enabled?]) |