diff options
author | riastradh <riastradh@pkgsrc.org> | 2013-01-19 20:40:55 +0000 |
---|---|---|
committer | riastradh <riastradh@pkgsrc.org> | 2013-01-19 20:40:55 +0000 |
commit | 764ccfbf6ef739d13073c5286c6166650ba6b2f4 (patch) | |
tree | ee13f5ff9db9e9e1b912d1c5246fde12d241f40a /graphics | |
parent | 3779e17898c4f18cb9cde9d5c2ce792169404dd3 (diff) | |
download | pkgsrc-764ccfbf6ef739d13073c5286c6166650ba6b2f4.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 |