summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2010-09-06 01:18:06 +0000
committerTheo Chatzimichos <tampakrap@gentoo.org>2010-09-06 01:18:06 +0000
commit2b499882cf88f3d9425ef1e9021253075eee0401 (patch)
treee31b29de55b5ab45c9acee6575d90ff79313c6d5 /kde-base/kstars/files
parentVersion bump KDE SC 4.5.1 (diff)
downloadgentoo-2-2b499882cf88f3d9425ef1e9021253075eee0401.tar.gz
gentoo-2-2b499882cf88f3d9425ef1e9021253075eee0401.tar.bz2
gentoo-2-2b499882cf88f3d9425ef1e9021253075eee0401.zip
Version bump KDE SC 4.5.1
(Portage version: 2.2_rc75/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'kde-base/kstars/files')
-rw-r--r--kde-base/kstars/files/kstars-4.4.65-solaris.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/kde-base/kstars/files/kstars-4.4.65-solaris.patch b/kde-base/kstars/files/kstars-4.4.65-solaris.patch
new file mode 100644
index 000000000000..0773f55f5f25
--- /dev/null
+++ b/kde-base/kstars/files/kstars-4.4.65-solaris.patch
@@ -0,0 +1,13 @@
+--- kstars-4.4.65.orig/kstars/kstars/skycomponents/starcomponent.cpp
++++ kstars-4.4.65/kstars/kstars/skycomponents/starcomponent.cpp
+@@ -40,6 +40,10 @@
+ #include <sys/endian.h>
+ #define bswap_16(x) bswap16(x)
+ #define bswap_32(x) bswap32(x)
++#elif defined(__sun)
++#include <sys/byteorder.h>
++#define bswap_16(x) BSWAP_16(x)
++#define bswap_32(x) BSWAP_32(x)
+ #else
+ #include "byteorder.h"
+ #endif