mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
windows fixes
This commit is contained in:
parent
2a74093872
commit
148aca5c6b
3 changed files with 13 additions and 7 deletions
|
|
@ -85,6 +85,10 @@ rpm:
|
|||
|
||||
#a zip containing win32 binaries, suitable to generate an installer
|
||||
|
||||
if BUILD_ZRTP
|
||||
WINBINDIST_FILES+=./bin/libzrtpcpp.dll ./bin/msys-1.0.dll ./bin/msys-crypto-1.0.0.dll
|
||||
endif
|
||||
|
||||
other-cherrypick:
|
||||
cd $(GTK_PREFIX) && \
|
||||
for file in $(WINBINDIST_FILES) ; do \
|
||||
|
|
|
|||
14
configure.ac
14
configure.ac
|
|
@ -364,13 +364,14 @@ AC_ARG_ENABLE(alsa,
|
|||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-alsa) ;;
|
||||
esac],[alsa=true])
|
||||
|
||||
AC_ARG_ENABLE(artsc,
|
||||
[ --enable-artsc Turn on artsc (kde) sound input/output (auto) ],
|
||||
AC_ARG_ENABLE(zrtp,
|
||||
[ --enable-zrtp Turn on zrtp support - UNFINISHED],
|
||||
[case "${enableval}" in
|
||||
yes) artsc=true ;;
|
||||
no) artsc=false ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-artsc) ;;
|
||||
esac],[artsc=false])
|
||||
yes) zrtp=true ;;
|
||||
no) zrtp=false ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-zrtp) ;;
|
||||
esac],[zrtp=false])
|
||||
|
||||
|
||||
AC_ARG_ENABLE(portaudio,
|
||||
[ --enable-portaudio Turn on portaudio native support compiling],
|
||||
|
|
@ -387,6 +388,7 @@ AM_CONDITIONAL(ARMBUILD, test x$use_arm_toolchain = xyes)
|
|||
dnl compilation of gtk user interface
|
||||
AM_CONDITIONAL(BUILD_GTK_UI, [test x$gtk_ui = xtrue ] )
|
||||
AM_CONDITIONAL(BUILD_WIN32, test x$mingw_found = xyes )
|
||||
AM_CONDITIONAL(BUILD_ZRTP, test x$zrtp = xtrue)
|
||||
|
||||
dnl check getenv
|
||||
AH_TEMPLATE([HAVE_GETENV])
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="2.24"/>
|
||||
<requires lib="gtk+" version="2.22"/>
|
||||
<object class="GtkWindow" id="dummy_conf_window">
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue