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

« back to all changes in this revision

Viewing changes to libdb/dist/aclocal/config.ac

  • 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
 
# Features we don't test for, but want the #defines to exist for
2
 
# other ports.
3
 
AH_TEMPLATE(HAVE_VXWORKS, [Define to 1 if building VxWorks.])
4
 
 
5
 
AH_TEMPLATE(HAVE_FILESYSTEM_NOTZERO,
6
 
    [Define to 1 if allocated filesystem blocks are not zeroed.])
7
 
 
8
 
AH_TEMPLATE(HAVE_UNLINK_WITH_OPEN_FAILURE,
9
 
    [Define to 1 if unlink of file with open file descriptors will fail.])
10
 
 
11
 
AH_BOTTOM([/*
12
 
 * Exit success/failure macros.
13
 
 */
14
 
#ifndef HAVE_EXIT_SUCCESS
15
 
#define EXIT_FAILURE    1
16
 
#define EXIT_SUCCESS    0
17
 
#endif
18
 
 
19
 
/*
20
 
 * Don't step on the namespace.  Other libraries may have their own
21
 
 * implementations of these functions, we don't want to use their
22
 
 * implementations or force them to use ours based on the load order.
23
 
 */
24
 
#ifndef HAVE_GETCWD
25
 
#define getcwd          __db_Cgetcwd
26
 
#endif
27
 
#ifndef HAVE_MEMCMP
28
 
#define memcmp          __db_Cmemcmp
29
 
#endif
30
 
#ifndef HAVE_MEMCPY
31
 
#define memcpy          __db_Cmemcpy
32
 
#endif
33
 
#ifndef HAVE_MEMMOVE
34
 
#define memmove         __db_Cmemmove
35
 
#endif
36
 
#ifndef HAVE_RAISE
37
 
#define raise           __db_Craise
38
 
#endif
39
 
#ifndef HAVE_SNPRINTF
40
 
#define snprintf        __db_Csnprintf
41
 
#endif
42
 
#ifndef HAVE_STRCASECMP
43
 
#define strcasecmp      __db_Cstrcasecmp
44
 
#define strncasecmp     __db_Cstrncasecmp
45
 
#endif
46
 
#ifndef HAVE_STRERROR
47
 
#define strerror        __db_Cstrerror
48
 
#endif
49
 
#ifndef HAVE_VSNPRINTF
50
 
#define vsnprintf       __db_Cvsnprintf
51
 
#endif])