[go: up one dir, main page]

Menu

Tree [r1127] / ddc / trunk /
 History

HTTPS access


File Date Author Commit
 Test 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 bin 2018-08-21 mukau [r1052] 2018-08-21 added new command-line utility ddc_s...
 config 2016-09-28 mukau [r654] + v2.0.46 directory cleanup
 doc 2018-11-27 mukau [r1124] v2.1.19-pre1 * added macro DDC_HIT_INTERSECTION...
 etc 2018-10-12 mukau [r1106] + GetHitStrings fix
 log 2016-12-20 mukau [r785] + merged v2.1.0 branch into trunk:
 m4 2018-02-02 mukau [r927] - added application-level support for UNIX sock...
 scripts 2018-06-11 mukau [r993] + added bibl-strings2indexed.perl: upgrade hack...
 skel 2014-09-10 mukau [r291] + ddc-server.sh
 src 2018-11-29 mukau [r1126] * binary search for CQuerySequenceNode -- not m...
 AUTHORS 2013-03-21 mukau [r44] + v2.0.6: added generic wildcard operator '*'
 COPYING 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 COPYING.LESSER 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 Changes 2018-11-28 mukau [r1125] * added macro DDC_GETBREAK_LB_MIN to QueryNode...
 INSTALL 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 Makefile.am 2015-05-20 mukau [r489] + v2.0.38-rc2: distcheck fixes
 README.html 2017-01-03 mukau [r811] + final cleanup for v2.1.0 release
 README.pod 2017-01-03 mukau [r811] + final cleanup for v2.1.0 release
 README.txt 2017-01-03 mukau [r811] + final cleanup for v2.1.0 release
 autoreconf.sh 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 configure-debug.sh 2018-03-06 mukau [r952] + IndexSet.cpp: throw an exception if MaxRegExp...
 configure.ac 2018-11-27 mukau [r1124] v2.1.19-pre1 * added macro DDC_HIT_INTERSECTION...
 ddc.pc.in 2014-03-27 mukau [r161] v2.0.22(pre) Thu, 27 Mar 2014 13:46:48 +0100 mo...
 distcheck.sh 2011-12-09 mukau [r23] + added PACKAGE_VERSION to ddc_daemon starup me...
 upload-release.sh 2018-02-08 mukau [r940] + upload-release.sh script fix

Read Me

=pod

README for package ddc

Last updated for ddc v2.1.0

=head1 DESCRIPTION

The ddc package contains core C++ utilities
for the DWDS/Dialing Concordance document indexing
system.

The DDC-2.x branch is maintained in SVN under:

 svn+ssh://svn.code.sf.net/p/ddc-concordance/code/ddc/
 https://svn.code.sf.net/p/ddc-concordance/code/ddc/
 svn://svn.code.sf.net/p/ddc-concordance/code/ddc/

=head1 DEPENDENCIES

=over 4

=item ddc-morph E<gt>= v2.0.0

Morphology data.

In order to use most of the runtime utilities,
you will also need a set of morphology data files
available in the ddc-morph package, which should be available
wherever you downloaded these sources.

You should build (and optionally install)
this package B<BEFORE> attempting to build ddc-morph.

The ddc-morph sources are maintained in SVN under:

 https://ddc-concordance.svn.sourceforge.net/svnroot/ddc-morph

=item libpcre, libpcrecpp

Perl-compatibile regular expression C library and C++ wrappers.

URL: http://www.pcre.org/

Tested version(s): 8.02


=item libcurl (optional)

If available, libcurl can be used for accessing external HTTP-based
term expanders from within a running DDC process.  DDC should
still compile and run even if libcurl is unavailable,
but e.g. external HTTP-based term expanders will be unuseable.

URL: http://curl.haxx.se/

Tested version(s): 7.21.0, 7.38.0

=item GNU bison (optional)

Tested version(s): 2.4.1, 3.0.2

If you get errors compiling src/ConcordLib/yyQParser.o,
try re-extracting the source archive and call

 $ touch src/ConcordLib/yyQParser.cpp src/ConcordLib/yyQParser.h

before re-compiling.

=item GNU flex (optional)

Tested version(s) 2.5.35, 2.5.39.

If you get errors compiling src/ConcordLib/yyQLexer.o,
try re-extracting the source archive and call

 $ touch src/ConcordLib/yyQLexer.cpp src/ConcordLib/yyQLexer.h

before re-compiling.

=back


=head1 INSTALLATION

Issue the following commands to the shell:

 cd ddc-X.Y.dx-Z       ##-- (or wherever you extracted the ddc distribution)
 sh ./configure
 make
 make install

To build the ddc morph package, then do:

 cd ..
 cd ddc-morph-X.Y-dx-Z ##-- (or wherever the ddc-morph distribution lives)
 sh ./configure
 make
 make install

Finally, set the (legacy) environment variable RML to the directory
into which ddc was installed (by default /usr/local/ddc):

 export RML=/usr/local/ddc

... and you ought to be ready to roll.  Take a look at the configuration
files in $RML/etc/ and the example corpora in Test/ to get started.

=head1 BUILD OPTIONS

The 'configure' script supports the following options, among others:

=over 4

=item --prefix=PREFIX

Installation prefix (default=/usr/local).
This package installs itself to:

 PREFIX/ddc          ##-- root directory (a.k.a. $RML)
 PREFIX/ddc/bin      ##-- executable programs & scripts
 PREFIX/ddc/etc      ##-- runtime configuration files
 PREFIX/ddc/include  ##-- C++ headers
 PREFIX/lib          ##-- runtime libtool libraries

Additionally, the package requires a directory PREFIX/ddc/dict
containing morphology data, which should be installed by
the ddc-morph package (see L</DEPENDENCIES>).

=item --enable-debug

Enable debugging flags. Only works for GNU C++ compiler.

=item --enable-hires-clock

Enable high-resolution clock if available.  Requires C<clock_gettime()> function.
Enabled by default if C<--enable-debug> was specified, otherwise disabled by default.

=item --enable-json-deep-context

Enable deep encoding of extra-sentential context
tokens in JSON output strings.
Disabled by default, since it breaks strict backwards-compatibility.

=item --enable-warnings

Enable lots of compiler warnings.  Only works for GNU C++ compiler.

=item --disable-shared

Disable compilation of shared libraries.

=item --without-libcurl

Force DDC to build without CURL support.

=item --with-libiconv-prefix=DIR

Search for libiconv in DIR/include and DIR/lib.

=item --with-static-buflen=SIZE

Size in bytes of large static internal string
buffers (default=4096).

=back

See the output of `./configure --help` for details on additional
supported options.


=head1 KNOWN BUGS

Many.

=head1 AUTHOR

Alexey Sokirko wrote DDC.

Bryan Jurish E<lt>jurish@bbaw.deE<gt> made various improvements and maintains the DDC-2.x branch.