diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-11-05 17:26:19 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-11-05 17:26:19 +0000 |
commit | 234f9e670b11991ca8a4f124b0c8d34e4b13f3e8 (patch) | |
tree | d0c7a71daecbd44cdfb11b869548bacdbdff8508 | |
parent | Update to 0.2.0. (diff) |
- Add a workaround to fix build on FreeBSD 10.0 i386
Notes
Notes:
svn path=/head/; revision=285106
-rw-r--r-- | security/libgcrypt/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile index c3702342224b..75800fbf35e8 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -38,6 +38,9 @@ CONFIGURE_ARGS+= --disable-asm .elif ${ARCH} == "i386" .if (${OSVERSION} < 900033) CONFIGURE_ARGS+= --disable-aesni-support +#workaround for FreeBSD 10.0 +.elif (${OSVERSION} >= 1000000) +CONFIGURE_ARGS+= --disable-asm .endif .endif .if (${OSVERSION} < 700000) |