File tree Expand file tree Collapse file tree 4 files changed +26
-14
lines changed
Expand file tree Collapse file tree 4 files changed +26
-14
lines changed Original file line number Diff line number Diff line change 1- # $NetBSD: Makefile,v 1.294 2025/02/13 18:24:34 adam Exp $
1+ # $NetBSD: Makefile,v 1.292 2025/02/05 08:51:31 wiz Exp $
22
33.include "Makefile.common"
44
55CONFIGURE_ARGS+ = --with-ssl=${BUILDLINK_PREFIX.openssl}
66
7- SUBST_CLASSES+ = rpath
8- SUBST_FILES.rpath+ = curl-config.in
9- SUBST_SED.rpath+ = -e 's!-L@libdir@!${COMPILER_RPATH_FLAG}@libdir@ -L@libdir@!'
10- SUBST_STAGE.rpath = pre-configure
11- SUBST_MESSAGE.rpath = Adding rpath to curl-config.
12-
137.include "options.mk"
148
159.include "../../security/openssl/buildlink3.mk"
Original file line number Diff line number Diff line change 1- # $NetBSD: Makefile.common,v 1.22 2025/02/13 18:24:34 adam Exp $
1+ # $NetBSD: Makefile.common,v 1.20 2025/02/05 08:51:31 wiz Exp $
22# used by www/libcurl-gnutls/Makefile
33
4- DISTNAME= curl-8.12.1
4+ DISTNAME= curl-8.12.0
55CATEGORIES= www
66MASTER_SITES= https://curl.se/download/
77EXTRACT_SUFX= .tar.xz
@@ -22,7 +22,6 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-impacket-[0-9]*:../../net/py-impacket
2222USE_TOOLS+= nroff perl
2323USE_LIBTOOL= yes
2424GNU_CONFIGURE= yes
25- GNU_CONFIGURE_ICONV= no
2625# Some systems use bundles instead of directories; this needs configuring
2726# because curl doesn't use default validation.
2827.if !empty(SSLCERTBUNDLE)
Original file line number Diff line number Diff line change 1- $NetBSD: distinfo,v 1.214 2025/02/13 18:24:34 adam Exp $
1+ $NetBSD: distinfo,v 1.212 2025/02/05 08:51:31 wiz Exp $
22
3- BLAKE2s (curl-8.12.1.tar.xz) = 1e8e7f356b1d72753f58d51f6c21cfc58f3de9e59041f405e88f5c0557270090
4- SHA512 (curl-8.12.1.tar.xz) = 88915468fa1bb7256e3dd6c9d058ada6894faa1e3e7800c7d9bfee3e8be4081ae57e7f2bf260c5342b709499fc4302ddc2d7864e25bfa3300fa07f118a3de603
5- Size (curl-8.12.1.tar.xz) = 2768160 bytes
3+ BLAKE2s (curl-8.12.0.tar.xz) = 8ad736d92568a050f55a5ddc640b4d04d338e72b66d4e46f858569037284065a
4+ SHA512 (curl-8.12.0.tar.xz) = ed35f0020541050ce387f4ba80f9e87562ececd99082da1bae85840dee81c49b86a4a55909e15fcbf4eb116106a796c29a9b2678dee11326f80db75992c6edc5
5+ Size (curl-8.12.0.tar.xz) = 2777552 bytes
6+ SHA1 (patch-curl-config.in) = abc985fab71738206e87b65f0371350bf04f588f
Original file line number Diff line number Diff line change 1+ $NetBSD: patch-curl-config.in,v 1.14 2025/02/05 08:51:32 wiz Exp $
2+
3+ Make "curl-config --libs" return proper ldflags for shared libraries.
4+
5+ --- curl-config.in.orig 2025-02-05 08:05:05.000000000 +0000
6+ +++ curl-config.in
7+ @@ -155,9 +155,9 @@ while test "$#" -gt 0; do
8+ curllibdir=''
9+ fi
10+ if test 'X@ENABLE_SHARED@' = 'Xno'; then
11+ - echo "${curllibdir}-lcurl @LIBCURL_PC_LIBS_PRIVATE@"
12+ + echo "@LDFLAGS@ ${curllibdir}-lcurl @LIBCURL_PC_LIBS_PRIVATE@"
13+ else
14+ - echo "${curllibdir}-lcurl"
15+ + echo "@LDFLAGS@ ${curllibdir}-lcurl"
16+ fi
17+ ;;
18+
You can’t perform that action at this time.
0 commit comments