GNOME Bugzilla – Bug 766441
OpenBSD does not use librt, but provides the needed functions in libc
Last modified: 2016-05-20 06:10:34 UTC
Created attachment 327888 [details] [review] configure check for librt functions/usage in OpenBSD Hello, In OpenBSD there is no "actual" librt that programs can link with, instead the system/base libc provides the functions one would customarily find there. In the case of gst-plugins-bad, that function would be shm_open(). This very trivial patch enables shm_open without the need to -lrt (like how it is currently done for the darwin platform).
commit fe096cf905baa3516a0933e84fb3f42b46006824 Author: Alex-P. Natsios <drakevr@2f30.org> Date: Sat May 14 16:59:14 2016 +0300 configure: check for shm_open() in OpenBSD In OpenBSD there is no "actual" librt that programs can link with, instead the system/base libc provides the functions one would customarily find there. https://bugzilla.gnome.org/show_bug.cgi?id=766441