From 2cdbd72f7b29f6f32df364104e7d8c308c07fa4f Mon Sep 17 00:00:00 2001 From: marino Date: Tue, 6 May 2014 17:24:31 +0000 Subject: games/doomsday: Unbreak on DragonFly (note OSVERSION used without OPSYS) OPVERSION always requires coupling with OPSYS to be correct, but normally I let "<" comparison violators go because it never equates to "true" on DragonFly. This is a rare case where DragonFly needs the comparison to be true. Add a couple of OPSYS to fix the recent breakage on DragonFly. --- games/doomsday/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/doomsday/Makefile b/games/doomsday/Makefile index 10be40bd64c8..3e495fe852ed 100644 --- a/games/doomsday/Makefile +++ b/games/doomsday/Makefile @@ -41,7 +41,7 @@ OPENAL_QMAKE_OFF= CONFIG+=deng_noopenal PORTSCOUT= limit:^\d+\.\d+\.\d+$$ .include -.if ${OSVERSION} < 1000052 +.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} < 1000052) LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo .endif -- cgit