diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2012-01-22 14:03:54 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-01-22 14:03:54 -0600 |
commit | 8987c01ffece94525334457e7ee19c247e337966 (patch) | |
tree | 285761f7b5769879467e8d8202661992c9f757bc /development | |
parent | 2b3562119e3191668cac47875010a5e784435c2b (diff) | |
download | slackbuilds-8987c01ffece94525334457e7ee19c247e337966.tar.gz |
development/acpica: Updated for version 20120111.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development')
-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 4538713a24..66ce32c0ae 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 efadac54b8..3a4eb53588 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 675bc17e39..0000000000 --- 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)); - } - - |