10 lines
286 B
Makefile
10 lines
286 B
Makefile
# $NetBSD: hacks.mk,v 1.1 2005/10/31 15:23:54 tv Exp $
|
|
|
|
###
|
|
### Define socklen_t on platforms without it (there's no easy autoconf
|
|
### CHECK_TYPE check to insert this without depending on autoconf)
|
|
###
|
|
.if ${OPSYS} == "Interix"
|
|
PKG_HACKS+= socklen-int
|
|
CPPFLAGS+= -Dsocklen_t=int
|
|
.endif
|