summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-29 08:57:53 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-29 08:57:53 (GMT)
commitbee15f4a247d30e3e4376247df154803efecf42c (patch)
tree9b7fe02b960f06f5e2e0376f0868d5efc87eb121 /.travis.yml
parenta35ac4a4ae6900477fd6a77dd071ad98593ed5ff (diff)
downloadtk-bee15f4a247d30e3e4376247df154803efecf42c.zip
tk-bee15f4a247d30e3e4376247df154803efecf42c.tar.gz
tk-bee15f4a247d30e3e4376247df154803efecf42c.tar.bz2
It appears that xcode 9/10 need "update: true" for a new enough tcl-tk installation
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 9a91920..da271b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -180,6 +180,11 @@ jobs:
- name: "macOS/Xcode 10/Shared"
os: osx
osx_image: xcode10.3
+ addons:
+ homebrew:
+ packages:
+ - tcl-tk
+ update: true
env:
- BUILD_DIR=unix
- CFGOPT="--with-tcl=/usr/local/opt/tcl-tk/lib --enable-aqua CFLAGS=-I/usr/local/opt/tcl-tk/include CPPFLAGS=-mmacosx-version-min=10.14"
@@ -189,6 +194,11 @@ jobs:
- name: "macOS/Xcode 9/Shared"
os: osx
osx_image: xcode9.4
+ addons:
+ homebrew:
+ packages:
+ - tcl-tk
+ update: true
env:
- BUILD_DIR=unix
- CFGOPT="--with-tcl=/usr/local/opt/tcl-tk/lib --enable-aqua CFLAGS=-I/usr/local/opt/tcl-tk/include CPPFLAGS=-mmacosx-version-min=10.13"