~diwic/ubuntu/lucid/pulseaudio/bugfixes

« back to all changes in this revision

Viewing changes to src/pulse/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-11-04 15:46:00 UTC
  • mfrom: (1.2.1 upstream) (1.1.6 lenny)
  • Revision ID: james.westby@ubuntu.com-20081104154600-hlzknpcazaam0nxm
Tags: 0.9.13-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Don't build against, and create jack package. Jack is not in main.
  - Remove --disable-per-user-esound-socket from configure flags, as we still
    want per user esound sockets.
  - Remove stop links from rc0 and rc6.
  - Change default resample algorithm and bubffer size.
  - Add alsa configuration files to route alsa applications via pulseaudio.
  - Move libasound2-plugins from Recommends to Depends.
* debian/pulseaudio.preinst: When upgrading from intrepid, remove
  /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race
  condition when starting GNOME in intrepid. This race should not exist in
  jaunty once libcanberra is built to use pulseaudio as a backend.
* Do not spawn a pulseaudio server if clients fail to find a running server.
* Remove explicit version dependency for libspeex-dev to allow the package
  to be built for now.
* Regenerate autotools files to work with Ubuntu's newer libtool/libltdl.
* debian/control: libpulsecore5 -> libpulsecore8 to match the library
  soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef fooversionhfoo /*-*-C-*-*/
2
2
#define fooversionhfoo
3
3
 
4
 
/* $Id: version.h.in 1426 2007-02-13 15:35:19Z ossman $ */
5
 
 
6
4
/***
7
5
  This file is part of PulseAudio.
8
6
 
9
7
  Copyright 2004-2006 Lennart Poettering
10
8
  Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
 
 
 
9
 
12
10
  PulseAudio is free software; you can redistribute it and/or modify
13
11
  it under the terms of the GNU Lesser General Public License as published
14
12
  by the Free Software Foundation; either version 2 of the License,
15
13
  or (at your option) any later version.
16
 
 
 
14
 
17
15
  PulseAudio is distributed in the hope that it will be useful, but
18
16
  WITHOUT ANY WARRANTY; without even the implied warranty of
19
17
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20
18
  General Public License for more details.
21
 
 
 
19
 
22
20
  You should have received a copy of the GNU Lesser General Public License
23
21
  along with PulseAudio; if not, write to the Free Software
24
22
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
37
35
/** Return the version of the header files. Keep in mind that this is
38
36
a macro and not a function, so it is impossible to get the pointer of
39
37
it. */
40
 
#define pa_get_headers_version() ("0.9.10")
 
38
#define pa_get_headers_version() ("0.9.13")
41
39
 
42
 
/** Return the version of the library the current application is linked to. */
 
40
/** Return the version of the library the current application is
 
41
 * linked to. */
43
42
const char* pa_get_library_version(void);
44
43
 
45
44
/** The current API version. Version 6 relates to Polypaudio
46
45
 * 0.6. Prior versions (i.e. Polypaudio 0.5.1 and older) have
47
46
 * PA_API_VERSION undefined.  */
48
 
#define PA_API_VERSION 11
 
47
#define PA_API_VERSION 12
49
48
 
50
 
/** The current protocol version. Version 8 relates to Polypaudio 0.8/PulseAudio 0.9.
51
 
 * \since 0.8 */
52
 
#define PA_PROTOCOL_VERSION 12
 
49
/** The current protocol version. Version 8 relates to Polypaudio
 
50
 * 0.8/PulseAudio 0.9. */
 
51
#define PA_PROTOCOL_VERSION 14
53
52
 
54
53
PA_C_DECL_END
55
54