From owner-svn-soc-all@FreeBSD.ORG Mon Jul 25 06:53:59 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 5E81B1065670 for ; Mon, 25 Jul 2011 06:53:57 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 25 Jul 2011 06:53:57 +0000 Date: Mon, 25 Jul 2011 06:53:57 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110725065357.5E81B1065670@hub.freebsd.org> Cc: Subject: socsvn commit: r224527 - soc2011/gk/ino64-head/lib/libc/gen X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jul 2011 06:53:59 -0000 Author: gk Date: Mon Jul 25 06:53:57 2011 New Revision: 224527 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224527 Log: Rename dirent-compat.h to gen-compat.h File no longer contains definitions specific to dirent Added: soc2011/gk/ino64-head/lib/libc/gen/gen-compat.h (contents, props changed) - copied, changed from r224526, soc2011/gk/ino64-head/lib/libc/gen/dirent-compat.h Deleted: soc2011/gk/ino64-head/lib/libc/gen/dirent-compat.h Modified: soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c soc2011/gk/ino64-head/lib/libc/gen/fts-compat8.c soc2011/gk/ino64-head/lib/libc/gen/getmntinfo-compat8.c soc2011/gk/ino64-head/lib/libc/gen/glob-compat8.c soc2011/gk/ino64-head/lib/libc/gen/readdir-compat8.c soc2011/gk/ino64-head/lib/libc/gen/scandir-compat8.c Modified: soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c Mon Jul 25 06:53:57 2011 (r224527) @@ -49,7 +49,7 @@ #include #include #include -#include "dirent-compat.h" +#include "gen-compat.h" #include "fts-compat.h" #include "un-namespace.h" Modified: soc2011/gk/ino64-head/lib/libc/gen/fts-compat8.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/fts-compat8.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/fts-compat8.c Mon Jul 25 06:53:57 2011 (r224527) @@ -49,7 +49,7 @@ #include #include #include -#include "dirent-compat.h" +#include "gen-compat.h" #include "fts-compat8.h" #include "un-namespace.h" Copied and modified: soc2011/gk/ino64-head/lib/libc/gen/gen-compat.h (from r224526, soc2011/gk/ino64-head/lib/libc/gen/dirent-compat.h) ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/dirent-compat.h Mon Jul 25 06:53:42 2011 (r224526, copy source) +++ soc2011/gk/ino64-head/lib/libc/gen/gen-compat.h Mon Jul 25 06:53:57 2011 (r224527) @@ -27,8 +27,8 @@ * SUCH DAMAGE. */ -#ifndef _DIRENT_COMPAT_H_ -#define _DIRENT_COMPAT_H_ +#ifndef _GEN_COMPAT_H_ +#define _GEN_COMPAT_H_ #include @@ -51,4 +51,4 @@ int freebsd8_getfsstat(struct freebsd8_statfs *, long, int); int freebsd8_getmntinfo(struct freebsd8_statfs **, int); -#endif /* _DIRENT_COMPAT_H_ */ +#endif /* _GEN_COMPAT_H_ */ Modified: soc2011/gk/ino64-head/lib/libc/gen/getmntinfo-compat8.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/getmntinfo-compat8.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/getmntinfo-compat8.c Mon Jul 25 06:53:57 2011 (r224527) @@ -38,7 +38,7 @@ #include #include -#include "dirent-compat.h" +#include "gen-compat.h" /* * Return information about mounted filesystems. Modified: soc2011/gk/ino64-head/lib/libc/gen/glob-compat8.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/glob-compat8.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/glob-compat8.c Mon Jul 25 06:53:57 2011 (r224527) @@ -84,7 +84,7 @@ #include #include "collate.h" -#include "dirent-compat.h" +#include "gen-compat.h" #include "glob-compat8.h" #define DOLLAR '$' Modified: soc2011/gk/ino64-head/lib/libc/gen/readdir-compat8.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/readdir-compat8.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/readdir-compat8.c Mon Jul 25 06:53:57 2011 (r224527) @@ -41,8 +41,8 @@ #include "un-namespace.h" #include "libc_private.h" -#include "dirent-compat.h" #include "dirent-private.h" +#include "gen-compat.h" #include "telldir.h" static int Modified: soc2011/gk/ino64-head/lib/libc/gen/scandir-compat8.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/scandir-compat8.c Mon Jul 25 06:53:42 2011 (r224526) +++ soc2011/gk/ino64-head/lib/libc/gen/scandir-compat8.c Mon Jul 25 06:53:57 2011 (r224527) @@ -36,7 +36,7 @@ #include #include "un-namespace.h" -#include "dirent-compat.h" +#include "gen-compat.h" static int alphasort_thunk(void *thunk, const void *p1, const void *p2);