From 027407e50bc15eb65e847d7e98c5e636719b9995 Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Thu, 14 Feb 2013 21:28:37 +0100 Subject: [PATCH] Use TinyXML instead of LibXML2 The code only uses TinyXML, so the list of dependencies was wrong, something that was covered by the bundled version of TinyXML. --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 091901f2..1af9236a 100644 --- a/README +++ b/README @@ -61,7 +61,7 @@ sudo apt-get update sudo apt-get install libdune-common-dev libdune-istl-dev libdune-grid-dev # libraries necessary for OPM -sudo apt-get install -y libxml2-dev +sudo apt-get install -y libtinyxml-dev Note: You should compile the OPM modules using the same toolchain that was used to build DUNE. Otherwise, you can get strange ABI errors. @@ -71,7 +71,7 @@ DEPENDENCIES FOR SUSE BASED DISTRIBUTIONS ----------------------------------------- # libraries -sudo zypper in libblas3 liblapack3 libboost libxml2 libumfpack +sudo zypper in libblas3 liblapack3 libboost libtinyxml-devel libumfpack # tools sudo zypper in gcc cmake git doxygen @@ -97,7 +97,7 @@ sudo yum install git sudo yum install boost-devel suitesparse-devel blas-devel lapack-devel # libraries necessary for OPM -sudo yum install libxml2-devel +sudo yum install tinyxml-devel DOWNLOADING