mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11512
This commit is contained in:
parent
e18068160f
commit
ee86f31a9d
14
configure.ac
14
configure.ac
|
@ -17,6 +17,12 @@ AC_ARG_ENABLE(debug,
|
||||||
[enable_debug=yes],
|
[enable_debug=yes],
|
||||||
[])
|
[])
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(unicode,
|
||||||
|
AS_HELP_STRING([--enable-unicode],
|
||||||
|
[enable building the manager with unicode support]),
|
||||||
|
[enable_unicode=yes],
|
||||||
|
[])
|
||||||
|
|
||||||
AC_ARG_ENABLE(server,
|
AC_ARG_ENABLE(server,
|
||||||
AS_HELP_STRING([--disable-server],
|
AS_HELP_STRING([--disable-server],
|
||||||
[disable building the scheduling server]),
|
[disable building the scheduling server]),
|
||||||
|
@ -29,12 +35,6 @@ AC_ARG_ENABLE(client,
|
||||||
[],
|
[],
|
||||||
[enable_client=yes])
|
[enable_client=yes])
|
||||||
|
|
||||||
AC_ARG_ENABLE(unicode,
|
|
||||||
AS_HELP_STRING([--disable-unicode],
|
|
||||||
[disable building the manager with unicode support]),
|
|
||||||
[],
|
|
||||||
[enable_unicode=yes])
|
|
||||||
|
|
||||||
m4_divert_once([HELP_ENABLE],
|
m4_divert_once([HELP_ENABLE],
|
||||||
AS_HELP_STRING([], [Default: --enable-server --enable-client:
|
AS_HELP_STRING([], [Default: --enable-server --enable-client:
|
||||||
builds both server and client]))
|
builds both server and client]))
|
||||||
|
@ -258,7 +258,7 @@ fi
|
||||||
dnl ---------- libcurl (m4/libcurl.m4) ------------------------------
|
dnl ---------- libcurl (m4/libcurl.m4) ------------------------------
|
||||||
|
|
||||||
if test "${enable_client}" = yes; then
|
if test "${enable_client}" = yes; then
|
||||||
LIBCURL_CHECK_CONFIG([yes], [7.13.2], [haveCurl=yes], [haveCurl=no])
|
LIBCURL_CHECK_CONFIG([yes], [7.15.5], [haveCurl=yes], [haveCurl=no])
|
||||||
|
|
||||||
if test "${haveCurl}" != yes; then
|
if test "${haveCurl}" != yes; then
|
||||||
AC_MSG_ERROR([
|
AC_MSG_ERROR([
|
||||||
|
|
Loading…
Reference in New Issue