~ubuntu-branches/ubuntu/oneiric/oss4/oneiric-proposed

« back to all changes in this revision

Viewing changes to debian/include-alsa/alsa/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Rivera
  • Date: 2011-06-16 20:37:48 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110616203748-jbrxik6ql33z54co
Tags: 4.2-build2004-1ubuntu1
* Merge from Debian unstable.
  - Supports our current kernel (LP: #746048)
  Remaining changes:
  - debian/oss4-dkms.dkms.in: s/source/build/ in Kernel headers paths.
* ld-as-needed.patch: Re-order CC arguments to enable building with ld
  --as-needed (LP: #770972)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  version.h
 
3
 */
 
4
 
 
5
#define SND_LIB_MAJOR           1 /**< major number of library version */
 
6
#define SND_LIB_MINOR           0 /**< minor number of library version */
 
7
#define SND_LIB_SUBMINOR        5 /**< subminor number of library version */
 
8
#define SND_LIB_EXTRAVER        1000000 /**< extra version number, used mainly for betas */
 
9
/** library version */
 
10
#define SND_LIB_VERSION         ((SND_LIB_MAJOR<<16)|\
 
11
                                 (SND_LIB_MINOR<<8)|\
 
12
                                  SND_LIB_SUBMINOR)
 
13
/** library version (string) */
 
14
#define SND_LIB_VERSION_STR     "1.0.5"
 
15