Disable stripping on Darwin.
Fixes "dyld: Symbol not found: _allow_severity". From Andreas Kusalananda Kähäri on pkgsrc-users.
This commit is contained in:
parent
e0e8b64923
commit
bb53e6390b
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.230 2015/06/12 10:51:03 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.231 2015/07/04 08:07:28 wiz Exp $
|
||||
|
||||
DISTNAME= openssh-6.6p1
|
||||
PKGNAME= openssh-6.6.1
|
||||
|
@ -33,6 +33,11 @@ INSTALL_TARGET= install-nokeys
|
|||
|
||||
.include "options.mk"
|
||||
|
||||
.if ${OPSYS} == "Darwin"
|
||||
# fixes: dyld: Symbol not found: _allow_severity
|
||||
CONFIGURE_ARGS+= --disable-strip
|
||||
.endif
|
||||
|
||||
.if ${OPSYS} == "Interix"
|
||||
|
||||
# OpenSSH on Interix has some important caveats
|
||||
|
|
Loading…
Reference in a new issue