summaryrefslogtreecommitdiffstats
path: root/redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2013-07-26 09:53:33 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2013-07-26 09:53:33 +0200
commita6addf0c3f16eff1463d765975721a92e69c053b (patch)
tree7fbe8636b75d9e4c5594a02fede95a18e41e53dd /redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch
parent8b0482ca988f8036b84d093f89453f3235fda484 (diff)
downloadtde-packaging-a6addf0c3f16eff1463d765975721a92e69c053b.tar.gz
tde-packaging-a6addf0c3f16eff1463d765975721a92e69c053b.zip
RPM Packaging: some updates
Diffstat (limited to 'redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch')
-rw-r--r--redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch b/redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch
new file mode 100644
index 000000000..96aa0f38f
--- /dev/null
+++ b/redhat/extras/akode/akode-2.0.2-fix_ftbfs.patch
@@ -0,0 +1,20 @@
+--- ./akode/lib/akodelib.h.ORI 2013-07-25 11:49:19.524457787 +0200
++++ ./akode/lib/akodelib.h 2013-07-25 11:49:23.056360414 +0200
+@@ -34,13 +34,13 @@
+ #include <inttypes.h>
+ #else
+ typedef signed char int8_t;
+-typedef unsigned char int8_t;
++typedef unsigned char uint8_t;
+ typedef signed short int16_t;
+-typedef unsigned short int16_t;
++typedef unsigned short uint16_t;
+ typedef signed int int32_t;
+ typedef unsigned int uint32_t;
+-typedef signed long long int64_t;
+-typedef unsigned long long uint64_t;
++typedef signed long int64_t;
++typedef unsigned long uint64_t;
+ #endif
+
+ #endif