pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/libtorrent



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Jun 15 12:30:47 UTC 2019

Modified Files:
        pkgsrc/net/libtorrent: Makefile

Log Message:
libtorrent: Pass -Wl,-R to the linker instead of -W,-lR.

The latter smells like a typo and makes OpenSSL 1.1 detection fail.


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 pkgsrc/net/libtorrent/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/libtorrent/Makefile
diff -u pkgsrc/net/libtorrent/Makefile:1.59 pkgsrc/net/libtorrent/Makefile:1.60
--- pkgsrc/net/libtorrent/Makefile:1.59 Sun Jun 24 16:57:58 2018
+++ pkgsrc/net/libtorrent/Makefile      Sat Jun 15 12:30:47 2019
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.59 2018/06/24 16:57:58 adam Exp $
+# $NetBSD: Makefile,v 1.60 2019/06/15 12:30:47 nia Exp $
 
 DISTNAME=      libtorrent-0.13.7
+PKGREVISION=   1
 CATEGORIES=    net
 MASTER_SITES=  http://rtorrent.net/downloads/
 
@@ -51,7 +52,7 @@ CONFIGURE_ARGS+=      --disable-instrumentati
 .if !exists(${BUILDLINK_PREFIX.openssl}/lib/pkgconfig/openssl.pc)
 OPENSSL_CFLAGS=        -I${BUILDLINK_PREFIX.openssl}/include
 OPENSSL_LIBS=  -L${BUILDLINK_PREFIX.openssl}/lib \
-               -W,-lR${BUILDLINK_PREFIX.openssl}/lib
+               -Wl,-R${BUILDLINK_PREFIX.openssl}/lib
 
 CONFIGURE_ENV+=        OPENSSL_CFLAGS=${OPENSSL_CFLAGS:Q}
 CONFIGURE_ENV+=        OPENSSL_LIBS=${OPENSSL_LIBS:Q}



Home | Main Index | Thread Index | Old Index