소스 검색

Fix #280: Travis Build - Vim Fails To Compile

* Build broken by some gui_gtk link problem.
Jeremy Pallats/starcraft.man 10 년 전
부모
커밋
675b09dbfc
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      .travis.yml

+ 3 - 3
.travis.yml

@@ -16,12 +16,12 @@ before_script: |
     cd vim
     if [ $(ruby -e 'puts RUBY_VERSION') = 1.9.3 ]; then
       sudo apt-get install -y python2.7-dev
-      ./configure --with-features=huge --enable-pythoninterp
+      ./configure --disable-gui --with-features=huge --enable-pythoninterp
     elif [ $(ruby -e 'puts RUBY_VERSION') = 2.1.0 ]; then
       sudo apt-get install -y python3-dev
-      ./configure --with-features=huge --enable-python3interp
+      ./configure --disable-gui --with-features=huge --enable-python3interp
     else
-      ./configure --with-features=huge --enable-rubyinterp
+      ./configure --disable-gui --with-features=huge --enable-rubyinterp
     fi
     make
     sudo make install