svn commit: r191174 - head/lib/libarchive

Tim Kientzle kientzle at FreeBSD.org
Fri Apr 17 00:57:13 UTC 2009


Author: kientzle
Date: Fri Apr 17 00:57:11 2009
New Revision: 191174
URL: http://svn.freebsd.org/changeset/base/191174

Log:
  Minor fix: some platforms require both inttypes.h and stdint.h.

Modified:
  head/lib/libarchive/archive_platform.h

Modified: head/lib/libarchive/archive_platform.h
==============================================================================
--- head/lib/libarchive/archive_platform.h	Fri Apr 17 00:55:52 2009	(r191173)
+++ head/lib/libarchive/archive_platform.h	Fri Apr 17 00:57:11 2009	(r191174)
@@ -67,7 +67,8 @@
 /* Try to get standard C99-style integer type definitions. */
 #if HAVE_INTTYPES_H
 #include <inttypes.h>
-#elif HAVE_STDINT_H
+#endif
+#if HAVE_STDINT_H
 #include <stdint.h>
 #endif
 


More information about the svn-src-all mailing list