File: config.in

package info (click to toggle)
libberkeleydb-perl 0.34-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,044 kB
  • ctags: 308
  • sloc: perl: 9,690; ansic: 5,071; makefile: 47
file content (45 lines) | stat: -rw-r--r-- 1,316 bytes parent folder | download | duplicates (31)
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
# Filename:	config.in
#
# written by Paul Marquess <Paul.Marquess@btinternet.com>

# 1. Where is the file db.h?
#
#    Change the path below to point to the directory where db.h is
#    installed on your system.

#INCLUDE	= /usr/local/include
#INCLUDE	= ../..
INCLUDE	= /usr/local/BerkeleyDB/include

# 2. Where is libdb?
#
#    Change the path below to point to the directory where libdb is
#    installed on your system.

#LIB	= /usr/local/lib
#LIB	= ../..
LIB	= /usr/local/BerkeleyDB/lib

# 3. Is the library called libdb?
#
#    If you have copies of both 1.x and 2.x Berkeley DB installed on
#    your system it can sometimes be tricky to make sure you are using
#    the correct one. Renaming one (or creating a symbolic link) to
#    include the version number of the library can help.
#
#    For example, if you have Berkeley DB 2.6.4  you could rename the
#    Berkeley DB library from libdb.a to libdb-2.6.4.a  and change the
#    DBNAME line below to look like this:
#
#        DBNAME = -ldb-2.6.4 
#
#    Note: If you are building this module with Win32, -llibdb will be
#    used by default.
#
#    If you have changed the name of the library, uncomment the line
#    below (by removing the leading #) and edit the line to use the name
#    you have picked.

#DBNAME = -ldb-3.0

# end of file config.in