From a1fb084493b764bff2fb4ea5e5c262602e6ce07e Mon Sep 17 00:00:00 2001 From: sthen Date: Sun, 17 Feb 2008 23:25:17 +0000 Subject: [PATCH] On hppa, udiv_qrnnd is only provided as asm, which has been disabled with a "--disable-asm" configure flag. Remove this flag for hppa. Didn't build there before, and other arch are unaffected, so no bump. ok mbalmer --- security/libgcrypt/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile index 69dfb1ebbfe..2bb66362413 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2007/09/21 06:00:11 steven Exp $ +# $OpenBSD: Makefile,v 1.13 2008/02/17 23:25:17 sthen Exp $ COMMENT= crypto library based on code used in GnuPG @@ -30,7 +30,10 @@ SEPARATE_BUILD= concurrent CONFIGURE_STYLE= gnu CONFIGURE_ARGS= ${CONFIGURE_SHARED} \ - --enable-static \ - --disable-asm + --enable-static + +.if ${MACHINE_ARCH} != "hppa" +CONFIGURE_ARGS+= --disable-asm +.endif .include