diff options
Diffstat (limited to 'Build/source/texk/dvipdfmx/dvipdfmx-20110311-PATCHES/patch-03-uint32_t')
-rw-r--r-- | Build/source/texk/dvipdfmx/dvipdfmx-20110311-PATCHES/patch-03-uint32_t | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Build/source/texk/dvipdfmx/dvipdfmx-20110311-PATCHES/patch-03-uint32_t b/Build/source/texk/dvipdfmx/dvipdfmx-20110311-PATCHES/patch-03-uint32_t deleted file mode 100644 index 0827d040027..00000000000 --- a/Build/source/texk/dvipdfmx/dvipdfmx-20110311-PATCHES/patch-03-uint32_t +++ /dev/null @@ -1,32 +0,0 @@ -diff -ur dvipdfmx-20110311.orig/configure.in dvipdfmx-20110311/configure.in ---- dvipdfmx-20110311.orig/configure.in 2011-03-11 04:14:28.000000000 +0100 -+++ dvipdfmx-20110311/configure.in 2011-07-13 10:10:18.000000000 +0200 -@@ -95,6 +95,7 @@ - AC_STRUCT_TM - AC_STRUCT_TIMEZONE - AC_C_BIGENDIAN -+AC_TYPE_UINT32_T - - AC_CHECK_SIZEOF(char) - AC_CHECK_SIZEOF(short) -diff -ur dvipdfmx-20110311.orig/src/dpxcrypt.c dvipdfmx-20110311/src/dpxcrypt.c ---- dvipdfmx-20110311.orig/src/dpxcrypt.c 2011-03-11 04:12:23.000000000 +0100 -+++ dvipdfmx-20110311/src/dpxcrypt.c 2011-06-15 19:16:14.000000000 +0200 -@@ -24,8 +24,16 @@ - #include "config.h" - #endif - --#include <stdint.h> -+#ifdef HAVE_SYS_TYPES_H -+# include <sys/types.h> -+#endif - #include <string.h> -+#ifdef HAVE_INTTYPES_H -+# include <inttypes.h> -+#endif -+#ifdef HAVE_STDINT_H -+# include <stdint.h> -+#endif - - #include "dpxcrypt.h" - |