summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-13 10:53:57 +0000
committerColin Watson <cjwatson@debian.org>2014-02-13 10:53:57 +0000
commit8619df32f483f5b7424d4d0f295378f4bf9337bf (patch)
treeff0d466736d495cd1806188acbcb311b7c21a082
parentd9c13ef6ec9310358f1a1232e3e272507d6ae530 (diff)
Configure --without-hardening on hppa, to work around http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60155 (closes: #738798).
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules5
2 files changed, 12 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index fd3dee449..64742a3b3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
1openssh (1:6.5p1-4) UNRELEASED; urgency=medium
2
3 * Configure --without-hardening on hppa, to work around
4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60155 (closes: #738798).
5
6 -- Colin Watson <cjwatson@debian.org> Thu, 13 Feb 2014 10:53:22 +0000
7
1openssh (1:6.5p1-3) unstable; urgency=medium 8openssh (1:6.5p1-3) unstable; urgency=medium
2 9
3 * Clarify socket activation mode in README.Debian, as suggested by Uoti 10 * Clarify socket activation mode in README.Debian, as suggested by Uoti
diff --git a/debian/rules b/debian/rules
index c878d5e2d..888921670 100755
--- a/debian/rules
+++ b/debian/rules
@@ -73,6 +73,11 @@ ifeq ($(DEB_HOST_ARCH_OS),hurd)
73confflags += --with-libs=-lcrypt 73confflags += --with-libs=-lcrypt
74endif 74endif
75 75
76# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60155
77ifeq ($(DEB_HOST_ARCH),hppa)
78confflags += --without-hardening
79endif
80
76# Everything above here is common to the deb and udeb builds. 81# Everything above here is common to the deb and udeb builds.
77confflags_udeb := $(confflags) 82confflags_udeb := $(confflags)
78 83