diff options
author | dholland <dholland> | 2012-05-10 16:36:51 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-05-10 16:36:51 +0000 |
commit | d089ccad1c2e14cccee6f62d72de09c0abfe9a82 (patch) | |
tree | d34110e72e4722bc1c1d89dec98a8493edc7faae /audio/libgpod | |
parent | 729a035b76b0f802000e52a14ba5f752704b3187 (diff) | |
download | pkgsrc-d089ccad1c2e14cccee6f62d72de09c0abfe9a82.tar.gz |
Explicitly disable udev if not on Linux. Fixes my build; no clue why this
apparently didn't affect Joerg's.
Diffstat (limited to 'audio/libgpod')
-rw-r--r-- | audio/libgpod/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/libgpod/Makefile b/audio/libgpod/Makefile index 3ef4bb9e779..3a6477d2e83 100644 --- a/audio/libgpod/Makefile +++ b/audio/libgpod/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2012/04/27 12:31:33 obache Exp $ +# $NetBSD: Makefile,v 1.24 2012/05/10 16:36:51 dholland Exp $ DISTNAME= libgpod-0.8.2 PKGREVISION= 2 @@ -20,6 +20,12 @@ USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake intltool msgfmt pkg-config GNU_CONFIGURE= yes +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} != "Linux" +CONFIGURE_ARGS+= --disable-udev +.endif + .include "../../databases/sqlite3/buildlink3.mk" BUILDLINK_API_DEPENDS.glib2+= glib2>=2.15.0 .include "../../devel/glib2/buildlink3.mk" |