by pancake ;) <poppnk@users.sourceforge.net>. Welcome to GNU ccRTP, the RTP protocol stack of GNU Common C++ and the GNU project. GNU ccRTP was created as a "generic" and high performance RTP stack and uses queued packet lists for both sending and receiving of realtime data. A single scheduler thread both schedules delivery of timestamped outgoing packets, and processes incoming packets into the receive queue. A seperate thread or process can then feed data into the stack for delivery and process pending requests without interfering with the stack service thread itself.
11 lines
265 B
Makefile
11 lines
265 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/04/17 00:54:16 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ccrtp
|
|
PKG_SUPPORTED_OPTIONS= debug
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|