Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Feb 2021 07:46:31 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r563554 - head/net-p2p/qbittorrent/files
Message-ID:  <202102010746.1117kVmN086001@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Feb  1 07:46:31 2021
New Revision: 563554
URL: https://svnweb.freebsd.org/changeset/ports/563554

Log:
  net-p2p/qbittorrent: Fix build on systems with zlib version lower than 1.2.11
  
  Since zlib-1.2.11 was a bug-fix release this should be fine.
  
  Reported by:	fallout

Added:
  head/net-p2p/qbittorrent/files/patch-src_CMakeLists.txt   (contents, props changed)

Added: head/net-p2p/qbittorrent/files/patch-src_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/qbittorrent/files/patch-src_CMakeLists.txt	Mon Feb  1 07:46:31 2021	(r563554)
@@ -0,0 +1,13 @@
+- Because some systems have version lower than required minZlibVersion=1.2.11
+
+--- src/CMakeLists.txt.orig	2021-02-01 07:32:36 UTC
++++ src/CMakeLists.txt
+@@ -34,7 +34,7 @@ endif()
+ set_property(CACHE LibtorrentRasterbar_DIR PROPERTY TYPE PATH)
+ find_package(Boost ${minBoostVersion} REQUIRED)
+ find_package(OpenSSL ${minOpenSSLVersion} REQUIRED)
+-find_package(ZLIB ${minZlibVersion} REQUIRED)
++find_package(ZLIB REQUIRED)
+ find_package(Qt5 ${minQtVersion} REQUIRED COMPONENTS Core Network Xml LinguistTools)
+ if (DBUS)
+     find_package(Qt5 ${minQtVersion} REQUIRED COMPONENTS DBus)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102010746.1117kVmN086001>