Changeset 5568


Ignore:
Timestamp:
Mar 13, 2017 10:27:14 AM (7 years ago)
Author:
nanang
Message:

Misc (re #1994): Fixed linking errors when configuring with '--disable-speex-codec' and without '--disable-speex-aec' params.

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/build/os-auto.mak.in

    r5428 r5568  
    101101export CODEC_OBJS += speex_codec.o 
    102102 
    103 ifneq (@ac_no_speex_aec@,1) 
     103ifeq (@ac_no_speex_aec@,) 
    104104export PJMEDIA_OBJS += echo_speex.o 
    105105endif 
  • pjproject/trunk/third_party/build/os-auto.mak.in

    r5509 r5568  
    1212endif 
    1313 
    14 ifneq (@ac_no_speex_codec@,1) 
     14# Exclude Speex? 
     15EXCLUDE_SPEEX = 0 
     16ifeq (@ac_no_speex_codec@,1) 
     17ifneq (@ac_no_speex_aec@,) 
     18EXCLUDE_SPEEX = 1 
     19endif 
     20endif 
     21 
     22ifneq ($(EXCLUDE_SPEEX),1) 
    1523ifeq (@ac_external_speex@,1) 
    1624# External speex 
Note: See TracChangeset for help on using the changeset viewer.