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@
51 lines
2.0 KiB
Plaintext
51 lines
2.0 KiB
Plaintext
$OpenBSD: patch-aconfigure,v 1.1.1.1 2007/10/27 04:34:23 deanna Exp $
|
|
--- aconfigure.orig Sat Jun 2 20:16:57 2007
|
|
+++ aconfigure Sat Jun 2 20:17:59 2007
|
|
@@ -9573,13 +9573,13 @@ if test $ac_cv_header_openssl_ssl_h = yes; then
|
|
fi
|
|
|
|
|
|
- echo "$as_me:$LINENO: checking for SSL_library_init in -lssl" >&5
|
|
-echo $ECHO_N "checking for SSL_library_init in -lssl... $ECHO_C" >&6
|
|
+ echo "$as_me:$LINENO: checking for SSL_library_init in -lssl -lcrypto" >&5
|
|
+echo $ECHO_N "checking for SSL_library_init in -lssl -lcrypto... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ssl_SSL_library_init+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lssl $LIBS"
|
|
+LIBS="-lssl -lcrypto $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -9638,16 +9638,16 @@ fi
|
|
echo "$as_me:$LINENO: result: $ac_cv_lib_ssl_SSL_library_init" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ssl_SSL_library_init" >&6
|
|
if test $ac_cv_lib_ssl_SSL_library_init = yes; then
|
|
- libssl_present=1 && LIBS="$LIBS -lssl"
|
|
+ libssl_present=1 && LIBS="$LIBS -lssl -lcrypto"
|
|
fi
|
|
|
|
- echo "$as_me:$LINENO: checking for ERR_load_BIO_strings in -lcrypto" >&5
|
|
-echo $ECHO_N "checking for ERR_load_BIO_strings in -lcrypto... $ECHO_C" >&6
|
|
+ echo "$as_me:$LINENO: checking for ERR_load_BIO_strings in -lcrypto -lssl" >&5
|
|
+echo $ECHO_N "checking for ERR_load_BIO_strings in -lcrypto -lssl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_crypto_ERR_load_BIO_strings+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lcrypto $LIBS"
|
|
+LIBS="-lcrypto -lssl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -9706,7 +9706,7 @@ fi
|
|
echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_ERR_load_BIO_strings" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_crypto_ERR_load_BIO_strings" >&6
|
|
if test $ac_cv_lib_crypto_ERR_load_BIO_strings = yes; then
|
|
- libcrypto_present=1 && LIBS="$LIBS -lcrypto"
|
|
+ libcrypto_present=1 && LIBS="$LIBS -lcrypto -lssl"
|
|
fi
|
|
|
|
if test "x$openssl_h_present" = "x1" -a "x$libssl_present" = "x1" -a "x$libcrypto_present" = "x1"; then
|