summaryrefslogtreecommitdiff
path: root/archivers/libarchive
diff options
context:
space:
mode:
authorjoerg <joerg>2009-02-03 18:26:50 +0000
committerjoerg <joerg>2009-02-03 18:26:50 +0000
commit23632f5cbc38a4dd0c2847dc0a0fe14b50f9861f (patch)
treec4d732345f465cc9069a85ab877a2ee0deb65683 /archivers/libarchive
parentf21e4a84f10a80bf26ddbca7ffab439f84e4839f (diff)
downloadpkgsrc-23632f5cbc38a4dd0c2847dc0a0fe14b50f9861f.tar.gz
No inttypes.h on SFU. From Hiroyuki Bessho in PR 40451.
Diffstat (limited to 'archivers/libarchive')
-rw-r--r--archivers/libarchive/files/libarchive/archive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/libarchive/files/libarchive/archive.h b/archivers/libarchive/files/libarchive/archive.h
index 3f9f6e1cf67..43b043ecd06 100644
--- a/archivers/libarchive/files/libarchive/archive.h
+++ b/archivers/libarchive/files/libarchive/archive.h
@@ -37,8 +37,8 @@
*/
#include <sys/types.h> /* Linux requires this for off_t */
-#if !defined(__WATCOMC__) && !defined(_MSC_VER)
-/* Header unavailable on Watcom C or MS Visual C++. */
+#if !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX)
+/* Header unavailable on Watcom C or MS Visual C++ or SFU. */
#include <inttypes.h> /* int64_t, etc. */
#endif
#include <stdio.h> /* For FILE * */