Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 May 2013 21:15:42 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317436 - head/games/mvdsv/files
Message-ID:  <201305052115.r45LFgEl055321@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sun May  5 21:15:42 2013
New Revision: 317436
URL: http://svnweb.freebsd.org/changeset/ports/317436

Log:
  Fix build with bmake

Added:
  head/games/mvdsv/files/
  head/games/mvdsv/files/patch-Makefile.BSD   (contents, props changed)

Added: head/games/mvdsv/files/patch-Makefile.BSD
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/mvdsv/files/patch-Makefile.BSD	Sun May  5 21:15:42 2013	(r317436)
@@ -0,0 +1,20 @@
+--- ./Makefile.BSD.orig	2009-09-24 22:16:17.000000000 +0200
++++ ./Makefile.BSD	2013-05-05 23:13:58.797891197 +0200
+@@ -97,7 +97,7 @@
+ 		${SV_DIR}/pcre/get.o \
+ 		${SV_DIR}/pcre/pcre.o
+ 
+-.if ${USE_ASM} == ${ASM}
++.if defined(ASM) && ${USE_ASM} == ${ASM}
+ SV_ASM_OBJS = \
+ 		${SV_DIR}/bothtoolsa.o \
+ 		${SV_DIR}/math.o
+@@ -119,7 +119,7 @@
+ 		${QWDTOOLS_DIR}/sync.o \
+ 		${QWDTOOLS_DIR}/tools.o
+ 
+-.if ${USE_ASM} == ${ASM}
++.if defined(ASM) && ${USE_ASM} == ${ASM}
+ QWDTOOLS_ASM_OBJS = \
+ 		${SV_DIR}/bothtoolsa.o
+ .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305052115.r45LFgEl055321>