1 /* bdb_compat.c --- Compatibility wrapper for different BDB versions.
3 * ====================================================================
4 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
6 * This software is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at http://subversion.tigris.org/license-1.html.
9 * If newer versions of this license are posted there, you may use a
10 * newer version instead, at your option.
12 * This software consists of voluntary contributions made by many
13 * individuals. For exact contribution history, see the revision
14 * history and logs, available at http://subversion.tigris.org/.
15 * ====================================================================
18 #include "bdb_compat.h"
21 svn_fs_bdb__check_version(void)
25 db_version(&major
, &minor
, NULL
);
26 if (major
!= DB_VERSION_MAJOR
|| minor
!= DB_VERSION_MINOR
)
27 return DB_OLD_VERSION
;