~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

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
 
 
13
 
# 2. Where is libdb?
14
 
#
15
 
#    Change the path below to point to the directory where libdb is
16
 
#    installed on your system.
17
 
 
18
 
LIB     = /usr/local/lib
19
 
#LIB    = /usr/local/BerkeleyDB/lib
20
 
 
21
 
# 3. Is the library called libdb?
22
 
#
23
 
#    If you have copies of both 1.x and 2.x Berkeley DB installed on
24
 
#    your system it can sometimes be tricky to make sure you are using
25
 
#    the correct one. Renaming one (or creating a symbolic link) to
26
 
#    include the version number of the library can help.
27
 
#
28
 
#    For example, if you have Berkeley DB 2.6.4  you could rename the
29
 
#    Berkeley DB library from libdb.a to libdb-2.6.4.a  and change the
30
 
#    DBNAME line below to look like this:
31
 
#
32
 
#        DBNAME = -ldb-2.6.4 
33
 
#
34
 
#    Note: If you are building this module with Win32, -llibdb will be
35
 
#    used by default.
36
 
#
37
 
#    If you have changed the name of the library, uncomment the line
38
 
#    below (by removing the leading #) and edit the line to use the name
39
 
#    you have picked.
40
 
 
41
 
#DBNAME = -ldb-3.0
42
 
 
43
 
# end of file config.in