42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.125 2017/04/24 20:33:58 naddy Exp $
|
|
|
|
COMMENT= get files from FTP, Gopher, HTTP or HTTPS servers
|
|
|
|
VERSION= 7.54.0
|
|
DISTNAME= curl-${VERSION}
|
|
SHARED_LIBS= curl 25.10 # 8.0
|
|
CATEGORIES= net
|
|
HOMEPAGE= https://curl.haxx.se/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= https://curl.haxx.se/download/ \
|
|
https://dl.uxnr.de/mirror/curl/
|
|
EXTRACT_SUFX= .tar.lzma
|
|
|
|
LIB_DEPENDS= www/nghttp2
|
|
WANTLIB= c crypto nghttp2 ssl z
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --with-ca-bundle=/etc/ssl/cert.pem \
|
|
--without-libidn2 \
|
|
--without-libpsl \
|
|
--without-libssh2
|
|
CONFIGURE_ENV= ac_cv_path_NROFF="/usr/bin/mandoc -Tascii"
|
|
|
|
# speed up some time-consuming configure tests
|
|
CONFIGURE_ENV+= \
|
|
curl_cv_func_select_args="int,fd_set *,struct timeval *,int" \
|
|
curl_cv_func_recv_args="int,void *,size_t,int,ssize_t" \
|
|
curl_cv_func_send_args="int,const void *,size_t,int,ssize_t" \
|
|
curl_cv_func_getnameinfo_args="const struct sockaddr *,socklen_t,size_t,int"
|
|
|
|
# Note:
|
|
# use ulimit -p 256 for test
|
|
|
|
.include <bsd.port.mk>
|