1998-10-17 15:52:48 +00:00
|
|
|
# @(#)Makefile 8.2 (Berkeley) 1/4/94
|
1999-08-27 23:45:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-24 09:57:34 +00:00
|
|
|
#
|
|
|
|
# Doing a make install builds /usr/include
|
1999-12-09 09:35:36 +00:00
|
|
|
#
|
|
|
|
# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
|
|
|
|
# links.
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1996-09-20 13:42:26 +00:00
|
|
|
CLEANFILES= osreldate.h version vers.c
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
SUBDIR= rpcsvc rpc
|
1994-05-24 09:57:34 +00:00
|
|
|
FILES= a.out.h ar.h assert.h bitstring.h ctype.h db.h dirent.h disktab.h \
|
2001-05-06 16:39:57 +00:00
|
|
|
dlfcn.h elf.h elf-hints.h err.h fnmatch.h fstab.h \
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
fts.h glob.h grp.h strhash.h \
|
2001-02-08 17:14:28 +00:00
|
|
|
hesiod.h histedit.h ieeefp.h ifaddrs.h iso646.h langinfo.h \
|
2000-08-31 15:56:15 +00:00
|
|
|
libgen.h limits.h link.h locale.h malloc.h memory.h mpool.h \
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
netconfig.h ndbm.h netdb.h nl_types.h nlist.h nsswitch.h objformat.h \
|
1998-03-04 10:27:00 +00:00
|
|
|
paths.h pthread.h pthread_np.h pwd.h \
|
2000-07-01 06:55:11 +00:00
|
|
|
ranlib.h regex.h regexp.h resolv.h rune.h runetype.h \
|
|
|
|
search.h setjmp.h sgtty.h \
|
2000-09-16 07:28:44 +00:00
|
|
|
signal.h stab.h stdbool.h stddef.h stdio.h stdlib.h string.h \
|
2001-01-03 12:35:39 +00:00
|
|
|
stringlist.h strings.h sysexits.h tar.h time.h timers.h \
|
2001-05-16 11:38:18 +00:00
|
|
|
ttyent.h unistd.h utime.h utmp.h vis.h wchar.h wctype.h
|
1995-03-22 07:29:58 +00:00
|
|
|
.if defined(WANT_CSRG_LIBM)
|
1994-09-08 10:36:30 +00:00
|
|
|
FILES+= math.h
|
|
|
|
.endif
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1998-06-11 08:56:40 +00:00
|
|
|
ARPAFILES= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h
|
1996-08-29 19:57:48 +00:00
|
|
|
|
|
|
|
PROTOFILES= dumprestore.h routed.h rwhod.h talkd.h timed.h
|
|
|
|
|
1994-10-03 04:15:54 +00:00
|
|
|
MFILES= float.h floatingpoint.h stdarg.h varargs.h
|
1998-03-04 10:27:00 +00:00
|
|
|
|
|
|
|
# posix4/aio.h conflicts with dysons and isn't installed:
|
1999-09-05 07:58:28 +00:00
|
|
|
PFILES= mqueue.h sched.h semaphore.h # aio.h
|
1998-03-04 10:27:00 +00:00
|
|
|
|
1999-12-09 09:35:36 +00:00
|
|
|
# Only for default SHARED=copies case
|
|
|
|
SFILES= soundcard.h joystick.h
|
1999-09-04 15:44:44 +00:00
|
|
|
|
2000-08-17 07:51:48 +00:00
|
|
|
LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \
|
|
|
|
termios.h ucontext.h
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2001-05-25 08:14:14 +00:00
|
|
|
LDIRS= cam net netatalk netatm netgraph netinet netinet6 \
|
2001-05-26 11:57:45 +00:00
|
|
|
netipx netkey netnatm netncp netns netsmb nfs pccard posix4 \
|
2001-04-11 09:00:09 +00:00
|
|
|
sys vm
|
1999-12-09 09:35:36 +00:00
|
|
|
|
2001-04-11 09:00:09 +00:00
|
|
|
LNOHEADERDIRS= fs isofs ufs dev
|
2001-05-23 09:42:29 +00:00
|
|
|
|
2001-06-04 21:15:05 +00:00
|
|
|
LSUBDIRS= cam/scsi dev/ic dev/ppbus dev/usb dev/wi \
|
2001-05-26 11:57:45 +00:00
|
|
|
fs/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs fs/nwfs fs/portalfs \
|
2001-05-25 08:14:14 +00:00
|
|
|
fs/procfs fs/smbfs fs/umapfs fs/unionfs isofs/cd9660 \
|
2001-05-29 20:26:51 +00:00
|
|
|
ufs/ffs ufs/ufs
|
1999-12-09 09:35:36 +00:00
|
|
|
|
2001-05-23 16:49:02 +00:00
|
|
|
# For SHARED=symlinks, cam is a symlink, so cam/scsi is taken care of
|
|
|
|
LSYMSUBDIRS= ${LSUBDIRS:Ncam/scsi}
|
|
|
|
|
1999-12-09 09:35:36 +00:00
|
|
|
# Define SHARED to indicate whether you want symbolic links to the system
|
|
|
|
# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
|
|
|
|
# probably only useful for developers and should be avoided if you do not
|
|
|
|
# wish to tie your /usr/include and /usr/src together.
|
|
|
|
#SHARED= symlinks
|
|
|
|
SHARED?= copies
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1997-05-12 09:50:19 +00:00
|
|
|
all: osreldate.h
|
|
|
|
|
1998-05-21 19:21:46 +00:00
|
|
|
osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh \
|
|
|
|
${.CURDIR}/../sys/sys/param.h
|
1997-05-12 09:50:19 +00:00
|
|
|
@${ECHO} creating osreldate.h from newvers.sh
|
1998-05-21 19:21:46 +00:00
|
|
|
setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
|
1997-05-12 09:50:19 +00:00
|
|
|
. ${.CURDIR}/../sys/conf/newvers.sh; \
|
|
|
|
echo "$$COPYRIGHT" > osreldate.h; \
|
2001-02-18 20:44:06 +00:00
|
|
|
echo "#ifdef _KERNEL" >> osreldate.h; \
|
|
|
|
echo '#error "osreldate.h must not be used in the kernel, use sys/param.h"' >> osreldate.h; \
|
|
|
|
echo "#else" >> osreldate.h; \
|
1997-05-12 09:50:19 +00:00
|
|
|
echo \#'undef __FreeBSD_version' >> osreldate.h; \
|
2001-02-18 20:44:06 +00:00
|
|
|
echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h; \
|
|
|
|
echo "#endif" >> osreldate.h
|
1997-05-12 09:50:19 +00:00
|
|
|
|
1999-12-09 09:35:36 +00:00
|
|
|
beforeinstall: ${SHARED}
|
|
|
|
@rm -f ${DESTDIR}/usr/include/timepps.h
|
1996-08-29 19:57:48 +00:00
|
|
|
cd ${.CURDIR}; \
|
1999-12-09 09:35:36 +00:00
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
|
|
${FILES} ${DESTDIR}/usr/include
|
1996-08-29 19:57:48 +00:00
|
|
|
cd ${.CURDIR}/arpa; \
|
1999-12-09 09:35:36 +00:00
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
|
|
${ARPAFILES} ${DESTDIR}/usr/include/arpa
|
1996-08-29 19:57:48 +00:00
|
|
|
cd ${.CURDIR}/protocols; \
|
1999-12-09 09:35:36 +00:00
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
|
|
${PROTOFILES} ${DESTDIR}/usr/include/protocols
|
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
|
|
${.OBJDIR}/osreldate.h \
|
|
|
|
${DESTDIR}/usr/include
|
1996-08-29 19:57:48 +00:00
|
|
|
.for i in ${LFILES}
|
|
|
|
ln -sf sys/$i ${DESTDIR}/usr/include/$i
|
|
|
|
.endfor
|
|
|
|
.for i in ${MFILES}
|
|
|
|
ln -sf machine/$i ${DESTDIR}/usr/include/$i
|
|
|
|
.endfor
|
1998-03-04 10:27:00 +00:00
|
|
|
.for i in ${PFILES}
|
|
|
|
ln -sf posix4/$i ${DESTDIR}/usr/include/$i
|
|
|
|
.endfor
|
1999-12-09 09:35:36 +00:00
|
|
|
|
|
|
|
copies:
|
2001-05-23 16:49:02 +00:00
|
|
|
.for i in ${LDIRS} ${LSYMSUBDIRS} machine
|
1999-12-09 09:35:36 +00:00
|
|
|
if [ -h ${DESTDIR}/usr/include/$i ]; then \
|
|
|
|
rm -f ${DESTDIR}/usr/include/$i; \
|
|
|
|
fi
|
|
|
|
.endfor
|
2000-09-15 08:08:04 +00:00
|
|
|
mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
|
1999-12-09 09:35:36 +00:00
|
|
|
-p ${DESTDIR}/usr/include
|
|
|
|
.for i in ${LDIRS} ${LSUBDIRS}
|
|
|
|
cd ${.CURDIR}/../sys; \
|
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
|
|
|
|
${DESTDIR}/usr/include/$i
|
|
|
|
.endfor
|
2001-06-07 04:06:21 +00:00
|
|
|
.if exists(${.CURDIR}/../sys/contrib/ipfilter/netinet)
|
|
|
|
cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
|
1999-12-09 09:35:36 +00:00
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
|
2001-06-07 04:06:21 +00:00
|
|
|
${DESTDIR}/usr/include/netinet
|
1999-12-09 09:35:36 +00:00
|
|
|
.endif
|
2001-06-07 05:04:53 +00:00
|
|
|
.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include)
|
|
|
|
cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
|
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
|
|
|
|
${DESTDIR}/usr/include/machine
|
|
|
|
.endif
|
1999-09-05 07:58:28 +00:00
|
|
|
.for i in ${SFILES}
|
|
|
|
ln -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
|
|
|
|
.endfor
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1999-12-09 09:35:36 +00:00
|
|
|
symlinks:
|
|
|
|
@${ECHO} "Setting up symlinks to kernel source tree..."
|
2000-01-26 17:12:09 +00:00
|
|
|
.for i in ${LDIRS}
|
1999-12-09 09:35:36 +00:00
|
|
|
rm -rf ${DESTDIR}/usr/include/$i
|
|
|
|
ln -s ../../sys/$i ${DESTDIR}/usr/include/$i
|
2000-01-26 17:12:09 +00:00
|
|
|
.endfor
|
|
|
|
.for i in ${LNOHEADERDIRS}
|
|
|
|
rm -rf ${DESTDIR}/usr/include/$i
|
2001-05-23 16:49:02 +00:00
|
|
|
mkdir ${DESTDIR}/usr/include/$i
|
|
|
|
.endfor
|
|
|
|
.for i in ${LSYMSUBDIRS}
|
|
|
|
ln -s ../../../sys/$i ${DESTDIR}/usr/include/$i
|
1999-12-09 09:35:36 +00:00
|
|
|
.endfor
|
|
|
|
rm -rf ${DESTDIR}/usr/include/machine
|
|
|
|
ln -s ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
.include <bsd.prog.mk>
|