10 lines
249 B
Makefile
10 lines
249 B
Makefile
# $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
|