GNOME Bugzilla – Bug 755651
gst-uninstalled: Added env var for uninstalled PTP helper
Last modified: 2015-10-23 12:45:19 UTC
Created attachment 312172 [details] [review] Patch file The default gst-uninstalled script didn't point at the uninstalled PTP helper - added that.
Comment on attachment 312172 [details] [review] Patch file > # Point at the uninstalled plugin scanner > export GST_PLUGIN_SCANNER=$GST/gstreamer/libs/gst/helpers/gst-plugin-scanner >+# Point at the uninstalled PTP helper >+export GST_PTP_HELPER=$GST/gstreamer/libs/gst/helpers/.libs/gst-ptp-helper Should it be .libs/gst-ptp-helper or gst-ptp-helper I wonder? (cf. plugin scanner two lines up)
Both unfortunately :) You need to use the .libs one because you need to setcap/setuid the real executable (if the libtool wrapper script is setcap/setuid this won't be inherited by the child process). But on some platforms (Windows!) the wrapper script will be called gst-ptp-helper while the real executable is gst-ptp-helper.exe
Does gst-uninstalled work on Windows?
No idea, but gst-ptp-helper does not :) So maybe we can just ignore that
Ok, whatever works...