1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
This is an interface to Berkeley DB XML, distributed by Sleepycat
(http://www.sleepycat.com/products/xml.shtml)
* Installation
.... first build bdb which is in '../src', and use this version of
bdb for use with bdbxml
.... modify './myconfig' to adapt it to your configuration
IMPORTANT : you must use a version of xercesc compiled *without* threads
.... This version must be used with [db-4.1.25, DbXml 1.1.0]
.... ruby extconf.rb
make
make install
.... if you want to make a shared version which use the object files
from ../src, specify the flag --with-bdb-objs when you run
extconf.rb
ruby extconf.rb --with-bdb-objs
make
make install
Use this option if you work on Mac OS X : read also
http://www.opendarwin.org/pipermail/hackers/2003-January/000389.html
http://www.opendarwin.org/pipermail/hackers/2003-January/000391.html
http://www.mail-archive.com/darwin-gcc3@opensource.apple.com/msg00044.html
* Documentation :
make rd2
make rdoc
* Copying
This extension module is copyrighted free software by Guy Decoux
You can redistribute it and/or modify it under the same term as
Ruby.
Guy Decoux <ts@moulon.inra.fr>
|