diff options
Diffstat (limited to 'security/libgcrypt/Makefile')
-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 a6fd582255f0..447934dc56d7 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -31,6 +31,9 @@ INFO= gcrypt .if ${ARCH} == "powerpc" CONFIGURE_ARGS+= --disable-asm .endif +.if (${OSVERSION} < 700000) +CONFIGURE_ARGS+= --disable-padlock-support +.endif post-patch: @${REINPLACE_CMD} -e "s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|" \ |