diff options
author | culler <culler> | 2021-04-24 19:47:30 (GMT) |
---|---|---|
committer | culler <culler> | 2021-04-24 19:47:30 (GMT) |
commit | e3f627385b02a29326439ffe0159930466944f6a (patch) | |
tree | 5bfc8d0d039e088f78ba455608f4093cd736b7a1 /unix | |
parent | 64594c2a80336e1a00dc711942a4ed5fb5dd0e98 (diff) | |
download | tk-e3f627385b02a29326439ffe0159930466944f6a.zip tk-e3f627385b02a29326439ffe0159930466944f6a.tar.gz tk-e3f627385b02a29326439ffe0159930466944f6a.tar.bz2 |
Possibly a genuine fix - use an explicit CALayer for the TKContentView.
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 45c215e..691d43b 100755 --- a/unix/configure +++ b/unix/configure @@ -9385,7 +9385,7 @@ cat >>confdefs.h <<\_ACEOF #define MAC_OSX_TK 1 _ACEOF - LIBS="$LIBS -framework Cocoa -framework Carbon -framework IOKit" + LIBS="$LIBS -framework Cocoa -framework Carbon -framework IOKit -framework QuartzCore" 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 78dd688..9720b91 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -354,7 +354,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" + LIBS="$LIBS -framework Cocoa -framework Carbon -framework IOKit -framework QuartzCore" EXTRA_CC_SWITCHES='-std=gnu99 -x objective-c' TK_WINDOWINGSYSTEM=AQUA if test -n "${enable_symbols}" -a "${enable_symbols}" != no; then |