We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have added HAVE_LIBXML2 to the gyp file. Error I'm getting is:
HAVE_LIBXML2
HAVE_LIBXML2 defined but compiling rapidxml_loader.cpp!
Extra configuration step needed?
The text was updated successfully, but these errors were encountered:
Manually removing rapidxml_loader.cpp from the source tree enabled mapnik to build correctly with libxml2.
rapidxml_loader.cpp
Should the first line in rapidxml_loade.cpp:
rapidxml_loade.cpp
#ifdef HAVE_LIBXML2 #error #endif
be changed to:
#ifndef HAVE_LIBXML2 // rest of the file..... #endif
??
Sorry, something went wrong.
No branches or pull requests
Have added
HAVE_LIBXML2
to the gyp file.Error I'm getting is:
Extra configuration step needed?
The text was updated successfully, but these errors were encountered: