30d0a555e3
pjsua is an open source command line SIP user agent that is used as the reference implementation for PJSIP and PJMEDIA. It has many features, such as: * Mutiple identities/account registrations * Concurrent calls and conference (unlimited number, but only up to 254 sources can be mixed to a single destination) * Call features: call hold, call transfer (attended or unattended, with or without refersub). * SIP Presence/SIMPLE with PIDF and XPIDF support. PUBLISH support. * Instant messaging and message composing indication * DTMF digits transmission/receipt (RFC 2833) * WAV file playing, streaming, and recording. * Accoustic echo cancellation (AEC). * Auto-answer, auto-play file, auto-loop RTP * Support SIP UDP, TCP, and TLS transports. Support for DNS SRV resolution. * NAT traversal with rport and STUN. * Tone generation. * Codecs: PCMA, PCMU, GSM, Speex (including wideband/16KHz and ultra-wideband/32KHz), L16 (8-48KHz, mono or stereo), and iLBC. * Adaptive jitter buffer, adaptive silence detection, and packet lost concealment audio features. With lots of testing and help from todd@, sthen@, jakemsr@, jolan@ and Benny Prijono. ok todd@ sthen@
26 lines
770 B
Plaintext
26 lines
770 B
Plaintext
$OpenBSD: patch-pjlib_build_os-openbsd_mak,v 1.1.1.1 2007/10/27 04:34:23 deanna Exp $
|
|
--- pjlib/build/os-openbsd.mak.orig Sat Jun 2 19:16:29 2007
|
|
+++ pjlib/build/os-openbsd.mak Sat Jun 2 19:31:37 2007
|
|
@@ -0,0 +1,21 @@
|
|
+#
|
|
+# OS specific configuration for OpenBSD OS target.
|
|
+#
|
|
+
|
|
+# Determine OS specific files
|
|
+AC_OS_OBJS= file_access_unistd.o file_io_ansi.o os_core_unix.o \
|
|
+ os_error_unix.o os_time_unix.o os_timestamp_posix.o \
|
|
+ guid_simple.o ioqueue_select.o
|
|
+
|
|
+export PJLIB_OBJS += $(AC_OS_OBJS) \
|
|
+ addr_resolv_sock.o \
|
|
+ log_writer_stdout.o \
|
|
+ os_timestamp_common.o \
|
|
+ pool_policy_malloc.o sock_bsd.o sock_select.o
|
|
+
|
|
+export TEST_OBJS += main.o
|
|
+
|
|
+export TEST_LDFLAGS += -lm -lpthread -lssl -lcrypto
|
|
+
|
|
+export TARGETS = pjlib pjlib-test
|
|
+
|