svn commit: r384052 - in head/games/tomenet: . files

Dmitry Marakasov amdmi3 at amdmi3.ru
Wed Apr 15 15:38:16 UTC 2015


* John Marino (freebsd.contact at marino.st) wrote:

> > Log:
> >   - Fix build on < 10.x
> >   - Respect CC
> >   
> >   Approved by:	portmgr blanket
> > 
> > Modified:
> >   head/games/tomenet/Makefile
> >   head/games/tomenet/files/patch-makefile
> > 
> > Modified: head/games/tomenet/Makefile
> > ==============================================================================
> > --- head/games/tomenet/Makefile	Wed Apr 15 13:46:34 2015	(r384051)
> > +++ head/games/tomenet/Makefile	Wed Apr 15 13:54:43 2015	(r384052)
> > @@ -31,6 +31,12 @@ OPTIONS_DEFINE=	DOCS
> >  
> >  .include <bsd.port.options.mk>
> >  
> > +.if ${OSVERSION} < 1000000
> > +LIB_DEPENDS+=	libexecinfo.so:${PORTSDIR}/devel/libexecinfo
> > +CFLAGS+=	-I${LOCALBASE}/include
> > +LIBS+=		-L${LOCALBASE}/lib
> > +.endif
> > +
> 
> 1) OSVERSION is used without OPSYS here
> 2) it matters because DragonFly needs libexecinfo
> 3) why wasn't USES+= libexec used?

Hmm, wasn't aware of USES=execinfo and completely forgot about
dragonfly. As I guess, this actually needs unconditional USES=execinfo
and conditional flags:

.if ${OPSYS} == DragonFly || ${OSVERSION} < 1000000
CFLAGS+=	-I${LOCALBASE}/include
LIBS+=		-L${LOCALBASE}/lib
.fi

Correct?

-- 
Dmitry Marakasov   .   55B5 0596 FF1E 8D84 5F56  9510 D35A 80DD F9D2 F77D
amdmi3 at amdmi3.ru  ..:  jabber: amdmi3 at jabber.ru      http://amdmi3.ru


More information about the svn-ports-all mailing list