diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-05 03:53:24 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-05 03:53:24 +0000 |
commit | f81a56d0ad36dd758b65641aedc66119f90935ec (patch) | |
tree | 874b49f69f9d086873f1938675403de4acf8ae43 /usr.bin | |
parent | 2b365a14b158d2a8b43da5e53d7207cd1b3f6583 (diff) |
Add commented out support for building with socks5.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ftp/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 59de87c0715..c6359bf0d90 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 1997/09/04 04:37:12 millert Exp $ +# $OpenBSD: Makefile,v 1.12 1997/09/05 03:53:23 millert Exp $ # $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 @@ -8,6 +8,10 @@ # 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 |