diff options
-rw-r--r-- | development/acpica/acpica.SlackBuild | 7 | ||||
-rw-r--r-- | development/acpica/acpica.info | 6 | ||||
-rw-r--r-- | development/acpica/pthread_build_warning_fix.patch | 16 |
3 files changed, 5 insertions, 24 deletions
diff --git a/development/acpica/acpica.SlackBuild b/development/acpica/acpica.SlackBuild index 4538713a2438..66ce32c0aef4 100644 --- a/development/acpica/acpica.SlackBuild +++ b/development/acpica/acpica.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for acpica -# Copyright 2008-2011 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2008-2012 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=acpica -VERSION=20110922 +VERSION=20120111 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -65,9 +65,6 @@ cd $PRGNAM-unix2-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . -# Fix build warning issued on 32bit systems -patch -p2 -i $CWD/pthread_build_warning_fix.patch - cd compiler CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ diff --git a/development/acpica/acpica.info b/development/acpica/acpica.info index efadac54b8e6..3a4eb53588d4 100644 --- a/development/acpica/acpica.info +++ b/development/acpica/acpica.info @@ -1,8 +1,8 @@ PRGNAM="acpica" -VERSION="20110922" +VERSION="20120111" HOMEPAGE="http://www.acpica.org" -DOWNLOAD="http://www.acpica.org/download/acpica-unix2-20110922.tar.gz" -MD5SUM="4edb0fb51f2020149e0f8d7b09f3e848" +DOWNLOAD="http://www.acpica.org/download/acpica-unix2-20120111.tar.gz" +MD5SUM="1a5132b9f0e419a853d6033d187cc47f" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Heinz Wiesinger" diff --git a/development/acpica/pthread_build_warning_fix.patch b/development/acpica/pthread_build_warning_fix.patch deleted file mode 100644 index 675bc17e390a..000000000000 --- a/development/acpica/pthread_build_warning_fix.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/source/os_specific/service_layers/osunixxf.c b/source/os_specific/service_layers/osunixxf.c -index 1698139..fbe02b7 100644 ---- a/source/os_specific/service_layers/osunixxf.c -+++ b/source/os_specific/service_layers/osunixxf.c -@@ -1243,8 +1243,10 @@ ACPI_THREAD_ID - AcpiOsGetThreadId ( - void) - { -+ pthread_t thread; - -- return (ACPI_CAST_PTHREAD_T (pthread_self())); -+ thread = pthread_self(); -+ return (ACPI_CAST_PTHREAD_T (thread)); - } - - |