diff options
author | tkummermehr <thorsten.kummermehr@k2l.de> | 2017-11-23 09:41:35 +0100 |
---|---|---|
committer | tkummermehr <thorsten.kummermehr@k2l.de> | 2017-11-23 09:41:35 +0100 |
commit | dccdd78ea136c2481f0558cb3030a9add3a2004a (patch) | |
tree | cceaf793691d74b1267ab2987127000b8e27342c /conf.d | |
parent | 4d053bad9635c21d7f34f05fb57f654a007b2055 (diff) |
UcsXml component use libxml2 instead of libmxml
Change-Id: I5b1479c8c5be81cc214292abce137c41387d2601
Signed-off-by: tkummermehr <thorsten.kummermehr@k2l.de>
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/packaging/debian.control | 2 | ||||
-rw-r--r-- | conf.d/project/config.cmake | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/conf.d/packaging/debian.control b/conf.d/packaging/debian.control index ccf6f4c..5324055 100644 --- a/conf.d/packaging/debian.control +++ b/conf.d/packaging/debian.control @@ -6,7 +6,7 @@ Build-Depends: debhelper (>= 5), cmake, gcc, g++, - libmxml-dev , + libxml2-dev , libjson-c-dev , libsystemd-dev (>= 222), agl-app-framework-binder-dev , diff --git a/conf.d/project/config.cmake b/conf.d/project/config.cmake index d41aeee..c5f5357 100644 --- a/conf.d/project/config.cmake +++ b/conf.d/project/config.cmake @@ -46,7 +46,8 @@ set(PROJECT_SRC_DIR_PATTERN "[^_]*") # Compilation Mode (DEBUG, RELEASE) # ---------------------------------- set(CMAKE_BUILD_TYPE "DEBUG") -set(USE_EFENCE 1) +#Disabled because causes crash on some machines +#set(USE_EFENCE 1) # Kernel selection if needed. You can choose between a # mandatory version to impose a minimal version. @@ -69,7 +70,6 @@ set (gcc_minimal_version 4.9) # PKG_CONFIG required packages # ----------------------------- set (PKG_REQUIRED_LIST - mxml json-c libsystemd>=222 afb-daemon |