diff options
author | adrianp <adrianp> | 2004-11-27 06:44:00 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2004-11-27 06:44:00 +0000 |
commit | 5db6eaa2d3b47d52b2e1aab507bec8b93f1b9f5a (patch) | |
tree | dc62539d66672b0b8ff44e43b6c83bba4d0af654 /chat | |
parent | bb5a25d4699cd1e31676d087bca0a4a7bece2e65 (diff) | |
download | pkgsrc-5db6eaa2d3b47d52b2e1aab507bec8b93f1b9f5a.tar.gz |
Darwin needs CFLAGS+= -DBIND_8_COMPAT to build.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/bitchx/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/chat/bitchx/Makefile b/chat/bitchx/Makefile index 21c57009e34..06744e2e6de 100644 --- a/chat/bitchx/Makefile +++ b/chat/bitchx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2004/11/26 11:38:14 adam Exp $ +# $NetBSD: Makefile,v 1.33 2004/11/27 06:44:00 adrianp Exp $ DISTNAME= ircii-pana-1.1-final PKGNAME= bitchx-1.1 @@ -14,12 +14,17 @@ COMMENT= IRC client based on ircII # This package is not even remotely 64-bit clean NOT_FOR_PLATFORM= *-*-alpha *-*-sparc64 *-*-x86_64 -WRKSRC= ${WRKDIR}/BitchX +WRKSRC= ${WRKDIR}/BitchX USE_BUILDLINK3= YES USE_PKGINSTALL= YES GNU_CONFIGURE= YES CONFIGURE_ARGS= --with-ssl +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +CFLAGS+= -DBIND_8_COMPAT +.endif + .if defined(BITCHX_WITH_GTK) && !empty(BITCHX_WITH_GTK:M[Yy][Ee][Ss]) .include "../../graphics/imlib/buildlink3.mk" .include "../../x11/gnome-libs/buildlink3.mk" |