New upstream version 2.1.4

This commit is contained in:
geos_one
2025-08-18 09:55:49 +02:00
parent beb2263461
commit 4d35b606e8
8 changed files with 29 additions and 7 deletions

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
freenx-server (2.1.4) UNRELEASED; urgency=low
* Add patches from Mario Fetka (@geosone) for debian trixie
-- Dmitry Borisov <i@dimbor.ru> Mon, 18 Aug 2025 00:27:25 +0300
freenx-server (2.1.3) UNRELEASED; urgency=low
* Fixing a funny misunderstanding with localization.

13
debian/rules vendored
View File

@@ -2,5 +2,18 @@
export DH_VERBOSE=1
# Make sure lintian does not complain about missing hardenings.
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
# Make sure the decades-old source code gets compiled by allowing implicit
# function declarations and, for gcc-14 and above, by downgrading the
# diagnostics applied by the compiler. See
# https://gcc.gnu.org/onlinedocs/gcc-14.1.0/gcc/Warning-Options.html
# for further details.
export DEB_CFLAGS_MAINT_STRIP=-Werror=implicit-function-declaration
cc_major := $(shell $(CC) --version | head -n1 | cut -d' ' -f4 | cut -d. -f1)
cc_major_ge_14 := $(shell [ $(cc_major) -ge 14 ] && echo 'true')
export DEB_CFLAGS_MAINT_APPEND=$(if $(cc_major_ge_14),-fpermissive)
%:
dh $@