summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2015-02-04 16:14:26 +0100
committerSlávek Banko <slavek.banko@axis.cz>2015-02-04 16:14:26 +0100
commit8b62fe850864075fe72913c77dd0d0c02d7c4c59 (patch)
treefd4e826bc75edc7e159572a75898af4e3131eb29
parent1ca792dcaba5a09e2b642ace797987098fc4d616 (diff)
downloadtdenetwork-8b62fe85.tar.gz
tdenetwork-8b62fe85.zip
Remove obsolete hack for 64 bit int types in kopete/motionawayplugin
This resolves FTBFS on ppc64el Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--kopete/plugins/motionautoaway/motionawayplugin.cpp26
1 files changed, 0 insertions, 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 <linux/version.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,50)