Changeset 3062 for pjproject/trunk/build.mak.in
- Timestamp:
- Jan 14, 2010 2:46:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/build.mak.in
r3058 r3062 15 15 16 16 ifneq (@ac_no_gsm_codec@,1) 17 ifeq (@ac_external_gsm@,1) 18 # External GSM library 19 APP_THIRD_PARTY_LIBS += -lgsm 20 APP_THIRD_PARTY_LIB_FILES += 21 else 17 22 APP_THIRD_PARTY_LIBS += -lgsmcodec-$(TARGET_NAME) 18 23 APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libgsmcodec-$(LIB_SUFFIX) 19 24 endif 25 endif 20 26 21 27 ifneq (@ac_no_speex_codec@,1) 28 ifeq (@ac_external_speex@,1) 29 APP_THIRD_PARTY_LIBS += -lspeex -lspeexdsp 30 APP_THIRD_PARTY_LIB_FILES += 31 else 22 32 APP_THIRD_PARTY_LIBS += -lspeex-$(TARGET_NAME) 23 33 APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libspeex-$(LIB_SUFFIX) 34 endif 24 35 endif 25 36 … … 34 45 endif 35 46 36 ifneq ( x@ac_pa_path@,x)37 # We're using external PortAudio 38 APP_THIRD_PARTY_LIBS += - L@ac_pa_path@/lib -lportaudio47 ifneq ($(findstring pa,@ac_pjmedia_snd@),) 48 ifeq (@ac_external_pa@,1) 49 APP_THIRD_PARTY_LIBS += -lportaudio 39 50 APP_THIRD_PARTY_LIB_FILES += 40 51 else 41 ifneq ($(findstring pa,@ac_pjmedia_snd@),)42 52 APP_THIRD_PARTY_LIBS += -lportaudio-$(TARGET_NAME) 43 53 APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libportaudio-$(LIB_SUFFIX)
Note: See TracChangeset
for help on using the changeset viewer.