kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 7d0714d425d7596331014caaf4aca754eb98fba4
parent 337e7dd1120ddfcb1b4c9735d799ce316f366a89
Author: St John Karp <contact@stjo.hn>
Date:   Fri, 17 Jun 2022 05:02:08 -0400

purple-discord: Include some extra header paths in build script

Also removed an unnecessary variable that set the pkg-config path.

NB: This package currently compiles but doesn't seem to work.
When I run finch in debug mode I get the following error:

plugins: /usr/lib/purple-2/libdiscord.so is not loadable: Error relocating
/usr/lib/purple-2/libdiscord.so: SECITEM_FreeItem: symbol not fo»und

Diffstat:
Mextra/purple-discord/build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extra/purple-discord/build b/extra/purple-discord/build @@ -1,6 +1,6 @@ #!/usr/bin/env sh -export PKG_CONFIG_PATH='/usr/local/lib/pkgconfig' +export CFLAGS="$CFLAGS -I/usr/include/nss -I/usr/include/nspr" make mkdir -p "$1$(pkg-config --variable=plugindir purple)" cp libdiscord.so "$1$(pkg-config --variable=plugindir purple)"