Ignore:
Timestamp:
Sep 22, 2017 2:42:22 AM (7 years ago)
Author:
ming
Message:

Re #1993: With the update of bundled libSRTP to 2.1, external SRTP needs to be of version 2.x as well. This changeset will allow external SRTP users the option to continue using their current version 1.x.

  • Also add autodetection of external SRTP version via the configure script.

Thanks to Alexander Traud for the report.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/build.mak.in

    r5606 r5656  
    2929export APP_THIRD_PARTY_LIB_FILES := 
    3030 
    31 ifeq (@ac_external_srtp@,1) 
     31ifneq (@ac_external_srtp@,0) 
    3232# External SRTP library 
    33 APP_THIRD_PARTY_EXT += -lsrtp 
     33APP_THIRD_PARTY_EXT += -l@ac_external_srtp_lib@ 
    3434else 
    3535APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libsrtp-$(LIB_SUFFIX) 
Note: See TracChangeset for help on using the changeset viewer.