diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-07-24 14:02:55 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-07-24 14:02:55 +0200 |
commit | f6336388c12cfb2f4f28a26543aedbbcbe543c6c (patch) | |
tree | 319f507121c35bf0172f287b6134ed87e328aca1 /debian | |
parent | 394226176470708cc108b0149c528c7eac125bbb (diff) |
Disable Link time optimization; eclare compliance with Debian Policy 4.6.1.0
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index bc8d6e2..5efa696 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +psocksxx (1.1.1-3) UNRELEASED; urgency=medium + + * Disable Link time optimization (Closes: #1015593): + - debian/rules: Add optimize=-lto to DEB_BUILD_MAINT_OPTIONS. + * Declare compliance with Debian Policy 4.6.1.0 (No changes needed). + + -- Jörg Frings-Fürst <debian@jff.email> Sat, 02 Jul 2022 07:42:02 +0200 + psocksxx (1.1.1-2) unstable; urgency=medium * Fix ftbfs with GCC-11 (Closes: #984299): diff --git a/debian/control b/debian/control index b27adbf..2bffcb8 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Build-Depends: libcppunit-dev Build-Depends-Indep: doxygen -Standards-Version: 4.6.0.1 +Standards-Version: 4.6.1.0 Rules-Requires-Root: no Homepage: https://nukedzn.github.io/psocksxx Vcs-Git: git://jff.email/opt/git/psocksxx.git diff --git a/debian/rules b/debian/rules index 1e136b7..a07171e 100755 --- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ include /usr/share/dpkg/default.mk # # Hardening # -export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export DEB_BUILD_MAINT_OPTIONS = hardening=+all, optimize=-lto # # add -Wall to compilerflags |