pkgsrc/shells/zsh3/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

16 lines
430 B
Makefile

# $NetBSD: hacks.mk,v 1.3 2005/12/05 20:50:59 rillig Exp $
.if !defined(ZSH3_HACKS_MK)
ZSH3_HACKS_MK= # defined
### [Mon Jan 24 22:27:33 UTC 2005 : tv]
### for some reason, the GETPGRP_VOID test is not working correctly;
### also, ut_xtime (the obsolescent utmpx field) is changed
###
.if ${OPSYS} == "Interix"
PKG_HACKS+= compat
CONFIGURE_ENV+= ac_cv_func_getpgrp_void=yes
CPPFLAGS+= -Dut_xtime=ut_tv.tv_sec
.endif
.endif