On Sun, 2007-11-11 23:18:22 -0000, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > New Revision: 2048 > URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=2048&root=pulseaudio&view=rev
This won't properly build /and/ install unless you have the BlueZ
stuff installed.
> --- trunk/src/Makefile.am (original)
> +++ trunk/src/Makefile.am Mon Nov 12 00:18:19 2007
[...]
> @@ -1069,6 +1072,14 @@
> modlibexec_LTLIBRARIES += \
> libdbus-util.la \
> module-hal-detect.la
> +endif
> +
> +if HAVE_BLUEZ
> +modlibexec_LTLIBRARIES += \
> + module-bt-proximity.la
> +
> +pulselibexec_PROGRAMS += \
> + bt-proximity-helper
> endif
>
> # These are generated by a M4 script
[...]
> @@ -1455,6 +1478,7 @@
> install-exec-hook:
> chown root $(DESTDIR)$(bindir)/pulseaudio ; true
> chmod u+s $(DESTDIR)$(bindir)/pulseaudio
> + chmod u+s $(DESTDIR)$(pulselibexecdir)/bt-proximity-helper
> ln -sf pacat $(DESTDIR)$(bindir)/parec
> rm -f $(DESTDIR)$(modlibexecdir)/*.a
> rm -f $(DESTDIR)$(libdir)/libpulsedsp.a
This chmod isn't protected. The program isn't there if the BlueZ
development stuff isn't installed. Suggested patch (alike the example
two lines above):
Index: src/Makefile.am
===================================================================
--- src/Makefile.am (revision 2048)
+++ src/Makefile.am (working copy)
@@ -1478,7 +1478,7 @@
install-exec-hook:
chown root $(DESTDIR)$(bindir)/pulseaudio ; true
chmod u+s $(DESTDIR)$(bindir)/pulseaudio
- chmod u+s $(DESTDIR)$(pulselibexecdir)/bt-proximity-helper
+ chmod u+s $(DESTDIR)$(pulselibexecdir)/bt-proximity-helper ; true
ln -sf pacat $(DESTDIR)$(bindir)/parec
rm -f $(DESTDIR)$(modlibexecdir)/*.a
rm -f $(DESTDIR)$(libdir)/libpulsedsp.a
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: http://perl.plover.com/Questions.html
the second :
signature.asc
Description: Digital signature
_______________________________________________ pulseaudio-discuss mailing list [email protected] https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss
