[arch-commits] Commit in thunderbird/trunk (2 files)

Levente Polyak anthraxx at archlinux.org
Sun Nov 8 13:06:51 UTC 2020


    Date: Sunday, November 8, 2020 @ 13:06:50
  Author: anthraxx
Revision: 399622

fix passing system bzip2 ldflags

Added:
  thunderbird/trunk/configure-fix-passing-system-bzip2-ldflags.patch
Modified:
  thunderbird/trunk/PKGBUILD

--------------------------------------------------+
 PKGBUILD                                         |    2 +
 configure-fix-passing-system-bzip2-ldflags.patch |   25 +++++++++++++++++++++
 2 files changed, 27 insertions(+)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-11-08 12:45:45 UTC (rev 399621)
+++ PKGBUILD	2020-11-08 13:06:50 UTC (rev 399622)
@@ -32,6 +32,7 @@
         vendor-prefs.js
         distribution.ini
         mozconfig.cfg
+        configure-fix-passing-system-bzip2-ldflags.patch
         thunderbird-rust-1.47.patch::https://src.fedoraproject.org/rpms/thunderbird/raw/86967ddc206310ba7bb9eb57a933031909288ce2/f/rust-1.47.patch)
 sha512sums=('dd2aea61d172e5e6b6bebf1aeaa9fbafe38749bc435b791472d13e430446286fcd20e03c12e8f9acd6c74d4af0e7db1e50e08b2ff5cfdbdbae6462eb6984b5aa'
             'SKIP'
@@ -39,6 +40,7 @@
             '6918c0de63deeddc6f53b9ba331390556c12e0d649cf54587dfaabb98b32d6a597b63cf02809c7c58b15501720455a724d527375a8fb9d757ccca57460320734'
             '5cd3ac4c94ef6dcce72fba02bc18b771a2f67906ff795e0e3d71ce7db6d8a41165bd5443908470915bdbdb98dddd9cf3f837c4ba3a36413f55ec570e6efdbb9f'
             'b04e8b11360f41e0cc0eb0c307f062569603372ed15112e33a0ca893c5622217c3155289b3560c0ba909306faf25ff98b7dc3944ad1493e0a8d940306be5167a'
+            'e3ed2708b8354015cb3d2c81048d1ce4932d1effbe2b40efa7cf9b45c1b923b9fd708645e2f8aa0136a485a3f7ce6b396b85721aaf535a4a764fd5005fb7e222'
             'd337a77104d411df219f3ae1c7d136ae92f944a18969cc92e6257b4f909204677a58df43187d41f53d4c36c29f57f53bdbad90d8263e6a9b0781640944895cad')
 validpgpkeys=(14F26682D0916CDD81E37B6D61B7B526D98F0353) # Mozilla Software Releases <release at mozilla.com>
 

Added: configure-fix-passing-system-bzip2-ldflags.patch
===================================================================
--- configure-fix-passing-system-bzip2-ldflags.patch	                        (rev 0)
+++ configure-fix-passing-system-bzip2-ldflags.patch	2020-11-08 13:06:50 UTC (rev 399622)
@@ -0,0 +1,25 @@
+From 9855927c896eaeecb21c1541942ee6d557144183 Mon Sep 17 00:00:00 2001
+From: anthraxx <levente at leventepolyak.net>
+Date: Sun, 8 Nov 2020 13:26:47 +0100
+Subject: [PATCH] configure: fix passing system bzip2 ldflags
+
+---
+ comm/third_party/openpgp.configure | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/comm/third_party/openpgp.configure b/comm/third_party/openpgp.configure
+index 2f9c796..2cbc907 100644
+--- a/comm/third_party/openpgp.configure
++++ b/comm/third_party/openpgp.configure
+@@ -80,7 +80,7 @@ with only_when('--enable-compile-environment'):
+         if bzip2_pkg:
+             cflags = list(bzip2_pkg.cflags)
+             libs = bzip2_pkg.libs
+-            return namespace(cflags=cflags, libs=libs, path=(value[0]), )
++            return namespace(cflags=cflags, ldflags=libs, )
+         # Fallback
+         return namespace(
+             ldflags=['-lbz2'],
+-- 
+2.28.0
+



More information about the arch-commits mailing list