mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
44e23d8e4f
|
@ -434,8 +434,6 @@ endif ()
|
|||
### @brief ICU
|
||||
################################################################################
|
||||
|
||||
set(ICU_VERSION "52.1" CACHE string "ICU version")
|
||||
|
||||
if (MSVC)
|
||||
set(ICU_LIBS "icui18n;icuuc;icudata" CACHE path "ICU libraries")
|
||||
|
||||
|
@ -466,8 +464,6 @@ if (ICU_LIB_PATH)
|
|||
link_directories(${ICU_LIB_PATH})
|
||||
endif ()
|
||||
|
||||
add_definitions("-DTRI_ICU_VERSION=\"${ICU_VERSION}\"")
|
||||
|
||||
################################################################################
|
||||
### @brief LIBEV
|
||||
################################################################################
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
#include "Rest/Endpoint.h"
|
||||
#include "Rest/InitialiseRest.h"
|
||||
#include "Rest/HttpResponse.h"
|
||||
#include "Rest/Version.h"
|
||||
#include "SimpleHttpClient/SimpleHttpClient.h"
|
||||
#include "SimpleHttpClient/SimpleHttpResult.h"
|
||||
#include "V8/JSLoader.h"
|
||||
|
@ -2060,9 +2061,7 @@ bool print_helo(bool useServer, bool promptError) {
|
|||
info << ", READLINE " << TRI_READLINE_VERSION;
|
||||
#endif
|
||||
|
||||
#ifdef TRI_ICU_VERSION
|
||||
info << ", ICU " << TRI_ICU_VERSION;
|
||||
#endif
|
||||
info << ", ICU " << Version::getICUVersion();
|
||||
|
||||
BaseClient.printLine(info.str(), true);
|
||||
BaseClient.printLine("", true);
|
||||
|
|
|
@ -273,7 +273,7 @@ dnl ICU
|
|||
dnl ----------------------------------------------------------------------------
|
||||
|
||||
ICU_VERSION="52.2"
|
||||
ICU_CPPFLAGS="-D_REENTRANT -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/common -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/i18n -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/io -DTRI_ICU_VERSION='\"${ICU_VERSION}\"'"
|
||||
ICU_CPPFLAGS="-D_REENTRANT -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/common -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/i18n -I${srcdir}/3rdParty/V8-3.29.59/third_party/icu/source/io"
|
||||
ICU_LDFLAGS=""
|
||||
|
||||
if test "x$tr_DARWIN" = xyes; then
|
||||
|
|
Loading…
Reference in New Issue