development/acpica: Updated for version 20120111.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Heinz Wiesinger 2012-01-22 14:03:54 -06:00 committed by Robby Workman
parent 2b3562119e
commit 8987c01ffe
3 changed files with 5 additions and 24 deletions

View File

@ -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" \

View File

@ -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"

View File

@ -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));
}