[Pkg-openssl-changes] r604 - openssl/trunk/debian

Kurt Roeckx kroeckx at alioth.debian.org
Mon May 20 15:18:42 UTC 2013


Author: kroeckx
Date: 2013-05-20 15:18:42 +0000 (Mon, 20 May 2013)
New Revision: 604

Modified:
   openssl/trunk/debian/changelog
   openssl/trunk/debian/rules
Log:
enable ec_nistp_64_gcc_128 on *-amd64 (Closes: #698447)


Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog	2013-05-20 14:59:55 UTC (rev 603)
+++ openssl/trunk/debian/changelog	2013-05-20 15:18:42 UTC (rev 604)
@@ -8,6 +8,7 @@
   * Enable assembler for the arm targets, and remove armeb.
     Patch by Riku Voipio <riku.voipio at iki.fi> (Closes: #676533)
   * Add support for x32 (Closes: #698406)
+  * enable ec_nistp_64_gcc_128 on *-amd64 (Closes: #698447)
 
  -- Kurt Roeckx <kurt at roeckx.be>  Mon, 20 May 2013 16:56:06 +0200
 

Modified: openssl/trunk/debian/rules
===================================================================
--- openssl/trunk/debian/rules	2013-05-20 14:59:55 UTC (rev 603)
+++ openssl/trunk/debian/rules	2013-05-20 15:18:42 UTC (rev 604)
@@ -18,6 +18,7 @@
 # The binary architeture
 DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH)
 DEB_HOST_MULTIARCH=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+DEB_HOST_ARCH_CPU=$(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
 
 CONFARGS  = --prefix=/usr --openssldir=/usr/lib/ssl --libdir=lib/$(DEB_HOST_MULTIARCH) no-idea no-mdc2 no-rc5 zlib  enable-tlsext no-ssl2
 OPT_alpha = ev4 ev5
@@ -26,6 +27,10 @@
 OPTS      = $($(ARCHOPTS))
 WANTED_LIBC_VERSION = 2.3.1-10
 
+ifeq ($(DEB_HOST_ARCH_CPU), amd64)
+	CONFARGS += enable-ec_nistp_64_gcc_128
+endif
+
 build: build-arch build-indep
 build-arch: build-stamp
 build-indep: build-stamp




More information about the Pkg-openssl-changes mailing list