diff options
Diffstat (limited to 'Build/source/texk/dvipdfmx/dvipdfmx-20110311')
-rw-r--r-- | Build/source/texk/dvipdfmx/dvipdfmx-20110311/configure.in | 1 | ||||
-rw-r--r-- | Build/source/texk/dvipdfmx/dvipdfmx-20110311/src/dpxcrypt.c | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Build/source/texk/dvipdfmx/dvipdfmx-20110311/configure.in b/Build/source/texk/dvipdfmx/dvipdfmx-20110311/configure.in index 5cf4542d705..6b91ec6c025 100644 --- a/Build/source/texk/dvipdfmx/dvipdfmx-20110311/configure.in +++ b/Build/source/texk/dvipdfmx/dvipdfmx-20110311/configure.in @@ -95,6 +95,7 @@ AC_TYPE_SIZE_T AC_STRUCT_TM AC_STRUCT_TIMEZONE AC_C_BIGENDIAN +AC_TYPE_UINT32_T AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(short) diff --git a/Build/source/texk/dvipdfmx/dvipdfmx-20110311/src/dpxcrypt.c b/Build/source/texk/dvipdfmx/dvipdfmx-20110311/src/dpxcrypt.c index 4bad1620485..b58829db9e4 100644 --- a/Build/source/texk/dvipdfmx/dvipdfmx-20110311/src/dpxcrypt.c +++ b/Build/source/texk/dvipdfmx/dvipdfmx-20110311/src/dpxcrypt.c @@ -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" |