diff options
author | obache <obache@pkgsrc.org> | 2009-09-16 06:55:45 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2009-09-16 06:55:45 +0000 |
commit | 3a192abff2c25c3def5ad5f8d374b9675b02035c (patch) | |
tree | fd45f22208cb3b91d5ebe5376c15edeeaec53640 /archivers | |
parent | 79a9aecca691ddfc64a598cf712bb22e88908e04 (diff) | |
download | pkgsrc-3a192abff2c25c3def5ad5f8d374b9675b02035c.tar.gz |
include both inttypes.h and stdint.h. patch taken from upstream r897.
Fixes build failure on SUA 6.0.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/libarchive/files/libarchive/archive_platform.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archivers/libarchive/files/libarchive/archive_platform.h b/archivers/libarchive/files/libarchive/archive_platform.h index 99dfacc50f5..f314644f757 100644 --- a/archivers/libarchive/files/libarchive/archive_platform.h +++ b/archivers/libarchive/files/libarchive/archive_platform.h @@ -70,7 +70,8 @@ /* Try to get standard C99-style integer type definitions. */ #if HAVE_INTTYPES_H #include <inttypes.h> -#elif HAVE_STDINT_H +#endif +#if HAVE_STDINT_H #include <stdint.h> #endif |