We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79cbdcb commit e3505dfCopy full SHA for e3505df
2 files changed
.travis.yml
@@ -69,6 +69,12 @@ before_install:
69
# Lua is not installed on Travis OSX
70
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
71
72
+# Start virtual framebuffer to be able to test the GUI.
73
+before_script:
74
+ - "export DISPLAY=:99.0"
75
+ - "sh -e /etc/init.d/xvfb start"
76
+ - sleep 3 # give xvfb some time to start
77
+
78
script:
79
- NPROC=$(getconf _NPROCESSORS_ONLN)
80
- if [ "$CHECK_AUTOCONF" = "yes" -a "$CC" = "gcc" ]; then make -C src autoconf; fi
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 77,
769
/**/
770
76,
771
0 commit comments