Package: mrpt
Version: 1:2.5.3+ds-2
Tags: ftbfs, hppa
You added a check in CMakeLists.txt for parisc64 to disable uasge of
-mtune=native.
Please enhance this check to include "parisc" as well.
Reason is, that we have build servers which run either a 32- or 64-bit kernel,
and the 32-bit ones report "parisc" for "uname -m" instead of "parisc64".
See:
https://buildd.debian.org/status/fetch.php?pkg=mrpt&arch=hppa&ver=1%3A2.5.3%2Bds-2&stamp=1663229594&raw=0
Thanks,
Helge
--- debian/rules.org 2022-08-17 06:09:55.850853504 +0000
+++ debian/rules 2022-08-17 06:10:21.906723720 +0000
@@ -13,6 +13,8 @@
CFLAGS := $(shell dpkg-buildflags --get CPPFLAGS; dpkg-buildflags --get CFLAGS)
CXXFLAGS := $(shell dpkg-buildflags --get CPPFLAGS; dpkg-buildflags --get CXXFLAGS)
LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
+CFLAGS += -D_LARGE_FILE_SOURCE=1 -D_FILE_OFFSET_BITS=64
+CXXFLAGS += -D_LARGE_FILE_SOURCE=1 -D_FILE_OFFSET_BITS=64
export CFLAGS
export CXXFLAGS
export LDFLAGS