diff options
author | tron <tron@pkgsrc.org> | 2006-02-06 14:37:43 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-02-06 14:37:43 +0000 |
commit | 4e83f7c678f065ad803c282045c924ac4a437b97 (patch) | |
tree | d9e4e261d2a911027fda2e75e923e36ce0feb24d | |
parent | edf5e2ee0b6b751f971150f446b3820b5b345e74 (diff) | |
download | pkgsrc-4e83f7c678f065ad803c282045c924ac4a437b97.tar.gz |
Readd "libc" hack (which wasn't removed completely anyway) to fix
broken build under Mac OS X.
-rw-r--r-- | mail/elm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/elm/Makefile b/mail/elm/Makefile index 379383e2bc8..b406472db03 100644 --- a/mail/elm/Makefile +++ b/mail/elm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2006/02/05 23:09:54 joerg Exp $ +# $NetBSD: Makefile,v 1.40 2006/02/06 14:37:43 tron Exp $ DISTNAME= elm2.5.8 PKGNAME= elm-2.5.8 @@ -22,6 +22,12 @@ USE_TOOLS= nroff .include "../../mk/bsd.prefs.mk" +.if (${OPSYS} == Darwin) +LIBC= /usr/lib/libSystem.dylib +.else +LIBC= /usr/lib/libc.so +.endif + pre-configure: ${CP} ${FILESDIR}/config.sh ${WRKSRC}/config.sh.orig ${SED} -e 's:PREFIX:${PREFIX}:g' \ |