mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 16:09:20 +00:00
Merge branch 'master' of git.sv.gnu.org:/srv/git/linphone
This commit is contained in:
commit
906262c050
7 changed files with 17 additions and 17 deletions
|
|
@ -39,7 +39,7 @@ ZIP_EXCLUDED=include lib \
|
|||
|
||||
SDK_ZIPFILE=$(shell cd $(top_builddir) && pwd)/lib$(PACKAGE)-win32-$(VERSION).zip
|
||||
SDK_EXCLUDED= \
|
||||
bin/linphone-3.exe \
|
||||
bin/linphone.exe \
|
||||
lib/*.la \
|
||||
share/linphone \
|
||||
share/pixmaps \
|
||||
|
|
|
|||
2
gtk/.gitignore
vendored
2
gtk/.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
|||
linphone-3
|
||||
linphone
|
||||
.libs
|
||||
.deps
|
||||
linphone.res
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@ if BUILD_GTK_UI
|
|||
|
||||
BUILT_SOURCES=version_date.h
|
||||
|
||||
bin_PROGRAMS=linphone-3
|
||||
bin_PROGRAMS=linphone
|
||||
|
||||
linphone_3_SOURCES= \
|
||||
linphone_SOURCES= \
|
||||
main.c \
|
||||
propertybox.c \
|
||||
friendlist.c \
|
||||
|
|
@ -45,7 +45,7 @@ linphone_3_SOURCES= \
|
|||
loginframe.c \
|
||||
linphone.h
|
||||
|
||||
linphone_3_LDADD=$(ORTP_LIBS) \
|
||||
linphone_LDADD=$(ORTP_LIBS) \
|
||||
$(MEDIASTREAMER_LIBS) \
|
||||
$(top_builddir)/coreapi/liblinphone.la \
|
||||
$(LIBGTK_LIBS) $(INTLLIBS)
|
||||
|
|
@ -56,10 +56,10 @@ if BUILD_WIN32
|
|||
linphone.res: $(LINPHONE_ICO_RC_FILE) $(LINPHONE_ICO_FILE)
|
||||
windres $(LINPHONE_ICO_RC_FILE) -O coff -o linphone.res
|
||||
|
||||
linphone_3_LDADD+=linphone.res -lwininet
|
||||
linphone_3_LDFLAGS=-Wl,--export-all-symbols -mwindows
|
||||
linphone_LDADD+=linphone.res -lwininet
|
||||
linphone_LDFLAGS=-Wl,--export-all-symbols -mwindows
|
||||
else
|
||||
linphone_3_LDFLAGS=-export-dynamic
|
||||
linphone_LDFLAGS=-export-dynamic
|
||||
endif
|
||||
|
||||
uidir=$(datadir)/linphone
|
||||
|
|
|
|||
|
|
@ -30,19 +30,19 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
|
|||
#include "linphone-win32.filelist"
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\Linphone"; Filename: "{app}\bin\linphone-3.exe" ; WorkingDir: "{app}"
|
||||
Name: "{userdesktop}\Linphone"; Filename: "{app}\bin\linphone-3.exe"; WorkingDir: "{app}" ; Tasks: desktopicon
|
||||
Name: "{group}\Linphone"; Filename: "{app}\bin\linphone.exe" ; WorkingDir: "{app}"
|
||||
Name: "{userdesktop}\Linphone"; Filename: "{app}\bin\linphone.exe"; WorkingDir: "{app}" ; Tasks: desktopicon
|
||||
|
||||
[Registry]
|
||||
Root: HKCR; Subkey: "sip";
|
||||
Root: HKCR; Subkey: "sip"; ValueData: "URL: SIP protocol" ; ValueType:string
|
||||
Root: HKCR; Subkey: "sip"; ValueName: "EditFlags"; ValueData: "02 00 00 00" ; ValueType:binary
|
||||
Root: HKCR; Subkey: "sip"; ValueName: "URL Protocol" ; ValueType:string
|
||||
Root: HKCR; Subkey: "sip\DefaultIcon"; ValueData: "{app}\bin\linphone-3.exe"; ValueType:string ; Flags:uninsdeletekey
|
||||
Root: HKCR; Subkey: "sip\DefaultIcon"; ValueData: "{app}\bin\linphone.exe"; ValueType:string ; Flags:uninsdeletekey
|
||||
Root: HKCR; Subkey: "sip\shell"
|
||||
Root: HKCR; Subkey: "sip\shell\open"
|
||||
Root: HKCR; Subkey: "sip\shell\open\command"; ValueType:string ; ValueData: "{app}\bin\linphone-3.exe --workdir {app} --call %1"; Flags:uninsdeletekey
|
||||
Root: HKCR; Subkey: "sip\shell\open\command"; ValueType:string ; ValueData: "{app}\bin\linphone.exe --workdir {app} --call %1"; Flags:uninsdeletekey
|
||||
|
||||
[Run]
|
||||
Filename: "{app}\bin\linphone-3.exe"; Description: "{cm:LaunchProgram,Linphone}"; WorkingDir: "{app}" ; Flags: nowait postinstall skipifsilent
|
||||
Filename: "{app}\bin\linphone.exe"; Description: "{cm:LaunchProgram,Linphone}"; WorkingDir: "{app}" ; Flags: nowait postinstall skipifsilent
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<kdevcustomproject>
|
||||
<run>
|
||||
<directoryradio>executable</directoryradio>
|
||||
<mainprogram>gtk-glade/linphone-3</mainprogram>
|
||||
<mainprogram>gtk-glade/linphone</mainprogram>
|
||||
<programargs/>
|
||||
<globaldebugarguments/>
|
||||
<globalcwd/>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ MSX264_ZIP=$(WORKDIR)/msx264.zip
|
|||
INSTALL_ROOT=$(WORKDIR)/root
|
||||
FILELIST=$(WORKDIR)/linphone-bundle.filelist
|
||||
|
||||
LINPHONE_VERSION=strings $(INSTALL_ROOT)/bin/linphone-3.exe |grep linphone_ident | sed 's/linphone_ident_string=//'
|
||||
LINPHONE_VERSION=strings $(INSTALL_ROOT)/bin/linphone.exe |grep linphone_ident | sed 's/linphone_ident_string=//'
|
||||
|
||||
$(WORKDIR):
|
||||
mkdir -p $(WORKDIR)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ Comment=Linphone is a web-phone
|
|||
Comment[fr]=Linphone est un web-phone.
|
||||
Comment[de]=Linphone ist ein web-phone.
|
||||
Type=Application
|
||||
Exec=linphone-3
|
||||
Exec=linphone
|
||||
Icon=@prefix@/share/pixmaps/linphone/linphone.png
|
||||
Terminal=false
|
||||
Categories=Network;Telephony;
|
||||
Categories=Network;Telephony;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue