Date: Fri, 17 Apr 2009 00:57:11 +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: r191174 - head/lib/libarchive Message-ID: <200904170057.n3H0vBGN099345@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904170057.n3H0vBGN099345>