Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
b765a9b3
Commit
b765a9b3
authored
Mar 19, 2015
by
Simon Morlat
Browse files
clarify build options
parent
7e742958
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
b765a9b3
...
...
@@ -609,6 +609,7 @@ AC_ARG_ENABLE(alsa,
[alsa=true]
)
dnl this options are just for passing to mediastreamer2 subproject
AC_ARG_ENABLE(zrtp,
[AS_HELP_STRING([--enable-zrtp], [Turn on zrtp support])],
[case "${enableval}" in
...
...
@@ -619,6 +620,7 @@ AC_ARG_ENABLE(zrtp,
[zrtp=false]
)
dnl this options are just for passing to mediastreamer2 subproject
AC_ARG_ENABLE(dtls,
[AS_HELP_STRING([--enable-dtls], [Turn on dtls support - requires polarssl > 1.4])],
[case "${enableval}" in
...
...
@@ -672,23 +674,25 @@ fi
dnl check for Lime support, need polarssl version >= 1.3 (with gcm.h)
AC_ARG_ENABLE(lime,
[AS_HELP_STRING([--enable-lime], [Turn on or off compilation of Instant Messaging Encryption (default=
yes
)])],
[AS_HELP_STRING([--enable-lime], [Turn on or off compilation of Instant Messaging Encryption (default=
auto
)])],
[case "${enableval}" in
yes) lime=true ;;
no) lime=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lime) ;;
esac],
[lime=
true
]
[lime=
auto
]
)
if test "$lime" = "
tru
e" ; then
if test "$lime"
!
= "
fals
e" ; then
if test "x$found_polarssl" != "xyes" ; then
AC_MSG_ERROR("LIME requires POLARSSL in version >= 1.3")
if test "$lime" = "true" ; then
AC_MSG_ERROR("LIME requires POLARSSL in version >= 1.3")
fi
lime=false
else
AC_DEFINE(HAVE_LIME, 1, [Defined when LIME support is compiled])
lime=true
fi
else
echo "LIME compilation is disabled."
fi
dnl build console if required
...
...
@@ -700,8 +704,6 @@ 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)
AM_CONDITIONAL(BUILD_DTLS, test x$dtls = xtrue)
dnl check getenv
AH_TEMPLATE([HAVE_GETENV])
...
...
@@ -1051,8 +1053,6 @@ printf "* %-30s %s\n" "Account assistant" $build_wizard
printf "* %-30s %s\n" "Console interface" $console_ui
printf "* %-30s %s\n" "Tools" $build_tools
printf "* %-30s %s\n" "Message storage" $enable_msg_storage
printf "* %-30s %s\n" "zRTP encryption" $zrtp
printf "* %-30s %s\n" "DTLS encryption" $dtls
printf "* %-30s %s\n" "IM encryption" $lime
printf "* %-30s %s\n" "uPnP support" $build_upnp
printf "* %-30s %s\n" "LDAP support" $enable_ldap
...
...
mediastreamer2
@
d3122722
Subproject commit
65d6ad29eaa2bb13aa336d027414cb92c7703c48
Subproject commit
d31227221aaf0e1a22af14875563e633396a9086
oRTP
@
8eac942e
Subproject commit
19ed314d52d4061a21daa4805aef9459ad31640c
Subproject commit
8eac942e4288e5884267864fc46e641aa5a3c74e
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment