get rid of un-needed cppflags in optflags, as it causes the compile to

fail on macosx (complains about -isystem).
This commit is contained in:
chuck 2010-12-15 19:08:21 +00:00
parent b3b123d364
commit 9ef80d9cd8
3 changed files with 6 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.66 2010/06/13 22:44:38 wiz Exp $
# $NetBSD: Makefile,v 1.67 2010/12/15 19:08:21 chuck Exp $
DISTNAME= magicpoint-1.13a
PKGREVISION= 3
@ -79,3 +79,4 @@ post-install:
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXmu/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
# DO NOT DELETE

View file

@ -1,11 +1,11 @@
$NetBSD: distinfo,v 1.16 2008/09/10 13:32:47 taca Exp $
$NetBSD: distinfo,v 1.17 2010/12/15 19:08:21 chuck Exp $
SHA1 (magicpoint-1.13a.tar.gz) = 2bc662ad0a482d42578766258a143b06a4718ae3
RMD160 (magicpoint-1.13a.tar.gz) = 067d7dee3b90ec354975d9ad4ea0c0df48cca191
Size (magicpoint-1.13a.tar.gz) = 890670 bytes
SHA1 (patch-aa) = 7270255c2002c66d10ab911ed22ce67067183e17
SHA1 (patch-ab) = eb6558d6981e5d5f41f55dddc1b3debc9ca27d36
SHA1 (patch-ac) = 9442e1893475ff53180f7facce0f31bf2e412759
SHA1 (patch-ac) = b886607033a89e3ab46c41a2a5a8368b473682f4
SHA1 (patch-ad) = 33c8fa61cb03cb53ad8783d2d79fa457cb21d235
SHA1 (patch-ae) = ca59b94955f2de6f19ea1e2210ede7eaeba50a95
SHA1 (patch-af) = 615e845dfbeba9b35c5a138841962631dac3b4bb

View file

@ -1,4 +1,4 @@
$NetBSD: patch-ac,v 1.3 2008/09/10 13:32:47 taca Exp $
$NetBSD: patch-ac,v 1.4 2010/12/15 19:08:22 chuck Exp $
--- Imakefile.in.orig 2007-12-03 18:08:40.000000000 +0900
+++ Imakefile.in
@ -6,7 +6,7 @@ $NetBSD: patch-ac,v 1.3 2008/09/10 13:32:47 taca Exp $
OPTFLAGS= @OPTFLAGS@ ${CPPFLAGS}
DEFS= @DEFS@ -DMGPLIBDIR=\"$(LIBDIR)/mgp\"
#DEFS+= -DGLYPHEDGE
+DEPENDFLAGS= $(DEFS) $(OPTFLAGS)
+DEPENDFLAGS= $(DEFS) @OPTFLAGS@
-SYS_LIBRARIES= -L$(srcdir)/image -lmgpimage @LIBS@
+SYS_LIBRARIES= -L$(srcdir)/image -lmgpimage @LDFLAGS@ @LIBS@