diff options
author | adrianp <adrianp@pkgsrc.org> | 2004-11-27 06:44:00 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2004-11-27 06:44:00 +0000 |
commit | 16f0dfd2983d5a73ddd6d9c09b53b59f370ab21a (patch) | |
tree | dc62539d66672b0b8ff44e43b6c83bba4d0af654 /chat/bitchx | |
parent | a27bbe878a194b613130bf21160dc639478eced0 (diff) | |
download | pkgsrc-16f0dfd2983d5a73ddd6d9c09b53b59f370ab21a.tar.gz |
Darwin needs CFLAGS+= -DBIND_8_COMPAT to build.
Diffstat (limited to 'chat/bitchx')
-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" |