pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/qbittorrent



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sat Dec  7 18:12:54 UTC 2024

Modified Files:
        pkgsrc/net/qbittorrent: Makefile

Log Message:
qbittorrent: needs at least gcc 11

For
error: 'class std::basic_ostream<char>' has no member named 'str'

(even forcing a C++ standard didn't fix this for gcc 10.)


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 pkgsrc/net/qbittorrent/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/qbittorrent/Makefile
diff -u pkgsrc/net/qbittorrent/Makefile:1.79 pkgsrc/net/qbittorrent/Makefile:1.80
--- pkgsrc/net/qbittorrent/Makefile:1.79        Mon Nov 18 08:55:14 2024
+++ pkgsrc/net/qbittorrent/Makefile     Sat Dec  7 18:12:54 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.79 2024/11/18 08:55:14 adam Exp $
+# $NetBSD: Makefile,v 1.80 2024/12/07 18:12:54 wiz Exp $
 
 DISTNAME=      qbittorrent-5.0.2
 CATEGORIES=    net
@@ -17,6 +17,9 @@ USE_CXX_FEATURES=     c++20
 USE_LANGUAGES=         c c++
 USE_TOOLS+=            pkg-config
 
+# error: 'class std::basic_ostream<char>' has no member named 'str'
+GCC_REQD+=             11
+
 CMAKE_CONFIGURE_ARGS+= -DCMAKE_BUILD_TYPE="Release"
 # error "Boost.Stacktrace requires `_Unwind_Backtrace` function
 CMAKE_CONFIGURE_ARGS+= -DSTACKTRACE=OFF



Home | Main Index | Thread Index | Old Index