aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2023-11-27 13:21:56 +0300
committerlevlam <levlam@telegram.org>2023-11-27 13:21:56 +0300
commitbf9c8c81c76a54dd12c2ab8d48560068afc7626d (patch)
tree638a6da372b7cf34f5fefd275c561cb486ac50f6 /build.html
parenta32b11de980510472cd84223af0a1e7e790caa50 (diff)
Update FreeBSD build instructions to FreeBSD 13.
Diffstat (limited to 'build.html')
-rw-r--r--build.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.html b/build.html
index 842b07550..b45ed8142 100644
--- a/build.html
+++ b/build.html
@@ -740,7 +740,7 @@ function onOptionsChanged() {
pre_text.push('Note that for Node.js &ge; 17 you must build TDLib with OpenSSL 3.0.*, for Node.js &ge; 10 with OpenSSL 1.1.*, and for Node.js &lt; 10 with OpenSSL 1.0.*, so you may need to modify the following commands to install a proper OpenSSL version.');
}
if (os_freebsd) {
- pre_text.push('Note that the following instruction is for FreeBSD 11.');
+ pre_text.push('Note that the following instruction is for FreeBSD 13.');
pre_text.push('Note that the following calls to <code>pkg</code> needs to be run as <code>root</code>.');
}
if (os_openbsd) {
@@ -896,9 +896,9 @@ function onOptionsChanged() {
}
} else if (os_freebsd) {
commands.push(sudo + 'pkg upgrade');
- var packages = 'git gperf php72 cmake';
+ var packages = 'git gperf php83 cmake';
if (target === 'JNI') {
- packages += ' openjdk';
+ packages += ' openjdk21';
}
commands.push(sudo + 'pkg install ' + packages);
} else if (os_openbsd) {