This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository eclipse-pydev.
commit d977432fbcc572899e755741e7e7faae53e5f107 Author: Emmanuel Bourg <[email protected]> Date: Thu Oct 20 00:26:17 2016 +0200 Fixed the build failure with GCC 6 (Closes: #831097) --- debian/changelog | 7 +++++++ debian/rules | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index daced20..4bb0862 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +eclipse-pydev (3.9.2-5) UNRELEASED; urgency=medium + + * Team upload. + * Fixed the build failure with GCC 6 (Closes: #831097) + + -- Emmanuel Bourg <[email protected]> Thu, 20 Oct 2016 00:25:49 +0200 + eclipse-pydev (3.9.2-4) unstable; urgency=medium * Team upload. diff --git a/debian/rules b/debian/rules index 4a6d9b9..3cd9f17 100755 --- a/debian/rules +++ b/debian/rules @@ -13,7 +13,7 @@ BUILD_ID:=dist override_dh_auto_build-arch: mkdir debian/tmp - g++ -shared $$CPPFLAGS $$CXXFLAGS $$LDFLAGS -fPIC -nostartfiles -o attach_linux.so \ + g++ -shared $$CPPFLAGS $$CXXFLAGS $$LDFLAGS -std=gnu++98 -fPIC -nostartfiles -o attach_linux.so \ plugins/org.python.pydev/pysrc/pydevd_attach_to_process/linux/attach_linux.c override_jh_compilefeatures-arch: -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/eclipse-pydev.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

