From a9012f70f62c58f2311c8d69729d36947daa0ab2 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 14 Jan 2010 14:46:54 +0000 Subject: More #1025 (support for using external third party libraries): - support for using external libspeex and libgsm - replaced --with-pa-path with --with-external-pa git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3062 74dad513-b988-da41-8d7b-12977e46ad98 --- third_party/build/os-auto.mak.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'third_party') diff --git a/third_party/build/os-auto.mak.in b/third_party/build/os-auto.mak.in index b61a4631..f1de03f8 100644 --- a/third_party/build/os-auto.mak.in +++ b/third_party/build/os-auto.mak.in @@ -1,23 +1,32 @@ ifneq (@ac_no_gsm_codec@,1) +ifeq (@ac_external_gsm@,1) +# External +else DIRS += gsm endif +endif ifneq (@ac_no_ilbc_codec@,1) DIRS += ilbc endif ifneq (@ac_no_speex_codec@,1) +ifeq (@ac_external_speex@,1) +# External speex +else DIRS += speex endif +endif ifneq (@ac_no_g7221_codec@,1) DIRS += g7221 endif -ifeq (x@ac_pa_path@,x) -# Only if we're using our own PA in third_party ifneq ($(findstring pa,@ac_pjmedia_snd@),) +ifeq (@ac_external_pa@,1) +# External PA +else DIRS += portaudio endif endif -- cgit v1.2.3