1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-19 14:50:07 +03:00

Joe Orton provided a patch fixing a problem when iconv is specified to be

* configure.in: Joe Orton provided a patch fixing a problem
  when iconv is specified to be in a non-standard directory
  but wasn't exported in xml2-config --cflags
Daniel
This commit is contained in:
Daniel Veillard 2001-09-17 17:19:54 +00:00
parent dadd0873e0
commit f5b44e434e
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,12 @@
Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: Joe Orton provided a patch fixing a problem
when iconv is specified to be in a non-standard directory
but wasn't exported in xml2-config --cflags
Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: let's ship 2.4.5 before egtting too much
* configure.in: let's ship 2.4.5 before getting too much
troubles with 2.4.4 errors.
Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>

View File

@ -377,6 +377,8 @@ if test "$with_iconv" = "no" ; then
else
if test "$with_iconv" != "yes" ; then
CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
# Export this since our headers include iconv.h
XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
ICONV_LIBS="-L$with_iconv/lib"
fi