diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-11-22 14:56:14 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-11-22 14:56:14 +0000 |
commit | 5d18ff83bb4fa8c25aa55100c79753a43140e804 (patch) | |
tree | 931178760a9436d6607aec0feebd2f3c58d1bf12 /comms/conserver/files/patch-ae | |
parent | Upgrade to 5.16 (diff) |
A port for conserver. conserver is the answer to serial consoles. :-)
There is a later version of conserver, but it requires a rather extensive
build environment and set of tools to build it. This version works is
nice and stable though.
Notes
Notes:
svn path=/head/; revision=8756
Diffstat (limited to 'comms/conserver/files/patch-ae')
-rw-r--r-- | comms/conserver/files/patch-ae | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/comms/conserver/files/patch-ae b/comms/conserver/files/patch-ae new file mode 100644 index 000000000000..1d676c4b7570 --- /dev/null +++ b/comms/conserver/files/patch-ae @@ -0,0 +1,41 @@ +--- console/Makefile.orig Sat Nov 22 20:42:18 1997 ++++ console/Makefile Sat Nov 22 20:43:43 1997 +@@ -6,8 +6,8 @@ + # edit the ETC directory below to change where the console client + # is installed. + PROG= console +-ETC= ${DESTDIR}/usr/local/etc +-DOC= ${DESTDIR}/usr/local/man ++ETC= ${DESTDIR}/usr/local/sbin ++DOC= ${DESTDIR}/usr/local/man/man8 + + I=/usr/include + S=/usr/include/sys +@@ -17,7 +17,7 @@ + + INCLUDE= -I$C + DEBUG=-O +-CDEFS= -DSUN5 ++CDEFS= -DFREEBSD + CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} + + HDR= +@@ -29,7 +29,7 @@ + all: ${PROG} + + ${PROG}: +- ${CC} -o $@ ${CFLAGS} ${ONEC} -lsocket -lnsl ++ ${CC} -o $@ ${CFLAGS} ${ONEC} + + clean: FRC + rm -f Makefile.bak ${PROG} a.out *.o core errs lint.out tags +@@ -47,7 +47,8 @@ + distrib -c ${ETC}/${PROG} + + install: all dirs FRC +- install -cs ${PROG} ${ETC}/${PROG} ++ install -c -s -o bin -g bin -m 555 ${PROG} ${ETC}/${PROG} ++ install -c -o bin -g bin -m 444 ${MAN} ${DOC}/console.8 + + lint: ${HDR} ${ONEC} FRC + lint -h ${CDEFS} ${INCLUDE} ${ONEC} |