Skip to content

Commit

Permalink
* feat: Adds java 17 dependencies. (#529)
Browse files Browse the repository at this point in the history
* feat: Adds java 17 dependencies.

Sets to use old DatagramSocket implementation.

* squash: Fixes loading native libraries.
  • Loading branch information
damencho authored Mar 20, 2024
1 parent 551ae20 commit 04ad08f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Section: net
Priority: extra
Maintainer: Jitsi Team <dev@jitsi.org>
Uploaders: Emil Ivov <emcho@jitsi.org>, Damian Minkov <damencho@jitsi.org>
Build-Depends: debhelper, dh-systemd, openjdk-11-jdk, maven
Build-Depends: debhelper, dh-systemd, openjdk-11-jdk | openjdk-17-jdk, maven
Standards-Version: 3.9.3
Homepage: https://jitsi.org

Package: jigasi
Architecture: all
Depends: ${misc:Depends}, default-jre-headless (>= 2:1.11), openssl, ruby-hocon
Depends: ${misc:Depends}, openjdk-11-jre-headless | openjdk-11-jre | openjdk-17-jre-headless | openjdk-17-jre, openssl, ruby-hocon
Description: Jitsi Gateway for SIP
Jitsi Meet is a WebRTC JavaScript application that uses Jitsi
Videobridge to provide high quality, scalable video conferences.
Expand Down
2 changes: 1 addition & 1 deletion jigasi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ fi

if [ -z "$JIGASI_MAX_MEMORY" ]; then JIGASI_MAX_MEMORY=3072m; fi

LD_LIBRARY_PATH=$libs exec java -Xmx$JIGASI_MAX_MEMORY -Djava.library.path=$libs $LOGGING_CONFIG_PARAM $JAVA_SYS_PROPS -cp $cp $mainClass $@
LD_LIBRARY_PATH=$libs exec java -Xmx$JIGASI_MAX_MEMORY -Djdk.net.usePlainDatagramSocketImpl=true -Djava.library.path=$libs $LOGGING_CONFIG_PARAM $JAVA_SYS_PROPS -cp $cp $mainClass $@
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jitsi-utils</artifactId>
<version>1.0-126-g02b0c86</version>
<version>1.0-130-g1473517</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down

0 comments on commit 04ad08f

Please sign in to comment.