summaryrefslogtreecommitdiff
path: root/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-11-24 10:18:12 +0100
committerSaul Wold <sgw@linux.intel.com>2011-11-29 00:20:06 -0800
commitd48a99dc8d92e65dc7618d61187138830d85a850 (patch)
treeeaaddbe576c2b9cc5a3d21c4eb3b5161e5d58f6d /meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch
parent039e8d1f3235acae4162afad84fee6b8b3aba24e (diff)
downloadopenembedded-core-d48a99dc8d92e65dc7618d61187138830d85a850.tar.gz
openembedded-core-d48a99dc8d92e65dc7618d61187138830d85a850.tar.bz2
openembedded-core-d48a99dc8d92e65dc7618d61187138830d85a850.tar.xz
openembedded-core-d48a99dc8d92e65dc7618d61187138830d85a850.zip
pulseaudio: update to 1.1, delete 0.9.x
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch')
-rw-r--r--meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch b/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch
deleted file mode 100644
index bae0a259c..000000000
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/tls_m4.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Derived from OE by Dongxiao Xu <dongxiao.xu@intel.com>
-
-Upstream-Status: Inappropriate [configuration]
-
-Index: pulseaudio-0.9.15/m4/tls.m4
-===================================================================
---- pulseaudio-0.9.15.orig/m4/tls.m4 2008-08-19 23:25:02.000000000 +0200
-+++ pulseaudio-0.9.15/m4/tls.m4 2009-07-10 09:55:25.266365511 +0200
-@@ -1,12 +1,19 @@
- AC_DEFUN([CC_CHECK_TLS], [
- AC_CACHE_CHECK([whether $CC knows __thread for Thread-Local Storage],
- cc_cv_tls___thread,
-- [AC_COMPILE_IFELSE(
-- AC_LANG_PROGRAM(
-- [[static __thread int a = 6;]],
-- [[a = 5;]]),
-- [cc_cv_tls___thread=yes],
-- [cc_cv_tls___thread=no])
-+ [AC_LINK_IFELSE([__thread int a; int b; int main() { return a = b; }],
-+ [chktls_save_LDFLAGS="$LDFLAGS"
-+ LDFLAGS="-shared -Wl,--no-undefined $LDFLAGS"
-+ chktls_save_CFLAGS="$CFLAGS"
-+ CFLAGS="-fPIC $CFLAGS"
-+ dnl If -shared works, test if TLS works in a shared library.
-+ AC_LINK_IFELSE([int f() { return 0; }],
-+ AC_LINK_IFELSE([__thread int a; int b; int f() { return a = b; }],
-+ [cc_cv_tls___thread=yes],
-+ [cc_cv_tls___thread=no]),
-+ [cc_cv_tls___thread=yes])
-+ CFLAGS="$chktls_save_CFLAGS"
-+ LDFLAGS="$chktls_save_LDFLAGS"], [cc_cv_tls___thread=no])
- ])
-
- AS_IF([test "x$cc_cv_tls___thread" = "xyes"],