package/botan: fix altivec support
authorBernd Kuhls <bernd.kuhls@t-online.de>
Sun, 26 Aug 2018 11:29:59 +0000 (13:29 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Mon, 27 Aug 2018 09:19:12 +0000 (11:19 +0200)
configure.py only supports --disable-altivec.

Fixes
http://autobuild.buildroot.net/results/318/3187afa3eea77e5de0e0fe14717bfc080da08117/

Added license hash URL.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/botan/botan.hash
package/botan/botan.mk

index df804bc1ef875180791232967537b8c3634f56f5..eeb94145b9d5b1616d53f5f8d5e72790737a1ab9 100644 (file)
@@ -1,4 +1,4 @@
-# Locally calculated after checking pgp signature
+# From https://botan.randombit.net/releases/sha256sums.txt
 sha256 e42df91556317588c6ca0e41bf796f9bd5ec5c70e0668e6c97c608c697c24a90  Botan-2.7.0.tgz
 # Locally computed
 sha256 40cfd35a9e34d18463806f57553c968fdbaf254a2e2a636d1d8e32ff6b698495  license.txt
index eb817f62d9f9ca9501095b72715ca9020dfbec16..39a2c4c72b5132ebc663134122e87e83de5b3aab 100644 (file)
@@ -70,9 +70,7 @@ BOTAN_DEPENDENCIES += zlib
 BOTAN_CONF_OPTS += --with-zlib
 endif
 
-ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y)
-BOTAN_CONF_OPTS += --enable-altivec
-else
+ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),)
 BOTAN_CONF_OPTS += --disable-altivec
 endif