summaryrefslogtreecommitdiff
path: root/gst-env.py
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-02-04 00:55:39 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-04-07 15:49:02 +0000
commit3fdfcdf2f60012868c65cb182eb3013918ff33a5 (patch)
tree5cf05289c6f2cd451f49a34a28dc8e15de3b07d1 /gst-env.py
parent8ed0b03c780c407750234df9bd875c8348892efd (diff)
downloadgstreamer-3fdfcdf2f60012868c65cb182eb3013918ff33a5.tar.gz
ptp-helper: Rewrite in Rust for portability and security
This works on Linux, Android, Windows, macOS, FreeBSD, NetBSD, OpenBSD, DragonFlyBSD, Solaris and Illumos. Newly supported compared to the C version is Windows. Compared to the C version various error paths are handled more correctly and a couple of memory leaks are fixed. Otherwise it should work identically. The minimum required Rust version for compiling this is 1.48, i.e. the version currently in Debian stable. On Windows, Rust 1.54 is needed at least. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1259 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3889>
Diffstat (limited to 'gst-env.py')
-rwxr-xr-xgst-env.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-env.py b/gst-env.py
index 2a714c28e9..2d4ae32a43 100755
--- a/gst-env.py
+++ b/gst-env.py
@@ -289,7 +289,7 @@ def get_subprocess_env(options, gst_version):
env["GST_PLUGIN_SCANNER"] = os.path.normpath(
"%s/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner" % options.builddir)
env["GST_PTP_HELPER"] = os.path.normpath(
- "%s/subprojects/gstreamer/libs/gst/helpers/gst-ptp-helper" % options.builddir)
+ "%s/subprojects/gstreamer/libs/gst/helpers/ptp/gst-ptp-helper" % options.builddir)
if os.name == 'nt':
lib_path_envvar = 'PATH'