Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 1374da3

Browse files
authored
Merge branch 'master' into packedheaders
2 parents 5928690 + 64645ce commit 1374da3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ env:
1515
before_install:
1616
- test "${TRAVIS_BRANCH}" != 'coverity_scan' -o "${TRAVIS_JOB_NUMBER##*.}" = '1' || exit 0
1717
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
18+
- |
19+
sudo systemctl stop apt-daily.service &&
20+
sudo systemctl kill --kill-who=all apt-daily.service &&
21+
while ! (systemctl list-units --all apt-daily.service | fgrep -q dead) ; do
22+
sleep 1
23+
done
1824
- pip install --user cpp-coveralls
1925
- sudo apt-get -qq update
2026
- sudo apt-get install -y build-essential

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ if get_option('with_x11') != 'no'
6969
version : libva_version,
7070
required : get_option('with_x11') == 'yes')
7171

72-
HAVE_X11 = libva_x11_dep.found()
72+
WITH_X11 = libva_x11_dep.found()
7373
endif
7474

7575
WITH_WAYLAND = false

0 commit comments

Comments
 (0)