On Mac OS X Snow Leopard with ABI=64, configure was selecting a 32-bit
build (and then failing in the assembler). Override its choice on Darwin/x86_64 by specifying KERNEL_BITS=${ABI} in CONFIGURE_ENV.
This commit is contained in:
parent
9315542767
commit
0efaad1271
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.271 2021/05/24 19:53:55 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.272 2021/07/09 18:22:56 schmonz Exp $
|
||||
|
||||
# Remember to upload-distfiles when updating OpenSSL -- otherwise it
|
||||
# is not possible for users who have bootstrapped without OpenSSL
|
||||
|
@ -33,6 +33,11 @@ CONFIGURE_ARGS+= shared
|
|||
CONFIGURE_ARGS+= no-async
|
||||
.endif
|
||||
|
||||
# Fix 64-bit build on at least Mac OS X Snow Leopard
|
||||
.if ${OPSYS} == "Darwin" && ${MACHINE_ARCH} == "x86_64"
|
||||
CONFIGURE_ENV+= KERNEL_BITS=${ABI}
|
||||
.endif
|
||||
|
||||
.include "options.mk"
|
||||
|
||||
CONFIGURE_ARGS+= ${CFLAGS} ${LDFLAGS}
|
||||
|
|
Loading…
Reference in a new issue