~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/perl.BerkeleyDB/config.in

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Filename:     config.in
 
2
#
 
3
# written by Paul Marquess <Paul.Marquess@btinternet.com>
 
4
 
 
5
# 1. Where is the file db.h?
 
6
#
 
7
#    Change the path below to point to the directory where db.h is
 
8
#    installed on your system.
 
9
 
 
10
#INCLUDE        = /usr/local/include
 
11
#INCLUDE        = /usr/local/BerkeleyDB/include
 
12
#INCLUDE        = ./libraries/2.7.5
 
13
#INCLUDE        = ./libraries/3.0.55
 
14
#INCLUDE        = ./libraries/3.1.17
 
15
INCLUDE = ./libraries/3.2.7
 
16
 
 
17
# 2. Where is libdb?
 
18
#
 
19
#    Change the path below to point to the directory where libdb is
 
20
#    installed on your system.
 
21
 
 
22
#LIB    = /usr/local/lib
 
23
#LIB    = /usr/local/BerkeleyDB/lib
 
24
#LIB    = ./libraries/2.7.5
 
25
#LIB    = ./libraries/3.0.55
 
26
#LIB    = ./libraries/3.1.17
 
27
LIB     = ./libraries/3.2.7
 
28
 
 
29
# 3. Is the library called libdb?
 
30
#
 
31
#    If you have copies of both 1.x and 2.x Berkeley DB installed on
 
32
#    your system it can sometimes be tricky to make sure you are using
 
33
#    the correct one. Renaming one (or creating a symbolic link) to
 
34
#    include the version number of the library can help.
 
35
#
 
36
#    For example, if you have Berkeley DB 2.6.4  you could rename the
 
37
#    Berkeley DB library from libdb.a to libdb-2.6.4.a  and change the
 
38
#    DBNAME line below to look like this:
 
39
#
 
40
#        DBNAME = -ldb-2.6.4 
 
41
#
 
42
#    Note: If you are building this module with Win32, -llibdb will be
 
43
#    used by default.
 
44
#
 
45
#    If you have changed the name of the library, uncomment the line
 
46
#    below (by removing the leading #) and edit the line to use the name
 
47
#    you have picked.
 
48
 
 
49
#DBNAME = -ldb-3.0
 
50
 
 
51
# end of file config.in