Skip to content

Commit

Permalink
jitsi: 2.8.5426 -> 2.10.5550 for CVE-2017-5603
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Mar 4, 2017
1 parent dc2bf68 commit 6011e3e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Expand Up @@ -8,11 +8,11 @@ assert stdenv.isLinux;
stdenv.mkDerivation rec {

name = "jitsi-${version}";
version = "2.8.5426";
version = "2.10.5550";

src = fetchurl {
url = "https://download.jitsi.org/jitsi/src/jitsi-src-${version}.zip";
sha256 = "0v7k16in2i57z5amr7k5c3fc8f0azrzrs5dvn729bwbc31z8cjg6";
sha256 = "11vjchc3dnzj55x7c62wsm6masvwmij1ifkds917r1qvil1nzz6d";
};


Expand Down
Expand Up @@ -8,20 +8,20 @@
+#mkdir -p $HOME/.sip-communicator/log
+
+cd "$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")"

# Get architecture
ARCH=`uname -m | sed -e s/x86_64/64/ -e s/i.86/32/`
@@ -6,10 +11,12 @@
@@ -6,7 +11,9 @@
# Additionnal JVM arguments
CLIENTARGS=""

+NATIVELIBS="lib/native/linux-64"
if [ $ARCH -eq 32 ]
if [ $ARCH = 32 ]
then
CLIENTARGS="-client -Xmx256m"
+ NATIVELIBS="lib/native/linux"
fi

export PATH=$PATH:native
-java $CLIENTARGS -classpath "lib/felix.jar:sc-bundles/sc-launcher.jar:sc-bundles/util.jar:lib/" -Djava.library.path=native -Dfelix.config.properties=file:./lib/felix.client.run.properties -Djava.util.logging.config.file=lib/logging.properties net.java.sip.communicator.launcher.SIPCommunicator
+LD_LIBRARY_PATH=@EXTRALIBS@ exec @JAVA@ $CLIENTARGS -classpath "lib/felix.jar:sc-bundles/sc-launcher.jar:sc-bundles/util.jar:lib/" -Djava.library.path=$NATIVELIBS -Dfelix.config.properties=file:lib/felix.client.run.properties -Djava.util.logging.config.file=lib/logging.properties net.java.sip.communicator.launcher.SIPCommunicator

0 comments on commit 6011e3e

Please sign in to comment.