[packages/claws-mail] fix c++ compiler detection when CXX is absolute path

atler atler at pld-linux.org
Tue Mar 4 02:40:34 CET 2025


commit 0ad64eed8808626367bdab488092017e479c982d
Author: Jan Palus <atler at pld-linux.org>
Date:   Tue Mar 4 00:48:58 2025 +0100

    fix c++ compiler detection when CXX is absolute path

 claws-mail.spec         |  4 +++-
 cxx-absolute-path.patch | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)
---
diff --git a/claws-mail.spec b/claws-mail.spec
index edb83db..4b20636 100644
--- a/claws-mail.spec
+++ b/claws-mail.spec
@@ -21,6 +21,7 @@ Source0:	https://www.claws-mail.org/releases/%{name}-%{version}.tar.xz
 # Source0-md5:	a3e05229f523ab2156f001815c575428
 Source1:	%{name}.desktop
 Patch0:		%{name}-link.patch
+Patch1:		cxx-absolute-path.patch
 URL:		https://www.claws-mail.org/
 BuildRequires:	NetworkManager-devel
 BuildRequires:	autoconf >= 2.69
@@ -428,6 +429,7 @@ webCal.
 %prep
 %setup -q
 %patch -P 0 -p1
+%patch -P 1 -p1
 
 %{__rm} po/stamp-po
 
@@ -547,7 +549,7 @@ rm -rf $RPM_BUILD_ROOT
 # R: cairo curl fontconfig gumbo-parser
 %files plugin-litehtml_viewer
 %defattr(644,root,root,755)
-#%attr(755,root,root) %{_libdir}/%{name}/plugins/litehtml_viewer.so
+%attr(755,root,root) %{_libdir}/%{name}/plugins/litehtml_viewer.so
 
 # R: libcanberra-gtk libnotify [libunity]
 %files plugin-notification
diff --git a/cxx-absolute-path.patch b/cxx-absolute-path.patch
new file mode 100644
index 0000000..8e01c3b
--- /dev/null
+++ b/cxx-absolute-path.patch
@@ -0,0 +1,19 @@
+--- claws-mail-4.3.1/configure.ac.orig	2025-03-04 00:34:07.129700383 +0100
++++ claws-mail-4.3.1/configure.ac	2025-03-04 00:41:20.961533979 +0100
+@@ -118,6 +118,16 @@
+ if test -n "$REAL_CXX"; then
+ 	HAVE_CXX=yes
+ fi
++AC_PROG_CXX
++HAVE_CXX=no
++if test "$CXX" != "${CXX#*/}"; then
++	HAVE_CXX=yes
++else
++	AC_PATH_PROG(REAL_CXX, $CXX)
++	if test -n "$REAL_CXX"; then
++		HAVE_CXX=yes
++	fi
++fi
+ 
+ AC_SYS_LARGEFILE
+ 
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/claws-mail.git/commitdiff/0ad64eed8808626367bdab488092017e479c982d



More information about the pld-cvs-commit mailing list