Source: netsurf Version: 3.6-3.1 Severity: normal Tags: patch With gcc in stretch defaulting to PIE, hardening=+all,-pie changed semantics from "enable hardening but not PIE" to "enable all hardening and explicitely disable the default PIE". The latter is usually not intended.
The -pie in hardening flags was in some cases required in pre-stretch releases to avoid build failures caused by (incorrectly) passing -fPIE to the compiler when building shared libraries or plugins. This problem does no longer exist. Please consider applying the following patch: --- debian/rules.old 2017-04-03 12:49:52.000000000 +0000 +++ debian/rules 2017-04-03 12:50:04.000000000 +0000 @@ -4,7 +4,7 @@ # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 -export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie +export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_CFLAGS_MAINT_APPEND = -Wno-error export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

