diff options
author | rillig <rillig@pkgsrc.org> | 2006-09-02 19:23:51 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-09-02 19:23:51 +0000 |
commit | 68b5611e8ca1bd57388cebbc1db23d570dd70073 (patch) | |
tree | 09c01ce5f767d626af0c35c45287fc369151e4b3 /www | |
parent | 3c0f27aa1dbffd187b3eb5b86e049e7cda2ddeaf (diff) | |
download | pkgsrc-68b5611e8ca1bd57388cebbc1db23d570dd70073.tar.gz |
Fixed the build on NetBSD by defining _NETBSD_SOURCE, which overrides
_XOPEN_SOURCE in some files. The latter definition had hidden the type
definition for fd_set.
Diffstat (limited to 'www')
-rw-r--r-- | www/drivel/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/drivel/Makefile b/www/drivel/Makefile index 7da630ae08d..f75412a378e 100644 --- a/www/drivel/Makefile +++ b/www/drivel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2006/08/06 07:53:36 jmmv Exp $ +# $NetBSD: Makefile,v 1.34 2006/09/02 19:23:51 rillig Exp $ # DISTNAME= drivel-2.0.3 @@ -15,6 +15,8 @@ USE_DIRS+= gnome2-1.5 USE_TOOLS+= gmake intltool msgfmt pkg-config USE_PKGLOCALEDIR= YES +CPPFLAGS.NetBSD+= -D_NETBSD_SOURCE + GCONF2_SCHEMAS= drivel.schemas BUILDLINK_API_DEPENDS.curl+= curl>=7.14.0nb1 |