Hello community, here is the log from the commit of package acpica for openSUSE:Factory checked in at Tue Jun 21 09:23:46 CEST 2011.
-------- --- acpica/acpica.changes 2011-04-29 17:48:04.000000000 +0200 +++ /mounts/work_src_done/STABLE/acpica/acpica.changes 2011-06-20 17:48:27.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Jun 20 15:38:14 UTC 2011 - [email protected] + +- Add acpica-unix-const.patch: fix const correctness issue in + AslCompilererror, http://www.acpica.org/bugzilla/show_bug.cgi?id=923 + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- acpica-unix-const.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ acpica.spec ++++++ --- /var/tmp/diff_new_pack.QPQETm/_old 2011-06-21 09:21:51.000000000 +0200 +++ /var/tmp/diff_new_pack.QPQETm/_new 2011-06-21 09:21:51.000000000 +0200 @@ -21,7 +21,7 @@ Name: acpica Url: http://acpica.org Version: 20110316 -Release: 1 +Release: 8 License: Intel ACPI %define src_dir acpica-unix-%{version} %define dmp_ver 20110323 @@ -35,6 +35,8 @@ # PATCH-FIX-UPSTREAM acpica-unix-20110316-gcc46.patch [email protected] -- Fix compilation with gcc 4.6 Patch5: acpica-unix-20110316-gcc46.patch Patch6: acpica-no-compiletime.patch +# PATCH-FIX-UPSTREAM acpica-unix-const.patch http://www.acpica.org/bugzilla/show_bug.cgi?id=923 -- Fix const correctness +Patch7: acpica-unix-const.patch Source1: ec_access.c Source2: acpidump-%{dmp_ver}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -71,6 +73,7 @@ %patch4 -p1 %patch5 %patch6 +%patch7 %build RPM_OPT_FLAGS="$RPM_OPT_FLAGS" ++++++ acpica-unix-const.patch ++++++ --- compiler/aslerror.c 2011-03-16 17:28:12.000000000 +0100 +++ compiler/aslerror.c 2011-06-20 17:36:50.853566063 +0200 @@ -692,7 +692,7 @@ int AslCompilererror ( - char *CompilerMessage) + const char *CompilerMessage) { AslCommonError (ASL_ERROR, ASL_MSG_SYNTAX, Gbl_CurrentLineNumber, --- compiler/aslcompiler.h 2011-03-16 17:28:12.000000000 +0100 +++ compiler/aslcompiler.h 2011-06-20 17:40:14.436559081 +0200 @@ -357,7 +357,7 @@ int AslCompilererror( - char *s); + const char *s); void AslCommonError ( ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
