diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-03-21 01:48:00 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-03-21 01:54:05 +0100 |
commit | 52f5ef521d12c1becaab959ec5e586ddbe01882a (patch) | |
tree | b07b48e61c9704a5b42f2232e16835239a6164eb /pcr/jitsi | |
parent | e27a42d43e6e584be060b8141f574fc4c02d270f (diff) | |
download | abslibre-52f5ef521d12c1becaab959ec5e586ddbe01882a.tar.gz abslibre-52f5ef521d12c1becaab959ec5e586ddbe01882a.tar.bz2 abslibre-52f5ef521d12c1becaab959ec5e586ddbe01882a.zip |
pcr: jitsi: Make it architecture specific because it has native ELF libraries
Jitsi has ELF libraries in /usr/lib/jitsi/lib/native/ such as:
- libgalagonotification.so
- libglobalshortcut.so
- libhid.so
- libhwaddressretriever.so
- libjdic_misc.so
- libsysactivitynotifications.so
- libunix-java.so
Jitsi probably interfaces with such libraries through JNI.
When running jitsi on i686, while the GUI works and text messaging
seem to work fine, there are errors showing up when running it from the
console:
java.lang.UnsatisfiedLinkError: /usr/lib/jitsi/lib/native/libglobalshortcut.so:
/usr/lib/jitsi/lib/native/libglobalshortcut.so: wrong ELF class: ELFCLASS64
(Possible cause: architecture word width mismatch)
This makes jitsi architecture specific again.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/jitsi')
-rw-r--r-- | pcr/jitsi/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pcr/jitsi/PKGBUILD b/pcr/jitsi/PKGBUILD index 78366ebc1..c297d2e3d 100644 --- a/pcr/jitsi/PKGBUILD +++ b/pcr/jitsi/PKGBUILD @@ -10,9 +10,9 @@ pkgname=jitsi pkgver=2.10.5550 -pkgrel=7 +pkgrel=8 pkgdesc="An audio/video SIP VoIP phone and instant messenger written in Java (formerly SIP-Communicator)" -arch=('any') +arch=('armv7h' 'i686' 'x86_64') url="http://jitsi.org" license=('Apache') depends=('java-runtime=8') |