[pulseaudio-commits] src/daemon src/pulsecore

Arun Raghavan arun at kemper.freedesktop.org
Fri Oct 4 21:20:36 PDT 2013


 src/daemon/main.c         |    2 +-
 src/pulsecore/core-util.c |    6 +++---
 src/pulsecore/rtkit.c     |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 35fea579cbe4c14d4a582e30a67f41242a542b09
Author: Anton Lundin <glance at acc.umu.se>
Date:   Wed Sep 18 16:22:00 2013 +0200

    build-sys: Fix building with Android toolchain
    
    Signed-off-by: Anton Lundin <glance at acc.umu.se>

diff --git a/src/daemon/main.c b/src/daemon/main.c
index 5b4e005..730c3a3 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -1003,7 +1003,7 @@ int main(int argc, char *argv[]) {
         pa_log_info(_("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!"));
 
     if (conf->lock_memory) {
-#ifdef HAVE_SYS_MMAN_H
+#if defined(HAVE_SYS_MMAN_H) && !defined(__ANDROID__)
         if (mlockall(MCL_FUTURE) < 0)
             pa_log_warn("mlockall() failed: %s", pa_cstrerror(errno));
         else
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c
index 19f1a83..e925918 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -117,7 +117,7 @@
 #include "rtkit.h"
 #endif
 
-#ifdef __linux__
+#if defined(__linux__) && !defined(__ANDROID__)
 #include <sys/personality.h>
 #endif
 
@@ -2939,7 +2939,7 @@ char *pa_machine_id(void) {
     if ((h = pa_get_host_name_malloc()))
         return h;
 
-#ifndef OS_IS_WIN32
+#if !defined(OS_IS_WIN32) && !defined(__ANDROID__)
     /* If no hostname was set we use the POSIX hostid. It's usually
      * the IPv4 address.  Might not be that stable. */
     return pa_sprintf_malloc("%08lx", (unsigned long) gethostid());
@@ -3226,7 +3226,7 @@ size_t pa_pipe_buf(int fd) {
 
 void pa_reset_personality(void) {
 
-#ifdef __linux__
+#if defined(__linux__) && !defined(__ANDROID__)
     if (personality(PER_LINUX) < 0)
         pa_log_warn("Uh, personality() failed: %s", pa_cstrerror(errno));
 #endif
diff --git a/src/pulsecore/rtkit.c b/src/pulsecore/rtkit.c
index d47610f..2b7eb6a 100644
--- a/src/pulsecore/rtkit.c
+++ b/src/pulsecore/rtkit.c
@@ -29,7 +29,7 @@
 
 #include "rtkit.h"
 
-#ifdef __linux__
+#if defined(__linux__) && !defined(__ANDROID__)
 
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE



More information about the pulseaudio-commits mailing list