This is after running./configure --prefix="$HOME/local" --with-python-install-dir="$HOME/local"make
make install
and compiling my program with
-I"$HOME/local/include"
No other libraries that I use ask me to add additional include directories to my compiler search paths (including boost, libxslt, postgresql, openssl).
PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.8.0])
AM_CPPFLAGS = $(XML2_CFLAGS)
_______________________________________________It wouldn't break the majority of software projects to change the libxml2 headers to include each other by the path `libxml2/libxml` instead of just by `libxml`. Most configurations will have `/include` in the header search directories prior to `include/libxml2` which would have been added to use/switch to libxml2.Jefferson---- On Tue, 11 Feb 2020 21:25:58 +0000 Csaba Raduly <rcsaba gmail com> wrote ----You have to use -I $HOME/local/include/libxml2. On Linux systems and Cygwin, the system's built-in libxml2 places its headers in /usr/include/libxml2/libxml and you have to use -I /usr/include/libxml2libxml2 is weird like that :) . You just have to live with it.(Perhaps libxml2 is set up like this to be source-compatible with libxml1, so programs which e.g. #include <libxml/SAX.h> can be compiled without modifying the source, just by adding an extra compiler switch. But I'm just speculating.)Csaba--On Tue, Feb 11, 2020 at 9:57 PM Jefferson Carpenter <jefferson aoeu2code com> wrote:This is after running./configure --prefix="$HOME/local" --with-python-install-dir="$HOME/local"make
make install
and compiling my program with
-I"$HOME/local/include"
No other libraries that I use ask me to add additional include directories to my compiler search paths (including boost, libxslt, postgresql, openssl).You can get very substantial performance improvements
by not doing the right thing. - Scott Meyers, An Effective C++11/14 Sampler
So if you're looking for a completely portable, 100% standards-conformant way
to get the wrong information: this is what you want. - Scott Meyers (C++TDaWYK)
xml mailing list, project page http://xmlsoft.org/
xml gnome org
https://mail.gnome.org/mailman/listinfo/xml