1##############################################################################
2# 	Copyright (c) 2000-2006 All rights reserved
3# 	Alberto Reggiori <areggiori@webweaving.org>
4#	Dirk-Willem van Gulik <dirkx@webweaving.org>
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9#
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12#
13# 2. Redistributions in binary form must reproduce the above copyright
14#    notice, this list of conditions and the following disclaimer in
15#    the documentation and/or other materials provided with the
16#    distribution.
17#
18# 3. The end-user documentation included with the redistribution,
19#    if any, must include the following acknowledgment:
20#       "This product includes software developed by
21#        Alberto Reggiori <areggiori@webweaving.org> and
22#        Dirk-Willem van Gulik <dirkx@webweaving.org>."
23#    Alternately, this acknowledgment may appear in the software itself,
24#    if and wherever such third-party acknowledgments normally appear.
25#
26# 4. All advertising materials mentioning features or use of this software
27#    must display the following acknowledgement:
28#    This product includes software developed by the University of
29#    California, Berkeley and its contributors.
30#
31# 5. Neither the name of the University nor the names of its contributors
32#    may be used to endorse or promote products derived from this software
33#    without specific prior written permission.
34#
35# 6. Products derived from this software may not be called "RDFStore"
36#    nor may "RDFStore" appear in their names without prior written
37#    permission.
38#
39# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
40# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
43# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50# OF THE POSSIBILITY OF SUCH DAMAGE.
51#
52# ====================================================================
53#
54# This software consists of work developed by Alberto Reggiori and
55# Dirk-Willem van Gulik. The RDF specific part is based on public
56# domain software written at the Stanford University Database Group by
57# Sergey Melnik. For more information on the RDF API Draft work,
58# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
59# The DBMS TCP/IP server part is based on software originally written
60# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Arnhem,
61# The Netherlands.
62#
63##############################################################################
64
65# 1. Where is the file db.h?
66#
67#    Change the path below to point to the directory where db.h is
68#    installed on your system.
69
70INCLUDE	= /usr/local/BerkeleyDB/include
71#INCLUDE	= /usr/local/include
72#INCLUDE	= /usr/include
73
74# 2. Where is libdb?
75#
76#    Change the path below to point to the directory where libdb is
77#    installed on your system.
78
79LIB	= /usr/local/BerkeleyDB/lib
80#LIB	= /usr/local/lib
81#LIB	= /usr/lib
82
83# 3. Is the library called libdb?
84#
85#    If you have copies of both 1.x and 2.x Berkeley DB installed on
86#    your system it can sometimes be tricky to make sure you are using
87#    the correct one. Renaming one (or creating a symbolic link) to
88#    include the version number of the library can help.
89#
90#    For example, if you have both Berkeley DB 2.3.12 and 1.85 on your
91#    system and you want to use the Berkeley DB version 2 library you
92#    could rename the version 2 library from libdb.a to libdb-2.3.12.a and
93#    change the DBNAME line below to look like this:
94#
95#        DBNAME = -ldb-2.3.12
96#
97#    That will ensure you are linking the correct version of the DB
98#    library.
99#
100#    Note: If you are building this module with Win32, -llibdb will be
101#    used by default. For all the other platforms it will default to -ldb .
102#
103#    If you have changed the name of the library, uncomment the line
104#    below (by removing the leading #) and edit the line to use the name
105#    you have picked.
106
107#DBNAME = -ldb-4.0
108
109# 4. DBMSD installation directory
110#
111#    See dbms/deamon/dbmsd.8
112
113DBMS_INSTDIR = /RDFStore
114
115# 5. RDF storage specific parameters
116#
117#    See include/rdfstore.h
118
119RDFSTORE_WORD_STEMMING = 5
120
121# max number of statements/triples allowed into storage - an integer in the range of 128 <= X <= 60000000
122RDFSTORE_MAXRECORDS = 2097152
123
124