2fe8fb192f
There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
56 lines
1.6 KiB
C
56 lines
1.6 KiB
C
/* $NetBSD: compat_fts.c,v 1.4 2009/10/19 17:52:05 christos Exp $ */
|
|
|
|
/*
|
|
* Written by Jason R. Thorpe <thorpej@NetBSD.org>, October 21, 1997.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include "namespace.h"
|
|
#include <sys/cdefs.h>
|
|
#include <dirent.h>
|
|
|
|
#define __LIBC12_SOURCE__
|
|
#include <sys/stat.h>
|
|
#include <compat/sys/time.h>
|
|
#include <compat/sys/stat.h>
|
|
|
|
#define __fts_stat_t struct stat12
|
|
#define __fts_nlink_t u_int16_t
|
|
#define __fts_ino_t u_int32_t
|
|
#define __fts_length_t unsigned short
|
|
#define __fts_number_t long
|
|
#define __fts_dev_t uint32_t
|
|
#define __fts_level_t short
|
|
|
|
#include <fts.h>
|
|
#include <compat/include/fts.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fts_children,_fts_children)
|
|
__weak_alias(fts_close,_fts_close)
|
|
__weak_alias(fts_open,_fts_open)
|
|
__weak_alias(fts_read,_fts_read)
|
|
__weak_alias(fts_set,_fts_set)
|
|
#endif /* __weak_alias */
|
|
|
|
__warn_references(fts_children,
|
|
"warning: reference to compatibility fts_children();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_close,
|
|
"warning: reference to compatibility fts_close();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_open,
|
|
"warning: reference to compatibility fts_open();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_read,
|
|
"warning: reference to compatibility fts_read();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_set,
|
|
"warning: reference to compatibility fts_set();"
|
|
" include <fts.h> for correct reference")
|
|
|
|
#define __FTS_COMPAT_TAILINGSLASH
|
|
#define __FTS_COMPAT_LENGTH
|
|
#define __FTS_COMPAT_LEVEL
|
|
|
|
#include "gen/fts.c"
|