mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 10:19:23 +00:00
Merge branch 'master' of git.linphone.org:linphone into tunnel
This commit is contained in:
commit
31d68ac1ae
6 changed files with 24 additions and 18 deletions
|
|
@ -14,7 +14,6 @@ In mingw shell, run
|
|||
mingw-get install msys-zip
|
||||
mingw-get install msys-unzip
|
||||
mingw-get install msys-wget
|
||||
mingw-get install msys-libopenssl
|
||||
|
||||
mkdir -p /opt/perl/bin
|
||||
cp /bin/perl /opt/perl/bin/.
|
||||
|
|
@ -41,13 +40,6 @@ cd /share/themes
|
|||
wget http://art.gnome.org/download/themes/gtk2/1122/GTK2-Outcrop.tar.gz
|
||||
tar -xvzf GTK2-Outcrop.tar.gz
|
||||
|
||||
#Remove the special stdint.h and inttypes.h included in linphone-deps: it is for MSVC only.
|
||||
#Mingw will use the one in /mingw/include
|
||||
rm /include/stdint.h /include/inttypes.h
|
||||
|
||||
#Remove libgcc specific libraries, only needed for MSVC:
|
||||
rm /lib/libgcc.a /lib/libmingw32.a /lib/libmingwex.a
|
||||
|
||||
#To get the translations working, remove from C:/MinGW/lib :
|
||||
libintl.a libintl.la libintl.dll.a
|
||||
|
||||
|
|
|
|||
|
|
@ -105,15 +105,28 @@ endif
|
|||
endif
|
||||
|
||||
|
||||
|
||||
ifneq ($(BUILD_AMR),0)
|
||||
LOCAL_CFLAGS += -DHAVE_AMR
|
||||
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libmsamr \
|
||||
libopencoreamr
|
||||
_BUILD_AMR=0
|
||||
ifneq ($(BUILD_AMRNB), 0)
|
||||
_BUILD_AMR=1
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_AMRWB), 0)
|
||||
_BUILD_AMR=1
|
||||
endif
|
||||
|
||||
ifneq ($(_BUILD_AMR), 0)
|
||||
LOCAL_CFLAGS += -DHAVE_AMR
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libmsamr \
|
||||
libopencoreamr
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_AMRWB), 0)
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libvoamrwbenc
|
||||
endif
|
||||
|
||||
|
||||
ifeq ($(BUILD_SILK),1)
|
||||
LOCAL_CFLAGS += -DHAVE_SILK
|
||||
LOCAL_STATIC_LIBRARIES += libmssilk
|
||||
|
|
|
|||
|
|
@ -1083,6 +1083,7 @@ static void linphone_core_init (LinphoneCore * lc, const LinphoneCoreVTable *vta
|
|||
/*add all payload type for which we don't care about the number */
|
||||
linphone_core_assign_payload_type(lc,&payload_type_ilbc,-1,"mode=30");
|
||||
linphone_core_assign_payload_type(lc,&payload_type_amr,-1,"octet-align=1");
|
||||
linphone_core_assign_payload_type(lc,&payload_type_amrwb,-1,"octet-align=1");
|
||||
linphone_core_assign_payload_type(lc,&payload_type_lpc1015,-1,NULL);
|
||||
linphone_core_assign_payload_type(lc,&payload_type_g726_16,-1,NULL);
|
||||
linphone_core_assign_payload_type(lc,&payload_type_g726_24,-1,NULL);
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ linphone_LDADD=$(ORTP_LIBS) \
|
|||
if BUILD_WIN32
|
||||
|
||||
linphone.res: $(LINPHONE_ICO_RC_FILE) $(LINPHONE_ICO_FILE)
|
||||
windres $(LINPHONE_ICO_RC_FILE) -O coff -o linphone.res
|
||||
windres $(srcdir)/$(LINPHONE_ICO_RC_FILE) -O coff -o linphone.res
|
||||
|
||||
linphone_LDADD+=linphone.res -lwininet
|
||||
linphone_LDFLAGS=-Wl,--export-all-symbols -mwindows
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 8e3778f1fd61b44124f7303e540b936f9da4560f
|
||||
Subproject commit fbc201571d8ea4bdc208e87d2f81a109b8ebe060
|
||||
2
oRTP
2
oRTP
|
|
@ -1 +1 @@
|
|||
Subproject commit a936749fac4d3e2f788a0c03b3c4ea2021b3ae13
|
||||
Subproject commit 92f78b9504915db0220bc6f617f0cd7ad9910771
|
||||
Loading…
Add table
Reference in a new issue