From 2241f786d21ad50982d314ced6ef1911d725f0a44a611a5d2a03d31c5253ae87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Mon, 19 Nov 2012 16:38:36 +0000 Subject: [PATCH] Accepting request 141938 from home:k0da:ppc - fix defined but not used variable error on bigendian machines (libmemcached-bigendian.patch) OBS-URL: https://build.opensuse.org/request/show/141938 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmemcached?expand=0&rev=31 --- libmemcached-bigendian.patch | 21 +++++++++++++++++++++ libmemcached.changes | 6 ++++++ libmemcached.spec | 2 ++ 3 files changed, 29 insertions(+) create mode 100644 libmemcached-bigendian.patch diff --git a/libmemcached-bigendian.patch b/libmemcached-bigendian.patch new file mode 100644 index 0000000..c695d41 --- /dev/null +++ b/libmemcached-bigendian.patch @@ -0,0 +1,21 @@ +Index: libmemcached-1.0.11/libhashkit/jenkins.cc +=================================================================== +--- libmemcached-1.0.11.orig/libhashkit/jenkins.cc ++++ libmemcached-1.0.11/libhashkit/jenkins.cc +@@ -59,12 +59,13 @@ In which case, the hash table should hav + uint32_t hashkit_jenkins(const char *key, size_t length, void *) + { + uint32_t a,b,c; /* internal state */ +- union { const void *ptr; size_t i; } u; /* needed for Mac Powerbook G4 */ +- ++#ifndef WORDS_BIGENDIAN ++ union { const void *ptr; size_t i; } u; ++ u.ptr = key; ++#endif + /* Set up the internal state */ + a = b = c = 0xdeadbeef + ((uint32_t)length) + JENKINS_INITVAL; + +- u.ptr = key; + #ifndef WORDS_BIGENDIAN + if ((u.i & 0x3) == 0) + { diff --git a/libmemcached.changes b/libmemcached.changes index 1040149..a078043 100644 --- a/libmemcached.changes +++ b/libmemcached.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 19 16:19:25 UTC 2012 - dvaleev@suse.com + +- fix defined but not used variable error on bigendian machines + (libmemcached-bigendian.patch) + ------------------------------------------------------------------- Fri Oct 5 09:51:40 UTC 2012 - coolo@suse.com diff --git a/libmemcached.spec b/libmemcached.spec index d2260d8..9568069 100644 --- a/libmemcached.spec +++ b/libmemcached.spec @@ -26,6 +26,7 @@ Release: 0 Url: http://libmemcached.org Source0: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz Source1: https://launchpad.net/libmemcached/1.0/%{version}/+download/libmemcached-%{version}.tar.gz.asc +Patch0: libmemcached-bigendian.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # List of additional build dependencies BuildRequires: gcc-c++ @@ -81,6 +82,7 @@ methods. %prep %setup -q +%patch0 -p1 %build %configure --with-memcached=%{_sbindir}/memcached --disable-static --with-pic