diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-07 19:59:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-07 19:59:07 +0000 |
commit | 2958546c0b72d310f1ca4078be5659cbac26757e (patch) | |
tree | 59c4569d0590520c56a8646c94df7805c7d66e4c /distrib/i386/special | |
parent | a0c036d94b967c38aec825d1680003cde2dcdbaf (diff) |
Build private versions of ftp and pppd w/o the bloat. This could be used
to remove kerberos from the the floppy as well as Theo pointed out.
This allows us to put back some things that were removed due to lack of space.
Diffstat (limited to 'distrib/i386/special')
-rw-r--r-- | distrib/i386/special/Makefile | 5 | ||||
-rw-r--r-- | distrib/i386/special/ftp/Makefile | 26 | ||||
-rw-r--r-- | distrib/i386/special/pppd/Makefile | 17 |
3 files changed, 48 insertions, 0 deletions
diff --git a/distrib/i386/special/Makefile b/distrib/i386/special/Makefile new file mode 100644 index 00000000000..31cb1c36d8c --- /dev/null +++ b/distrib/i386/special/Makefile @@ -0,0 +1,5 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/07 19:59:04 millert Exp $ + +SUBDIR= ftp pppd + +.include <bsd.subdir.mk> diff --git a/distrib/i386/special/ftp/Makefile b/distrib/i386/special/ftp/Makefile new file mode 100644 index 00000000000..46d79762b85 --- /dev/null +++ b/distrib/i386/special/ftp/Makefile @@ -0,0 +1,26 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/07 19:59:05 millert Exp $ +# $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $ +# from: @(#)Makefile 8.2 (Berkeley) 4/3/94 + +# Define SMALL to disable command line editing +CFLAGS+=-DSMALL + +# Uncomment the following to provide defaults for gate-ftp operation +#CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21 + +# Uncomment the following for socks5 support. +#CFLAGS += -DSOCKS -include /usr/local/include/socks.h +#LDADD += -lsocks5 + +PROG= ftp +SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ + stringlist.c util.c +MAN= +.PATH: ${.CURDIR}/../../../../usr.bin/ftp + +LDADD+= -ltermcap +DPADD+= ${LIBTERMCAP} + +#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes + +.include <bsd.prog.mk> diff --git a/distrib/i386/special/pppd/Makefile b/distrib/i386/special/pppd/Makefile new file mode 100644 index 00000000000..634a4ef55d6 --- /dev/null +++ b/distrib/i386/special/pppd/Makefile @@ -0,0 +1,17 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/07 19:59:06 millert Exp $ +# $NetBSD: Makefile,v 1.13 1996/12/18 16:54:57 christos Exp $ + +PROG= pppd +SRCS= auth.c cbcp.c ccp.c chap.c chap_ms.c demand.c fsm.c ipcp.c \ + ipxcp.c lcp.c magic.c main.c options.c sys-bsd.c upap.c + +.PATH: ${.CURDIR}/../../../../usr.sbin/pppd ${.CURDIR}/../../sys/net +MAN= +BINMODE=4555 +BINOWN= root + +LDADD= -lutil +DPADD= ${LIBUTIL} +CFLAGS+= -I. -DHAVE_PATHS_H + +.include <bsd.prog.mk> |