pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/libarchive/files/libarchive No inttypes.h on...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/880a26fec530
branches:  trunk
changeset: 553933:880a26fec530
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Feb 03 18:26:50 2009 +0000

description:
No inttypes.h on SFU. From Hiroyuki Bessho in PR 40451.

diffstat:

 archivers/libarchive/files/libarchive/archive.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 900ea020573e -r 880a26fec530 archivers/libarchive/files/libarchive/archive.h
--- a/archivers/libarchive/files/libarchive/archive.h   Tue Feb 03 15:29:46 2009 +0000
+++ b/archivers/libarchive/files/libarchive/archive.h   Tue Feb 03 18:26:50 2009 +0000
@@ -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 * */



Home | Main Index | Thread Index | Old Index