From 8b62fe850864075fe72913c77dd0d0c02d7c4c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 4 Feb 2015 16:14:26 +0100 Subject: Remove obsolete hack for 64 bit int types in kopete/motionawayplugin This resolves FTBFS on ppc64el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- kopete/plugins/motionautoaway/motionawayplugin.cpp | 26 ---------------------- 1 file changed, 26 deletions(-) diff --git a/kopete/plugins/motionautoaway/motionawayplugin.cpp b/kopete/plugins/motionautoaway/motionawayplugin.cpp index 56aed0ff..d27901f6 100644 --- a/kopete/plugins/motionautoaway/motionawayplugin.cpp +++ b/kopete/plugins/motionautoaway/motionawayplugin.cpp @@ -44,32 +44,6 @@ #include "kopeteaccountmanager.h" #include "kopeteaway.h" -/* The following is a hack: - * e.g. Mandrake 9.x ships with a patched - * kernel which doesn't define this 64 bit types (we need GNU C lib - * because we use long long and warning - gcc extensions.) - * - * This is caused by the !defined(__STRICT_ANSI__) check in - * /usr/include/asm/types.h - */ -#if !defined(__u64) && defined(__GNUC__) -#if SIZEOF_UNSIGNED_LONG >= 8 -typedef unsigned long __u64; -#else -typedef unsigned long long __u64; -#endif -#endif - -#if !defined(__s64) && defined(__GNUC__) -#if SIZEOF_LONG >= 8 -typedef signed long __s64; -#else -typedef __signed__ long long __s64; -#endif -#endif -/* - * End hack - */ #include #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,50) -- cgit v1.2.3