Date: Sat, 7 Mar 2009 03:04:06 +0000 (UTC) From: Tim Kientzle <kientzle@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r189480 - head/lib/libarchive Message-ID: <200903070304.n27346Gl036790@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kientzle Date: Sat Mar 7 03:04:06 2009 New Revision: 189480 URL: http://svn.freebsd.org/changeset/base/189480 Log: Merge r540 from libarchive.googlecode.com: Interix doesn't have inttypes.h either. <sigh> Modified: head/lib/libarchive/archive.h Modified: head/lib/libarchive/archive.h ============================================================================== --- head/lib/libarchive/archive.h Sat Mar 7 03:00:44 2009 (r189479) +++ head/lib/libarchive/archive.h Sat Mar 7 03:04:06 2009 (r189480) @@ -38,8 +38,8 @@ #include <sys/stat.h> #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 * */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903070304.n27346Gl036790>