~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to include/iprt/buildconfig.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-12-18 16:44:29 UTC
  • mfrom: (0.3.3 upstream) (0.4.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091218164429-jd34ccexpv5na11a
Tags: 3.1.2-dfsg-1ubuntu1
* Merge from Debian unstable (LP: #498219), remaining changes:
  - Disable update action
    - debian/patches/u01-disable-update-action.dpatch
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
* Fixes the following bugs:
  - Kernel module fails to build with Linux >= 2.6.32 (LP: #474625)
  - X.Org drivers need to be rebuilt against X-Server 1.7 (LP: #495935)
  - The *-source packages try to build the kernel modules even though the
    kernel headers aren't available (LP: #473334)
* Replace *-source packages with transitional packages for *-dkms.
* Adapt u01-disable-update-action.dpatch and u02-lp-integration.dpatch for
  new upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** @file
 
2
 * IPRT - Build Configuration Information
 
3
 */
 
4
 
 
5
/*
 
6
 * Copyright (C) 2009 Sun Microsystems, Inc.
 
7
 *
 
8
 * This file is part of VirtualBox Open Source Edition (OSE), as
 
9
 * available from http://www.virtualbox.org. This file is free software;
 
10
 * you can redistribute it and/or modify it under the terms of the GNU
 
11
 * General Public License (GPL) as published by the Free Software
 
12
 * Foundation, in version 2 as it comes in the "COPYING" file of the
 
13
 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
 
14
 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
 
15
 *
 
16
 * The contents of this file may alternatively be used under the terms
 
17
 * of the Common Development and Distribution License Version 1.0
 
18
 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
 
19
 * VirtualBox OSE distribution, in which case the provisions of the
 
20
 * CDDL are applicable instead of those of the GPL.
 
21
 *
 
22
 * You may elect to license modified versions of this file under the
 
23
 * terms and conditions of either the GPL or the CDDL or both.
 
24
 *
 
25
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
 
26
 * Clara, CA 95054 USA or visit http://www.sun.com if you need
 
27
 * additional information or have any questions.
 
28
 */
 
29
 
 
30
#ifndef ___iprt_buildconfig_h
 
31
#define ___iprt_buildconfig_h
 
32
 
 
33
#include <iprt/cdefs.h>
 
34
#include <iprt/types.h>
 
35
 
 
36
RT_C_DECLS_BEGIN
 
37
 
 
38
/** @defgroup grp_rt_buildconfig    RTBldCfg - Build Configuration Information
 
39
 * @ingroup grp_rt
 
40
 * @{
 
41
 */
 
42
 
 
43
/**
 
44
 * Gets the source code management revision of the IPRT build.
 
45
 * @returns Source code management revision number.
 
46
 */
 
47
RTDECL(uint32_t)     RTBldCfgRevision(void);
 
48
 
 
49
/**
 
50
 * Gets the source code management revision of the IPRT build.
 
51
 * @returns Read only string containing the revision number.
 
52
 */
 
53
RTDECL(const char *) RTBldCfgRevisionStr(void);
 
54
 
 
55
/**
 
56
 * Gets the product version string.
 
57
 *
 
58
 * This will be a string on the form "x.y.z[_string]".
 
59
 *
 
60
 * @returns Read only version string.
 
61
 *
 
62
 * @remarks This is a build time configuration thing that the product using IPRT
 
63
 *          will set.  It is therefore not any IPRT version, but rather the
 
64
 *          version of that product.
 
65
 */
 
66
RTDECL(const char *) RTBldCfgVersion(void);
 
67
 
 
68
/**
 
69
 * Gets the major product version number.
 
70
 * @returns Major product version number.
 
71
 * @remarks See RTBldCfgVersion.
 
72
 */
 
73
RTDECL(uint32_t)     RTBldCfgVersionMajor(void);
 
74
 
 
75
/**
 
76
 * Gets the minor product version number.
 
77
 * @returns Minor product version number.
 
78
 * @remarks See RTBldCfgVersion.
 
79
 */
 
80
RTDECL(uint32_t)     RTBldCfgVersionMinor(void);
 
81
 
 
82
/**
 
83
 * Gets the product build number.
 
84
 * @returns Product build number.
 
85
 * @remarks See RTBldCfgVersion.
 
86
 */
 
87
RTDECL(uint32_t)     RTBldCfgVersionBuild(void);
 
88
 
 
89
 
 
90
/** @} */
 
91
 
 
92
RT_C_DECLS_END
 
93
 
 
94
#endif
 
95