Deleted Added
full compact
Makefile (97891) Makefile (97930)
1# $FreeBSD: head/lib/libfetch/Makefile 97891 2002-06-05 21:35:35Z des $
1# $FreeBSD: head/lib/libfetch/Makefile 97930 2002-06-06 13:45:46Z ru $
2
3MAINTAINER= des@freebsd.org
4LIB= fetch
5WARNS?= 4
6CFLAGS+= -I.
7CFLAGS+= -DINET6
2
3MAINTAINER= des@freebsd.org
4LIB= fetch
5WARNS?= 4
6CFLAGS+= -I.
7CFLAGS+= -DINET6
8.if !defined(NOCRYPT)
9CFLAGS+= -DWITH_SSL
10.endif
11SRCS= fetch.c common.c ftp.c http.c file.c \
12 ftperr.h httperr.h
13INCS= fetch.h
14MAN= fetch.3
15CLEANFILES= ftperr.h httperr.h
8SRCS= fetch.c common.c ftp.c http.c file.c \
9 ftperr.h httperr.h
10INCS= fetch.h
11MAN= fetch.3
12CLEANFILES= ftperr.h httperr.h
16#DPADD= ${LIBCRYPTO} ${LIBSSL}
17#LDADD= -lcrypto -lssl
18
13
14.if !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL)
15CFLAGS+= -DWITH_SSL
16DPADD= ${LIBCRYPTO} ${LIBSSL}
17LDADD= -lcrypto -lssl
18.endif
19
19NO_WERROR= yes
20
21SHLIB_MAJOR= 3
22SHLIB_MINOR= 0
23
24ftperr.h: ftp.errors
25 @echo "static struct fetcherr _ftp_errlist[] = {" > ${.TARGET}
26 @cat ${.ALLSRC} \

--- 49 unchanged lines hidden ---
20NO_WERROR= yes
21
22SHLIB_MAJOR= 3
23SHLIB_MINOR= 0
24
25ftperr.h: ftp.errors
26 @echo "static struct fetcherr _ftp_errlist[] = {" > ${.TARGET}
27 @cat ${.ALLSRC} \

--- 49 unchanged lines hidden ---