X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a0ee21b4f03befdbfe929e5e17c837586c3643d0..ec83ae9a081ffd1d19bfecaf81cb99c32bdf6b83:/src/surf/xml/surfxml_parseplatf.cpp diff --git a/src/surf/xml/surfxml_parseplatf.cpp b/src/surf/xml/surfxml_parseplatf.cpp index 5890b6e44a..24892fd61f 100644 --- a/src/surf/xml/surfxml_parseplatf.cpp +++ b/src/surf/xml/surfxml_parseplatf.cpp @@ -15,7 +15,7 @@ #include "src/surf/xml/platf_private.hpp" -#if HAVE_LUA +#if SIMGRID_HAVE_LUA extern "C" { #include "src/bindings/lua/simgrid_lua.h" @@ -131,14 +131,14 @@ void parse_after_config() { /* This function acts as a main in the parsing area. */ void parse_platform_file(const char *file) { -#if HAVE_LUA +#if SIMGRID_HAVE_LUA int len = (file == nullptr ? 0 : strlen(file)); int is_lua = (file != nullptr && len > 3 && file[len - 3] == 'l' && file[len - 2] == 'u' && file[len - 1] == 'a'); #endif sg_platf_init(); -#if HAVE_LUA +#if SIMGRID_HAVE_LUA /* Check if file extension is "lua". If so, we will use * the lua bindings to parse the platform file (since it is * written in lua). If not, we will use the (old?) XML parser