Cezar's reflections

Tuesday, September 28, 2010

Where Good Ideas Come From

Got to see this 4 minute movie about innovation:


Friday, July 02, 2010

Building Zorba XQuery on OEL5

  1. Download Oracle Enterprise Linux Server 64bit and install the development packages.
  2. Install cmake rpm, I found one here.
  3. Uninstal default libicu rpm, and install the libicu and libicu-devel from here.
  4. Uninstall default xerces-c 2.7 and install xerces-c and xerces-c-devel 2.8.
  5. Get and build Zorba:
# to get the sources, 8583 is latest as of this writing but tested to work
svn co -r 8583 https://zorba.svn.sourceforge.net/svnroot/zorba/trunk/zorba zorba
cd zorba
mkdir build
cd build
# to generate Makefiles without schema support
cmake -D ZORBA_NO_XMLSCHEMA=ON ..
# to do a build
make
# to check Zorba
./bin/zorba -q 1+1
# to run internal tests
ctest

Labels: , ,