Ignore:
Timestamp:
Jan 30, 2014 4:33:27 AM (10 years ago)
Author:
nanang
Message:

Close #1730: Added srtp_deinit()/shutdown() detection for external SRTP in configure script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r4721 r4723  
    652652ac_pjmedia_snd 
    653653ac_pjmedia_resample 
     654ac_srtp_shutdown_present 
     655ac_srtp_deinit_present 
    654656ac_external_srtp 
    655657ac_external_gsm 
     
    58465848 
    58475849 
     5850if test "x$ac_external_srtp" = "x1"; then 
     5851        ac_srtp_deinit_present=0 
     5852 
     5853        ac_srtp_shutdown_present=0 
     5854 
     5855        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for srtp_deinit in -lsrtp" >&5 
     5856$as_echo_n "checking for srtp_deinit in -lsrtp... " >&6; } 
     5857if ${ac_cv_lib_srtp_srtp_deinit+:} false; then : 
     5858  $as_echo_n "(cached) " >&6 
     5859else 
     5860  ac_check_lib_save_LIBS=$LIBS 
     5861LIBS="-lsrtp  $LIBS" 
     5862cat confdefs.h - <<_ACEOF >conftest.$ac_ext 
     5863/* end confdefs.h.  */ 
     5864 
     5865/* Override any GCC internal prototype to avoid an error. 
     5866   Use char because int might match the return type of a GCC 
     5867   builtin and then its argument prototype would still apply.  */ 
     5868#ifdef __cplusplus 
     5869extern "C" 
     5870#endif 
     5871char srtp_deinit (); 
     5872int 
     5873main () 
     5874{ 
     5875return srtp_deinit (); 
     5876  ; 
     5877  return 0; 
     5878} 
     5879_ACEOF 
     5880if ac_fn_c_try_link "$LINENO"; then : 
     5881  ac_cv_lib_srtp_srtp_deinit=yes 
     5882else 
     5883  ac_cv_lib_srtp_srtp_deinit=no 
     5884fi 
     5885rm -f core conftest.err conftest.$ac_objext \ 
     5886    conftest$ac_exeext conftest.$ac_ext 
     5887LIBS=$ac_check_lib_save_LIBS 
     5888fi 
     5889{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_srtp_srtp_deinit" >&5 
     5890$as_echo "$ac_cv_lib_srtp_srtp_deinit" >&6; } 
     5891if test "x$ac_cv_lib_srtp_srtp_deinit" = xyes; then : 
     5892  ac_srtp_deinit_present=1 
     5893fi 
     5894 
     5895        if test "x$ac_srtp_deinit_present" != "x1"; then 
     5896                { $as_echo "$as_me:${as_lineno-$LINENO}: checking for srtp_shutdown in -lsrtp" >&5 
     5897$as_echo_n "checking for srtp_shutdown in -lsrtp... " >&6; } 
     5898if ${ac_cv_lib_srtp_srtp_shutdown+:} false; then : 
     5899  $as_echo_n "(cached) " >&6 
     5900else 
     5901  ac_check_lib_save_LIBS=$LIBS 
     5902LIBS="-lsrtp  $LIBS" 
     5903cat confdefs.h - <<_ACEOF >conftest.$ac_ext 
     5904/* end confdefs.h.  */ 
     5905 
     5906/* Override any GCC internal prototype to avoid an error. 
     5907   Use char because int might match the return type of a GCC 
     5908   builtin and then its argument prototype would still apply.  */ 
     5909#ifdef __cplusplus 
     5910extern "C" 
     5911#endif 
     5912char srtp_shutdown (); 
     5913int 
     5914main () 
     5915{ 
     5916return srtp_shutdown (); 
     5917  ; 
     5918  return 0; 
     5919} 
     5920_ACEOF 
     5921if ac_fn_c_try_link "$LINENO"; then : 
     5922  ac_cv_lib_srtp_srtp_shutdown=yes 
     5923else 
     5924  ac_cv_lib_srtp_srtp_shutdown=no 
     5925fi 
     5926rm -f core conftest.err conftest.$ac_objext \ 
     5927    conftest$ac_exeext conftest.$ac_ext 
     5928LIBS=$ac_check_lib_save_LIBS 
     5929fi 
     5930{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_srtp_srtp_shutdown" >&5 
     5931$as_echo "$ac_cv_lib_srtp_srtp_shutdown" >&6; } 
     5932if test "x$ac_cv_lib_srtp_srtp_shutdown" = xyes; then : 
     5933  ac_srtp_shutdown_present=1 
     5934fi 
     5935 
     5936        fi 
     5937fi 
    58485938 
    58495939ac_pjmedia_resample=libresample 
Note: See TracChangeset for help on using the changeset viewer.