After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 449698 - making error
making error
Status: RESOLVED NOTABUG
Product: libxslt
Classification: Platform
Component: general
1.1.20
Other All
: Normal normal
: ---
Assigned To: Daniel Veillard
libxml QA maintainers
Depends on:
Blocks:
 
 
Reported: 2007-06-21 06:16 UTC by Philip
Modified: 2007-06-21 07:05 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Philip 2007-06-21 06:16:53 UTC
------------------------------------------------------
Config for libxml:
configure --without-debug --without-ftp --without-html --prefix=/usr
------------------------------------------------------
Building libxslt:
configure --prefix=/usr
make

../libxslt/.libs/libxslt.so: undefined reference to `htmlDocContentDumpOutput'
../libxslt/.libs/libxslt.so: undefined reference to `htmlSetMetaEncoding'
../libxslt/.libs/libxslt.so: undefined reference to `htmlDocContentDumpFormatOutput'
../libxslt/.libs/libxslt.so: undefined reference to `htmlNewDocNoDtD'
../libxslt/.libs/libxslt.so: undefined reference to `htmlNewDoc'
Comment 1 Daniel Veillard 2007-06-21 07:05:28 UTC
Well the XSLT spec asks for HTML output, see 
   http://www.w3.org/TR/xslt#section-HTML-Output-Method
and that requires the HTML suppport in libxml2.
Activate HTML support in libxml2 if you want to use
it for XSLT.
That doesn't really sound like a bug to me. I prefer to see
a build error than people erronously thinking that their
XSLT library built fine.

Daniel