File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,8 +75,10 @@ addons:
7575 - cscope
7676
7777before_install :
78- - pip install --user cpp-coveralls
79- - pip install --user requests[security]
78+ - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi
79+ # needed for https support for coveralls
80+ # building cffi only works with gcc, not with clang
81+ - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi
8082 # Lua is not installed on Travis OSX
8183 - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
8284
Original file line number Diff line number Diff line change @@ -764,6 +764,8 @@ static char *(features[]) =
764764
765765static int included_patches [] =
766766{ /* Add new patch number below this line */
767+ /**/
768+ 240 ,
767769/**/
768770 239 ,
769771/**/
You can’t perform that action at this time.
0 commit comments