Hi Michael,

I hope to have a fix for the FTBFS bug in AVFS, which is currently stopping my package worker from entering testing.

I've just uploaded an NMU with the fix and will monitor if AVFS now builds on armel again. The patch is attached.

Regards,
Tobias
diff --git a/debian/changelog b/debian/changelog
index 5954342..81e742f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+avfs (1.1.5-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS on armel due to missing linking with libatomic.
+    (Closes: #1068264)
+
+ -- Dr. Tobias Quathamer <to...@debian.org>  Fri, 17 Jan 2025 16:27:49 +0100
+
 avfs (1.1.5-1) unstable; urgency=medium
 
   * New upstream version 1.1.5 (Closes: #1042511)
diff --git a/debian/rules b/debian/rules
index bd1c4a3..e6d586b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,6 +5,8 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 CFLAGS = `dpkg-buildflags --get CFLAGS`
 CFLAGS += -Wall
 LDFLAGS = `dpkg-buildflags --get LDFLAGS`
+# Fix https://bugs.debian.org/1068264
+LDFLAGS += -Wl,--as-needed,-latomic
 CPPFLAGS = `dpkg-buildflags --get CPPFLAGS`
 
 %:

Reply via email to