Replies: 1 comment
-
Many thanks for this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Follow the instructions in the libalac repo (
ldconfig
)Then, back in shairport, run autoreconf as normal. When you run
./configure flags=abc
, modify it as such with the pkc config environment variable:Run make as usual.
To run shairport, you must set the linking library path environment variable as so:
LD_LIBRARY_PATH=/usr/local/lib ./shairport-sync --flags
note for pkg config, on other distributions, libraries might be installed elsewhere, simply add that to PKG_CONFIG_LIBDIR. To find out where the libraries are installed, you can run
ldconfig -p
as such:note that this will likely not show your user-installed libraries such as libalac or libplist (which I recommend installing from source, as Fedora only has the 2.2.0 version, which doesn't work with shairport sync)
Beta Was this translation helpful? Give feedback.
All reactions