pkgsrc/archivers/advancecomp/hacks.mk
rillig b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-12-05 20:49:47 +00:00

14 lines
338 B
Makefile

# $NetBSD: hacks.mk,v 1.2 2005/12/05 20:49:47 rillig Exp $
.if !defined(ADVANCECOMP_HACKS_MK)
ADVANCECOMP_HACKS_MK= # defined
### [Fri Jan 21 21:44:32 UTC 2005 : tv]
### Interix system-supplied g++ 3.3 iostream has no "long long" support
###
.if ${OPSYS} == "Interix"
PKG_HACKS+= g++-iostream-longlong
GCC_REQD+= 3.3.4
.endif
.endif