Deleted Added
full compact
Makefile (110165) Makefile (114420)
1# $FreeBSD: head/lib/libfetch/Makefile 110165 2003-01-31 23:26:55Z markm $
1# $FreeBSD: head/lib/libfetch/Makefile 114420 2003-05-01 14:39:43Z des $
2
3LIB= fetch
4CFLAGS+= -I.
5CFLAGS+= -DINET6
6SRCS= fetch.c common.c ftp.c http.c file.c \
7 ftperr.h httperr.h
8INCS= fetch.h
9MAN= fetch.3
10CLEANFILES= ftperr.h httperr.h
11
12.if !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL)
13CFLAGS+= -DWITH_SSL
14DPADD= ${LIBSSL} ${LIBCRYPTO}
15LDADD= -lssl -lcrypto
2
3LIB= fetch
4CFLAGS+= -I.
5CFLAGS+= -DINET6
6SRCS= fetch.c common.c ftp.c http.c file.c \
7 ftperr.h httperr.h
8INCS= fetch.h
9MAN= fetch.3
10CLEANFILES= ftperr.h httperr.h
11
12.if !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL)
13CFLAGS+= -DWITH_SSL
14DPADD= ${LIBSSL} ${LIBCRYPTO}
15LDADD= -lssl -lcrypto
16WARNS?= 2
17.endif
18
16.endif
17
19WARNS?= 3
18CSTD?= c99
19WARNS?= 2
20
21SHLIB_MAJOR= 3
22
23ftperr.h: ftp.errors
24 @echo "static struct fetcherr _ftp_errlist[] = {" > ${.TARGET}
25 @cat ${.ALLSRC} \
26 | grep -v ^# \
27 | sort \

--- 47 unchanged lines hidden ---
20
21SHLIB_MAJOR= 3
22
23ftperr.h: ftp.errors
24 @echo "static struct fetcherr _ftp_errlist[] = {" > ${.TARGET}
25 @cat ${.ALLSRC} \
26 | grep -v ^# \
27 | sort \

--- 47 unchanged lines hidden ---