ruby-xslt icon indicating copy to clipboard operation
ruby-xslt copied to clipboard

Ruby/XSLT is a simple XSLT class based on libxml <xmlsoft.org/> and libxslt <xmlsoft.org/XSLT/>

Results 4 ruby-xslt issues
Sort by recently updated
recently updated
newest added

Clang 16 makes `-Wincompatible-function-pointer-types` an error by default. ruby-xslt hits the following failure when building with Clang 16: ``` [...] xslt_lib.c:437:46: error: incompatible function pointer types passing 'VALUE (VALUE, VALUE)'...

If a XSL file activates an extension. For example: ```xml ``` Then we load two instances of the library both referencing that XSL file: ```ruby require 'xml/xslt' xslt1 = XML::XSLT.new()...

In this version the norm:Localtime function was removed, and thus XSLT_NORM_SAXON_NAMESPACE is no longer defined, leading to a compilation error. ``` x86_64-pc-linux-gnu-gcc -I. -I/usr/include/ruby-2.2.0/x86_64-linux -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -DRUBY_EXTCONF_H=\"extconf.h\" -fPIC -Wall...

The forcing of some compiler options can be bad. In the case of -Wall. This is GCC centric and would cause compilation on other platforms to fail (i.e. Solaris and...

evolution