aboutsummaryrefslogtreecommitdiff
path: root/graphics/jasper/files
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-09-20 17:57:05 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-09-20 17:57:05 +0000
commit902041e909c7fd5150e621828443d5466310b225 (patch)
treef13c52ebb7f2d529b513a6d1e64b397e5ad68b53 /graphics/jasper/files
parentc79372c0c67394a15d1cec1d74edfb8a261d839e (diff)
downloadports-902041e909c7fd5150e621828443d5466310b225.tar.gz
ports-902041e909c7fd5150e621828443d5466310b225.zip
Notes
Diffstat (limited to 'graphics/jasper/files')
-rw-r--r--graphics/jasper/files/patch-src-libjasper-include-jasper-jas_types.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/graphics/jasper/files/patch-src-libjasper-include-jasper-jas_types.h b/graphics/jasper/files/patch-src-libjasper-include-jasper-jas_types.h
new file mode 100644
index 000000000000..4d0f855e51fb
--- /dev/null
+++ b/graphics/jasper/files/patch-src-libjasper-include-jasper-jas_types.h
@@ -0,0 +1,43 @@
+--- src/libjasper/include/jasper/jas_types.h.orig Tue Jan 15 17:07:34 2002
++++ src/libjasper/include/jasper/jas_types.h Fri Sep 6 07:22:09 2002
+@@ -204,7 +204,7 @@
+ #endif
+ /**********/
+ #if !defined(UINT_FAST8_MIN)
+-typedef uchar uint_fast8_t;
++typedef unsigned char uint_fast8_t;
+ #define UINT_FAST8_MIN 0
+ #define UINT_FAST8_MAX 255
+ #endif
+@@ -216,7 +216,7 @@
+ #endif
+ /**********/
+ #if !defined(UINT_FAST16_MIN)
+-typedef ushort uint_fast16_t;
++typedef unsigned short uint_fast16_t;
+ #define UINT_FAST16_MIN USHRT_MIN
+ #define UINT_FAST16_MAX USHRT_MAX
+ #endif
+@@ -228,19 +228,19 @@
+ #endif
+ /**********/
+ #if !defined(UINT_FAST32_MIN)
+-typedef uint uint_fast32_t;
++typedef unsigned int uint_fast32_t;
+ #define UINT_FAST32_MIN UINT_MIN
+ #define UINT_FAST32_MAX UINT_MAX
+ #endif
+ /**********/
+ #if !defined(INT_FAST64_MIN)
+-typedef longlong int_fast64_t;
++typedef long long int_fast64_t;
+ #define INT_FAST64_MIN LLONG_MIN
+ #define INT_FAST64_MAX LLONG_MAX
+ #endif
+ /**********/
+ #if !defined(UINT_FAST64_MIN)
+-typedef ulonglong uint_fast64_t;
++typedef unsigned long long uint_fast64_t;
+ #define UINT_FAST64_MIN ULLONG_MIN
+ #define UINT_FAST64_MAX ULLONG_MAX
+ #endif