diff options
author | riastradh <riastradh> | 2013-01-19 20:40:55 +0000 |
---|---|---|
committer | riastradh <riastradh> | 2013-01-19 20:40:55 +0000 |
commit | b0e503050f64aa2a3c873f05baf3be76c3a16035 (patch) | |
tree | ee13f5ff9db9e9e1b912d1c5246fde12d241f40a /graphics | |
parent | 085b0396f80026d87797f356909169ba88e38cc3 (diff) | |
download | pkgsrc-b0e503050f64aa2a3c873f05baf3be76c3a16035.tar.gz |
Don't link against libexecinfo on NetBSD 6; it's new in 7.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/blender/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index fda56f8253a..2192292e8d2 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.84 2013/01/02 02:22:07 ryoon Exp $ +# $NetBSD: Makefile,v 1.85 2013/01/19 20:40:55 riastradh Exp $ DISTNAME= blender-2.65a +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://download.blender.org/source/ @@ -24,7 +25,8 @@ FIND_PREFIX:= SCONSDIR=scons INSTALLATION_DIRS= bin share/blender .if ${OPSYS} == "NetBSD" -.if !empty(OS_VERSION:M6.*) +# This doesn't seem right... +.if !empty(OS_VERSION:M6.99.*) || !empty(OS_VERSION:M7.*) LDFLAGS+= -lexecinfo .endif .endif |