This patch include various fixes to NBSD includes. - unistd.h: Avoid different linkages on non-_NETBSD_SOURCE compilation; - stdlib.h: remove devname declaration. - sys/select.h: Add _MINIX specific flags. - limits.h: Add SYMLOOP_MAX and SYMLINK_MAX - time.h: Fix CLOCKS_PER_SEC and remove BSD's timer_t, as it confuses minix own specific timers. - utmp.h: Set Minix-specific paths and use Minix utmp format. - param.h: Do not set BSD4_4, as this mostly means sa_len in struct sock_addr. - arch/i386/include/param.h: include <machine/vmparam.h> to add PAGE_SIZE and related macros, defined round_page() and trunc_page() for minix compatibility. - dirent.h: remove DIRBLKSIZ and fix d_ino/d_fileno. - sys/dir.h: ADD from existing includes and edit include conditions. - sys/dirent.h: include <minix/dirent.h>, fix d_ino/d_fileno. - sys/fd_set.h: set default FD_SETSIZE at __MINIX_OPENMAX, as the default NetBSD value is too big and cause vfs to return an error. - sys/cdefs.h: Always include <minix/ansi.h> - minix/paths.h: Add Minix-specific paths. - minix/dirent.h: ADD, keep only "direct" and "flex"definitions. - minix/types.h: include <minix/ansi.h> - sys/Makefile: add sys/dirent.h and statfs.h (forgot!) - minix/Makefile: add minix/dirent.h nbsd_include/minix-port.patch updated accordingly.
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#	$NetBSD: Makefile,v 1.126 2010/03/01 21:10:13 darran Exp $
 | 
						|
 | 
						|
NETBSDINCSDIR= /usr/netbsd/include
 | 
						|
INCSDIR= /usr/netbsd/include/sys
 | 
						|
 | 
						|
.include <bsd.sys.mk>
 | 
						|
 | 
						|
 | 
						|
# Present only in minix
 | 
						|
INCS+= ioc_net.h statfs.h
 | 
						|
 | 
						|
INCS+=	ansi.h atomic.h \
 | 
						|
	bitops.h bswap.h \
 | 
						|
	cdefs.h cdefs_aout.h ctype_bits.h ctype_inline.h \
 | 
						|
	dir.h dirent.h \
 | 
						|
	endian.h errno.h \
 | 
						|
	fcntl.h fd_set.h featuretest.h file.h \
 | 
						|
	float_ieee754.h gcq.h gmon.h hash.h \
 | 
						|
	ieee754.h inttypes.h ioctl.h ipc.h \
 | 
						|
	localedef.h \
 | 
						|
	md4.h md5.h \
 | 
						|
	mman.h mount.h \
 | 
						|
	null.h \
 | 
						|
	param.h poll.h ptrace.h \
 | 
						|
	ptree.h \
 | 
						|
	queue.h \
 | 
						|
	rbtree.h resource.h rmd160.h \
 | 
						|
	select.h sha1.h \
 | 
						|
	sha2.h siginfo.h signal.h sigtypes.h \
 | 
						|
	reboot.h sem.h shm.h socket.h \
 | 
						|
	stat.h statvfs.h \
 | 
						|
	sysctl.h stdint.h \
 | 
						|
	syslimits.h syslog.h \
 | 
						|
	termios.h time.h times.h \
 | 
						|
	tree.h ttycom.h ttydefaults.h \
 | 
						|
	types.h \
 | 
						|
	ucontext.h ucred.h uio.h un.h unistd.h utsname.h uuid.h \
 | 
						|
	wait.h
 | 
						|
 | 
						|
INCSYMLINKS=\
 | 
						|
	${NETBSDINCSDIR}/sys/fcntl.h ${NETBSDINCSDIR}/fcntl.h \
 | 
						|
	${NETBSDINCSDIR}/sys/poll.h ${NETBSDINCSDIR}/poll.h \
 | 
						|
	${NETBSDINCSDIR}/sys/stdint.h ${NETBSDINCSDIR}/stdint.h \
 | 
						|
	${NETBSDINCSDIR}/sys/syslog.h ${NETBSDINCSDIR}/syslog.h \
 | 
						|
	${NETBSDINCSDIR}/sys/termios.h ${NETBSDINCSDIR}/termios.h \
 | 
						|
	${NETBSDINCSDIR}/sys/rmd160.h ${NETBSDINCSDIR}/rmd160.h \
 | 
						|
	${NETBSDINCSDIR}/sys/sha1.h ${NETBSDINCSDIR}/sha1.h \
 | 
						|
	${NETBSDINCSDIR}/sys/sha2.h ${NETBSDINCSDIR}/sha2.h \
 | 
						|
	${NETBSDINCSDIR}/sys/md4.h ${NETBSDINCSDIR}/md4.h \
 | 
						|
	${NETBSDINCSDIR}/sys/md5.h ${NETBSDINCSDIR}/md5.h
 | 
						|
#	sys/exec_elf.h /usr/include/elf.h \
 | 
						|
 | 
						|
 | 
						|
#INCSYMLINKS+=	../soundcard.h ${INCSDIR}/soundcard.h
 | 
						|
 | 
						|
namei: namei.src gennameih.awk
 | 
						|
	${TOOL_AWK} -f gennameih.awk < namei.src
 | 
						|
 | 
						|
.include <bsd.own.mk>
 | 
						|
.include "${MINIXSRCDIR}/common/include/sys/Makefile.inc"
 | 
						|
 | 
						|
.include <bsd.files.mk>
 | 
						|
.include <bsd.kinc.mk>
 |