~ubuntu-branches/ubuntu/oneiric/pulseaudio/oneiric

« back to all changes in this revision

Viewing changes to src/pulse/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2007-12-04 00:56:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071204005608-y1xqvcu45g1yxtlu
Tags: 0.9.8-1ubuntu1
"Hail our new PulseAudio overlords (part two)."

* Merge from Debian unstable.
* Ubuntu-specific changes:
  - debian/control:
    + Don't build-depend on libjack0.100.0-dev or build jack module
      packages,
    + Update pulseaudio's Recommends and Suggests to accomodate
      existing promoted main packages,
    + Explicitly mention pasuspender in pulseaudio-utils's long
      description,
    + Add Vcs-Bzr URI,
    + Adhere to DebianMaintainerField;
  - debian/rules: Use multiuser for update-rc.d;
  - debian/patches/series: Retain the exclusion of
    0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch.
* Dropped Ubuntu-specific change (absorbed into Debian source):
  debian/patches/0002-Double-esound-maximum-sample-size.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
/** Return the version of the header files. Keep in mind that this is
38
38
a macro and not a function, so it is impossible to get the pointer of
39
39
it. */
40
 
#define pa_get_headers_version() ("0.9.7")
 
40
#define pa_get_headers_version() ("0.9.8")
41
41
 
42
42
/** Return the version of the library the current application is linked to. */
43
43
const char* pa_get_library_version(void);
45
45
/** The current API version. Version 6 relates to Polypaudio
46
46
 * 0.6. Prior versions (i.e. Polypaudio 0.5.1 and older) have
47
47
 * PA_API_VERSION undefined.  */
48
 
#define PA_API_VERSION 10
 
48
#define PA_API_VERSION 11
49
49
 
50
50
/** The current protocol version. Version 8 relates to Polypaudio 0.8/PulseAudio 0.9.
51
51
 * \since 0.8 */
52
 
#define PA_PROTOCOL_VERSION 11
 
52
#define PA_PROTOCOL_VERSION 12
53
53
 
54
54
PA_C_DECL_END
55
55