diff options
author | Alexander Kurtz <kurtz.alex@googlemail.com> | 2011-03-24 21:35:17 +0000 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2011-03-24 21:43:29 +0000 |
commit | 705cf4d3164befffeb927e05d9f0f4402e9f80c4 (patch) | |
tree | cfadbd9f813e7510187dd73f9fc01ad5f07aa89c /Makefile.am | |
parent | d47a33775b55877b9df42add3346779bba077299 (diff) | |
download | pulseaudio-panda-705cf4d3164befffeb927e05d9f0f4402e9f80c4.tar.gz pulseaudio-panda-705cf4d3164befffeb927e05d9f0f4402e9f80c4.tar.bz2 pulseaudio-panda-705cf4d3164befffeb927e05d9f0f4402e9f80c4.zip |
vala: Some bugfixes for the vala bindings
1. PA uses Vala's "Posix" package (see line 23 of libpulse.vapi).
These dependencies have to be declared in the *.deps file.
2. Fix obvious copy/paste error.
3. Rename the parameter to match the C function. This simplifies
understanding what this parameter means.
4. According to the official documentation the "dev" parameter
for playback/capture streams on connection may be NULL and this
is the default. Change the method definition accordingly.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ca43de10..936e0191 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,7 @@ EXTRA_DIST = \ doxygen/doxygen.conf.in \ README \ todo \ + vala/libpulse.deps \ vala/libpulse.vapi SUBDIRS = src doxygen man po @@ -36,7 +37,7 @@ MAINTAINERCLEANFILES = noinst_DATA = vapidir = $(datadir)/vala/vapi -vapi_DATA = vala/libpulse.vapi +vapi_DATA = vala/libpulse.deps vala/libpulse.vapi pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libpulse.pc libpulse-simple.pc |