pkgsrc/net/siproxd/hacks.mk
hauke 0a7840d110 Siproxd is a proxy daemon for the SIP protocol. It handles
registrations of SIP clients on a private IP network, and rewrites the
SIP message bodies to make SIP connections work via a NAT firewall.

Imported from wip/siproxd.
2018-11-14 15:25:28 +00:00

17 lines
444 B
Makefile

# $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