summaryrefslogtreecommitdiff
path: root/package/multimedia/pulseaudio
AgeCommit message (Collapse)Author
2012-09-20package/pulseaudio: fix build-dependency on gettextYann E. MORIN
In its Config.in, pulseaudio declares a dependency on gettext using the documented construct: select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT but in its .mk file, declares a dependency on the package: PULSEAUDIO_DEPENDENCIES = [...] $(if $(BR2_PACKAGE_GETTEXT),gettext) [...] instead of the documented: $(if $(BR2_NEEDS_GETTEXT),gettext) Fix that. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-09-20Remove all references to libintlThomas Petazzoni
From now on, packages only need to select the BR2_PACKAGE_GETTEXT option and depend on the 'gettext' package to get the necessary i18n libraries installed on the target. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [yann.morin.1998@free.fr: remove BR2_PACKAGE_LIBINTL] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-07-17all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-06-04pulseaudio: fix build error on toolchains without C++ supportPeter Korsgaard
The optional webrtc echo canceller is written in C++, causing auto* to want to link module-echo-cancel.so with CXX even if webrtc ISN'T used. If we don't have C++ support enabled in BR, CXX will point to /bin/false, which makes configure think we aren't able to create C++ .so files (arguable true), breaking the build when it tries to install the .so workaround it by patching up the libtool invocations to use C mode instead. Fixes http://autobuild.buildroot.net/results/114e5bf0086f2394b36f17a70cb54b357a72413c Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-20pulseaudio: add optional systemd supportPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-20pulseaudio: don't build man pages if not neededPeter Korsgaard
No sense in building them if they are thrown away by target-finalize anyway. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-20pulseaudio: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-03-16pulseaudio: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-29pulseaudio: needs host-intltoolPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-26pulseaudio: gtk supports needs x backendPeter Korsgaard
Uses X11 specific apis. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-25pulseaudio: alsa backend needs pcm+mixer apisPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-20package: add pulseaudioPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>