diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-03 18:26:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-03 18:26:50 +0000 |
commit | 440525b2cca37ec3c8fa41bca52a23eabd11833c (patch) | |
tree | c4d732345f465cc9069a85ab877a2ee0deb65683 /archivers/libarchive/files | |
parent | a2b0ff180c2041eadcaade822c73e4c18eb519bf (diff) | |
download | pkgsrc-440525b2cca37ec3c8fa41bca52a23eabd11833c.tar.gz |
No inttypes.h on SFU. From Hiroyuki Bessho in PR 40451.
Diffstat (limited to 'archivers/libarchive/files')
-rw-r--r-- | archivers/libarchive/files/libarchive/archive.h | 4 |
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 * */ |