=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ftp/Makefile,v retrieving revision 1.32 retrieving revision 1.33 diff -c -r1.32 -r1.33 *** src/usr.bin/ftp/Makefile 2019/05/12 20:58:19 1.32 --- src/usr.bin/ftp/Makefile 2019/05/16 12:44:17 1.33 *************** *** 1,12 **** ! # $OpenBSD: Makefile,v 1.32 2019/05/12 20:58:19 jasper Exp $ ! # Define SMALL to disable command line editing #CFLAGS+=-DSMALL PROG= ftp ! SRCS= cmd.c file.c ftp.c http.c main.c progressmeter.c url.c util.c xmalloc.c LDADD+= -ledit -lcurses -lutil -ltls -lssl -lcrypto DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} .include --- 1,15 ---- ! # $OpenBSD: Makefile,v 1.33 2019/05/16 12:44:17 florian Exp $ ! # Define SMALL to disable command line editing and https support #CFLAGS+=-DSMALL PROG= ftp ! SRCS= cmds.c cmdtab.c complete.c cookie.c domacro.c fetch.c ftp.c \ ! list.c main.c ruserpass.c small.c stringlist.c util.c LDADD+= -ledit -lcurses -lutil -ltls -lssl -lcrypto DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} + + #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes .include