blob: 3c8c69679f680b697fa249fa501a7728361d3435 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $NetBSD: hacks.mk,v 1.1 2005/11/08 14:07:11 tv Exp $
###
### Define socklen_t on platforms without it, until maintainer adds
### this check to autoconf tests
###
.if ${OPSYS} == "Interix"
PKG_HACKS+= socklen-int
CPPFLAGS+= -Dsocklen_t=int
.endif
|