Ignore:
Timestamp:
Jan 14, 2010 2:46:54 PM (14 years ago)
Author:
bennylp
Message:

More #1025 (support for using external third party libraries):

  • support for using external libspeex and libgsm
  • replaced --with-pa-path with --with-external-pa
File:
1 edited

Legend:

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

    r3058 r3062  
    11 
    22ifneq (@ac_no_gsm_codec@,1) 
     3ifeq (@ac_external_gsm@,1) 
     4# External 
     5else 
    36DIRS += gsm 
     7endif 
    48endif 
    59 
     
    913 
    1014ifneq (@ac_no_speex_codec@,1) 
     15ifeq (@ac_external_speex@,1) 
     16# External speex 
     17else 
    1118DIRS += speex 
     19endif 
    1220endif 
    1321 
     
    1624endif 
    1725 
    18 ifeq (x@ac_pa_path@,x) 
    19 # Only if we're using our own PA in third_party 
    2026ifneq ($(findstring pa,@ac_pjmedia_snd@),) 
     27ifeq (@ac_external_pa@,1) 
     28# External PA 
     29else 
    2130DIRS += portaudio 
    2231endif 
Note: See TracChangeset for help on using the changeset viewer.