Results 44 comments of pi nuke

Gonna try to actively contribute to this issue as much as possible, but I am a busy developer, so feel free to step in, overstep me, or whatever is required...

[An implementation on Gentoo](https://gitweb.gentoo.org/dev/dilfridge.git/tree/media-video/miraclecast/miraclecast-1.0.9999.ebuild?id=1b6897fb8024ca5b9a7b1abdc45cc78fc7919d6a) [Arch User Repository](https://aur.archlinux.org/packages/miraclecast-git)

[MiracleCast Build Wiki](https://github.com/albfan/miraclecast/wiki/Building#1-install-dependencies)

Some relevant google results for the request: - [emerge problems](https://forums.gentoo.org/viewtopic-t-1118336-start-0.html) - [openrc support issue on the miraclecast gh page](https://github.com/albfan/miraclecast/issues/242)

So, in theory, if I build this with meson, I can just turn [this option](https://github.com/albfan/miraclecast/pull/441/commits/ca53af17718be9d91366342cd1443c3d03aa53f5#diff-76ea9078099f2ee8cc0e760a874dd153f225ba16ad10375c24ab6cd53518f3c4R17) off, and it should build

Likely my inexperience with compilers, but I'm getting an error on `meson setup build`: Could not invoke sanity test executable: .../sanitycheckc.exe I think it may be an environment variable that...

# Setup: ```bash cd ~ cd Downloads git clone https://github.com/albfan/miraclecast cd miraclecast mkdir build cd build ``` # What works: - modify the build guide for systems without systemd ##...

Just realized my mistake. That shared library is a symlink to a file that does not exist. Trying to see if I can update the symlink

I think I found it: ```bash chronos@localhost ~/MyFiles/Downloads/miraclecast/build $ stat /lib64/libpthread.so.0 File: /lib64/libpthread.so.0 Size: 16512 Blocks: 40 IO Block: 4096 regular file Device: fe00h/65024d Inode: 1989 Links: 1 Access: (0755/-rwxr-xr-x)...

fix: `ln -sf /lib64/libpthread.so.0 /usr/local/lib64/libpthread.so`