[pulseaudio-commits] 2 commits - src/daemon .travis.yml

Arun Raghavan arun at kemper.freedesktop.org
Sun Dec 20 21:51:58 PST 2015


 .travis.yml       |   10 ++++++----
 src/daemon/main.c |    4 ++--
 2 files changed, 8 insertions(+), 6 deletions(-)

New commits:
commit b1fe42bb3fd7508e7ae0e1d4a6e602ea02b9d7cc
Author: Arun Raghavan <git at arunraghavan.net>
Date:   Mon Dec 21 10:54:58 2015 +0530

    daemon: Sanitise message about unsupported high res timers

diff --git a/src/daemon/main.c b/src/daemon/main.c
index c7b15e7..c2f47b6 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -998,9 +998,9 @@ int main(int argc, char *argv[]) {
     pa_disable_sigpipe();
 
     if (pa_rtclock_hrtimer())
-        pa_log_info("Fresh high-resolution timers available! Bon appetit.");
+        pa_log_info("System supports high resolution timers");
     else
-        pa_log_info("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled.");
+        pa_log_info("System appears to not support high resolution timers");
 
     if (conf->lock_memory) {
 #if defined(HAVE_SYS_MMAN_H) && !defined(__ANDROID__)

commit 2dbd6c0fe375db3a00f4a30c5436bf5a8442b42c
Author: Arun Raghavan <git at arunraghavan.net>
Date:   Mon Dec 21 11:08:25 2015 +0530

    build: Move to using Travis trusty images

diff --git a/.travis.yml b/.travis.yml
index fa43c4f..456cfb5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,7 @@
+# use the trusty beta
+sudo: required
+dist: trusty
+
 language: c
 
 compiler:
@@ -5,11 +9,9 @@ compiler:
  #- clang
 
 before_install:
-  - sudo sh -c 'echo "deb http://archive.ubuntu.com/ubuntu/ trusty main universe\ndeb-src http://archive.ubuntu.com/ubuntu/ trusty main universe" >> /etc/apt/sources.list'
-  - sudo apt-get -qq update
-install:
+  - sudo apt-get -qq -y update
   - >
-    sudo apt-get -qq install
+    sudo apt-get -qq -y install
     git-core
     autopoint
     autoconf



More information about the pulseaudio-commits mailing list