blob: a99d813c8c58c230238c10c739ea71e181016e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: hacks.mk,v 1.1 2018/11/14 15:25:28 hauke Exp $
.if !defined(SIPROXD_HACKS_MK)
SIPROXD_HACKS_MK= # defined
### [Sunday January 7 15:09:27 MET 2007 : schwarz]
### Solaris (prior to Solaris 9) has inet_ntop in llib-lresolv,
### but proper header files and some defines are missing
###
.if ${OPSYS} == "SunOS"
. if ${OS_VERSION} < 5.9
PKG_HACKS+= no-proper-inet_ntop
CONFIGURE_ENV+= ac_cv_func_inet_ntop="no"
. endif
.endif
.endif
|