svn commit: r189480 - head/lib/libarchive

Tim Kientzle kientzle at FreeBSD.org
Fri Mar 6 19:04:06 PST 2009


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 * */


More information about the svn-src-all mailing list