You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Create .travis.yml
* Add development dependencies
* Remove enable-maintainer-mode
* Fix include path detection
Use the TCL_INCLUDE_SPEC variable from tclConfig.sh to find tcl.h
* Save after every history addition. (#2)
* Save after every history addition.
* Make autosave optional and off by default.
* Document autosave in the sample tclshrc
* Be nicer to the end user and accept anything boolean looking for autosave
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
11
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install tcl-tk; fi
12
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --force --overwrite tcl-tk; fi
13
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install readline; fi
14
+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y tcl8.6-dev; fi
15
+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y lib64readline6-dev; fi
16
+
17
+
script:
18
+
- autoreconf -vi
19
+
- if [ -f /usr/local/lib/tclConfig.sh ]; then ./configure --with-readline-includes=/usr/local/Cellar/readline/7.0.3_1/include --with-readline-library=/usr/local/Cellar/readline/7.0.3_1/lib --with-tcl=/usr/local/lib; else ./configure; fi
0 commit comments