diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index f927e75..38819a9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xtrkcad (1:5.3.0GA-2) UNRELEASED; urgency=medium + + * debian/rules: + - Add -std=gnu17 to CFLAGS to fix FTBFS with GCC-15 (Closes: #1098175). + + -- Jörg Frings-Fürst <debian@jff.email> Sat, 20 Sep 2025 18:27:22 +0200 + xtrkcad (1:5.3.0GA-1.1) unstable; urgency=medium * Non-maintainer upload. diff --git a/debian/rules b/debian/rules index e58c57d..59a33ff 100755 --- a/debian/rules +++ b/debian/rules @@ -6,6 +6,8 @@ # hardening export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_LDFLAGS_MAINT_APPEND = -Wl,--allow-multiple-definition +export CFLAGS = $(shell dpkg-buildflags --get CFLAGS) -std=gnu17 + %: dh $@ |