Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 01 Mar 2015 21:46:12 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 196236] graphics/shotwell: Segmentation fault
Message-ID:  <bug-196236-13-FokZ9exp7K@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-196236-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-196236-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196236

John Marino <marino@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marino@FreeBSD.org

--- Comment #10 from John Marino <marino@FreeBSD.org> ---
This doesn't look right to me.

1) the whole point of using USES=compiler: is to avoid having to use OSVERSION.
 you have OSVERSION check before setting USES=compiler

2) You use OSVERSION without checking OPSYS.  This breaks OPSYS=DragonFly.

3) More DragonFly incompatibility -- DragonFly has libgomp in base and does not
have libc++ 

I would say at the very least do something like:

.if ${PORT_OPTIONS:MOPENMP}
. if ${OPSYS} == FreeBSD
[your stuff]
. endif
.endif

that should be fine for dragonfly since it supports gomp in base.

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-196236-13-FokZ9exp7K>