Original project: http://xqilla.sourceforge.net/HomePage This is just a git re-upload of XQuilla.
Find a file
2020-02-17 22:15:56 +01:00
autotools v1.0 2020-02-17 22:05:20 +01:00
docs v2.1.2 2020-02-17 22:14:54 +01:00
include v2.1.3 2020-02-17 22:15:56 +01:00
src v2.1.3 2020-02-17 22:15:56 +01:00
tests v2.1.2 2020-02-17 22:14:54 +01:00
Win32Projects v2.1.2 2020-02-17 22:14:54 +01:00
wintools v2.1.3 2020-02-17 22:15:56 +01:00
aclocal.m4 v2.1.3 2020-02-17 22:15:56 +01:00
ChangeLog v2.1.3 2020-02-17 22:15:56 +01:00
configure v2.1.3 2020-02-17 22:15:56 +01:00
configure.in v2.1.3 2020-02-17 22:15:56 +01:00
LICENSE v2.1.1 2020-02-17 22:13:50 +01:00
Makefile.am v2.1.3 2020-02-17 22:15:56 +01:00
Makefile.in v2.1.3 2020-02-17 22:15:56 +01:00
README v2.1.1 2020-02-17 22:13:50 +01:00
TODO v2.1.1 2020-02-17 22:13:50 +01:00

This is XQilla, a C++ implementation of XQuery and XPath 2.0 based on Xerces-C.

Build Instructions
------------------

1. Download a source distribution of Xerces-C 2.8
2. Apply the patches src/xercesc_content_type.patch and src/xercesc_regex.patch
   to Xerces-C:

cd xerces-c-src_2_8_0/
patch -p1 <../xqilla/src/xercesc_content_type.patch
patch -p1 <../xqilla/src/xercesc_regex.patch

3. Build Xerces-C

cd xerces-c-src_2_8_0/
export XERCESCROOT=`pwd`
cd src/xercesc
./runConfigure
make

4. Build XQilla

cd xqilla/
./configure --with-xerces=`pwd`/../xerces-c-src_2_8_0/
make