Date: Mon, 25 Jul 2011 06:53:57 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r224527 - soc2011/gk/ino64-head/lib/libc/gen Message-ID: <20110725065357.5E81B1065670@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <stdlib.h> #include <string.h> #include <unistd.h> -#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 <stdlib.h> #include <string.h> #include <unistd.h> -#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 <dirent.h> @@ -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 <sys/mount.h> #include <stdlib.h> -#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 <wchar.h> #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 <string.h> #include "un-namespace.h" -#include "dirent-compat.h" +#include "gen-compat.h" static int alphasort_thunk(void *thunk, const void *p1, const void *p2);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110725065357.5E81B1065670>