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

« back to all changes in this revision

Viewing changes to libdb/perl/DB_File/version.c

  • 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
 
/*
2
 
 
3
 
 version.c -- Perl 5 interface to Berkeley DB
4
 
 
5
 
 written by Paul Marquess <Paul.Marquess@btinternet.com>
6
 
 last modified 2nd Jan 2002
7
 
 version 1.802
8
 
 
9
 
 All comments/suggestions/problems are welcome
10
 
 
11
 
     Copyright (c) 1995-2002 Paul Marquess. All rights reserved.
12
 
     This program is free software; you can redistribute it and/or
13
 
     modify it under the same terms as Perl itself.
14
 
 
15
 
 Changes:
16
 
        1.71 -  Support for Berkeley DB version 3.
17
 
                Support for Berkeley DB 2/3's backward compatability mode.
18
 
        1.72 -  No change.
19
 
        1.73 -  Added support for threading
20
 
        1.74 -  Added Perl core patch 7801.
21
 
 
22
 
 
23
 
*/
24
 
 
25
 
#define PERL_NO_GET_CONTEXT
26
 
#include "EXTERN.h"
27
 
#include "perl.h"
28
 
#include "XSUB.h"
29
 
 
30
 
#include <db.h>
31
 
 
32
 
void
33
 
#ifdef CAN_PROTOTYPE
34
 
__getBerkeleyDBInfo(void)
35
 
#else
36
 
__getBerkeleyDBInfo()
37
 
#endif
38
 
{
39
 
#ifdef dTHX
40
 
    dTHX;
41
 
#endif
42
 
    SV * version_sv = perl_get_sv("DB_File::db_version", GV_ADD|GV_ADDMULTI) ;
43
 
    SV * ver_sv = perl_get_sv("DB_File::db_ver", GV_ADD|GV_ADDMULTI) ;
44
 
    SV * compat_sv = perl_get_sv("DB_File::db_185_compat", GV_ADD|GV_ADDMULTI) ;
45
 
 
46
 
#ifdef DB_VERSION_MAJOR
47
 
    int Major, Minor, Patch ;
48
 
 
49
 
    (void)db_version(&Major, &Minor, &Patch) ;
50
 
 
51
 
    /* Check that the versions of db.h and libdb.a are the same */
52
 
    if (Major != DB_VERSION_MAJOR || Minor != DB_VERSION_MINOR
53
 
                || Patch != DB_VERSION_PATCH)
54
 
        croak("\nDB_File needs compatible versions of libdb & db.h\n\tyou have db.h version %d.%d.%d and libdb version %d.%d.%d\n",
55
 
                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
56
 
                Major, Minor, Patch) ;
57
 
 
58
 
    /* check that libdb is recent enough  -- we need 2.3.4 or greater */
59
 
    if (Major == 2 && (Minor < 3 || (Minor ==  3 && Patch < 4)))
60
 
        croak("DB_File needs Berkeley DB 2.3.4 or greater, you have %d.%d.%d\n",
61
 
                 Major, Minor, Patch) ;
62
 
 
63
 
    {
64
 
        char buffer[40] ;
65
 
        sprintf(buffer, "%d.%d", Major, Minor) ;
66
 
        sv_setpv(version_sv, buffer) ;
67
 
        sprintf(buffer, "%d.%03d%03d", Major, Minor, Patch) ;
68
 
        sv_setpv(ver_sv, buffer) ;
69
 
    }
70
 
 
71
 
#else /* ! DB_VERSION_MAJOR */
72
 
    sv_setiv(version_sv, 1) ;
73
 
    sv_setiv(ver_sv, 1) ;
74
 
#endif /* ! DB_VERSION_MAJOR */
75
 
 
76
 
#ifdef COMPAT185
77
 
    sv_setiv(compat_sv, 1) ;
78
 
#else /* ! COMPAT185 */
79
 
    sv_setiv(compat_sv, 0) ;
80
 
#endif /* ! COMPAT185 */
81
 
 
82
 
}