ENet 1.3.17 (November 15, 2020): * fixes for sender getting too far ahead or receiver that can cause instability with reliable packets ENet 1.3.16 (September 8, 2020): * fix bug in unreliable fragment queuing * use single output queue for reliable and unreliable packets for saner ordering * revert experimental throttle changes that were less stable than prior algorithm
20 lines
505 B
Makefile
20 lines
505 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/11/26 15:36:59 nia Exp $
|
|
|
|
DISTNAME= enet-1.3.17
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://enet.bespin.org/download/
|
|
|
|
MAINTAINER= Pseudo.Statistic@gmail.com
|
|
HOMEPAGE= http://enet.bespin.org/
|
|
COMMENT= Network communication layer that runs on top of UDP
|
|
LICENSE= mit
|
|
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyname_r=no
|
|
CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyaddr_r=no
|
|
|
|
PKGCONFIG_OVERRIDE+= libenet.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|