diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-09-24 01:37:32 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-09-24 01:37:32 +0000 |
commit | 7c489e9c7c1ccea86f79b516e006a538a157b123 (patch) | |
tree | 940c1ced29b09046c2b110852d4ade95d9491012 /ftp/mget/files/patch-Makefile | |
parent | Fix a typo (ot->or) (diff) |
add mget
Multi Threaded Wget
Notes
Notes:
svn path=/head/; revision=48131
Diffstat (limited to 'ftp/mget/files/patch-Makefile')
-rw-r--r-- | ftp/mget/files/patch-Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ftp/mget/files/patch-Makefile b/ftp/mget/files/patch-Makefile new file mode 100644 index 000000000000..615ed024a7ce --- /dev/null +++ b/ftp/mget/files/patch-Makefile @@ -0,0 +1,18 @@ +--- Makefile.orig Sat Sep 22 00:28:48 2001 ++++ Makefile Sat Sep 22 00:29:33 2001 +@@ -2,12 +2,13 @@ + CC=gcc + DEFS=-DHAS_HERROR -DHAVE_IPV6 -DHAVE_GETOPT + DEBUG= +-CFLAGS=-Wall $(DEFS) $(DEBUG) ++CFLAGS+=-Wall $(DEFS) $(DEBUG) -I%%LOCALBASE%%/include + #CFLAGS=-Wall +-LDFLAGS=-lpthread ++LDFLAGS=-lpthread -L%%LOCALBASE%%/lib -lgnugetopt + #LDFLAGS=-lpthread -lsocket -lnsl + + mget: mget.o mgetutil.o ++ ${CC} ${LDFLAGS} mget.o mgetutil.o -o mget + + mget.usriv: mget_usriv.o mgetutil.o + $(CC) $(LDFLAGS) mget_usriv.o mgetutil.o -o mget.usriv |