Control: unmerge -1
Control: reassign -1 src:loggedfs
Control: tags -1 +patch

Hi,

Your package forces C++11 standard during compilation. However it uses
ICU which is C++17 now. I attached a patch to use the C++17
standard and make your package compile again.

Regards,
Laszlo/GCS
Description: fix FTBFS with ICU 75.1+
 Use C++17 standard to compile with.
Author: Laszlo Boszormenyi (GCS) <g...@debian.org>
Bug-Debian: https://bugs.debian.org/1101237
Forwarded: no
Last-Update: 2025-03-25

---

--- loggedfs-0.9+ds.orig/Makefile
+++ loggedfs-0.9+ds/Makefile
@@ -1,5 +1,5 @@
 CXX?=g++
-CXXFLAGS+=-Wall -ansi -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26 -DELPP_SYSLOG -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -std=c++11 `xml2-config --cflags`
+CXXFLAGS+=-Wall -ansi -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26 -DELPP_SYSLOG -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -std=c++17 `xml2-config --cflags`
 LDFLAGS+=-Wall -ansi -lpcre2-8 -lfuse `xml2-config --libs` -lpthread
 srcdir=src
 easyloggingdir=vendor/github.com/muflihun/easyloggingpp/src

Reply via email to