Leonid Plyushch
5 years ago
committed by
GitHub
12 changed files with 36 additions and 41 deletions
@ -0,0 +1,22 @@ |
|||||
|
From e4450d8b586103ec1414e2d6245ff34a9096d97a Mon Sep 17 00:00:00 2001 |
||||
|
From: Peter Levine <plevine457@gmail.com> |
||||
|
Date: Thu, 26 Sep 2019 07:24:40 +0000 |
||||
|
Subject: [PATCH] atomic: Explicitly cast void* to unsigned long |
||||
|
|
||||
|
|
||||
|
diff --git a/src/pulsecore/atomic.h b/src/pulsecore/atomic.h
|
||||
|
index a82ca83c5..e5c140109 100644
|
||||
|
--- a/src/pulsecore/atomic.h
|
||||
|
+++ b/src/pulsecore/atomic.h
|
||||
|
@@ -117,7 +117,7 @@ static inline void* pa_atomic_ptr_load(const pa_atomic_ptr_t *a) {
|
||||
|
} |
||||
|
|
||||
|
static inline void pa_atomic_ptr_store(pa_atomic_ptr_t *a, void* p) { |
||||
|
- __atomic_store_n(&a->value, p, __ATOMIC_SEQ_CST);
|
||||
|
+ __atomic_store_n(&a->value, (unsigned long) p, __ATOMIC_SEQ_CST);
|
||||
|
} |
||||
|
|
||||
|
#else |
||||
|
--
|
||||
|
2.23.0 |
||||
|
|
@ -1,19 +0,0 @@ |
|||||
diff -u -r ../pulseaudio-12.2/bootstrap.sh ./bootstrap.sh
|
|
||||
--- ../pulseaudio-12.2/bootstrap.sh 2018-07-16 14:40:33.000000000 +0000
|
|
||||
+++ ./bootstrap.sh 2018-11-27 23:12:39.509242963 +0000
|
|
||||
@@ -35,15 +35,10 @@
|
|
||||
exit 1 |
|
||||
fi |
|
||||
# Other necessary programs |
|
||||
-if ! autopoint --version &>/dev/null ; then
|
|
||||
- echo "autopoint is required to bootstrap this program"
|
|
||||
- exit 1
|
|
||||
-fi
|
|
||||
if ! intltoolize --version >/dev/null ; then |
|
||||
echo "intltoolize is required to bootstrap this program" |
|
||||
exit 1 |
|
||||
fi |
|
||||
-autopoint --force
|
|
||||
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose |
|
||||
|
|
||||
if test "x$NOCONFIGURE" = "x"; then |
|
Loading…
Reference in new issue