From 37de65a941efbd83069db704b917700273f76a33 Mon Sep 17 00:00:00 2001 From: levlam Date: Fri, 23 Aug 2019 18:34:51 +0300 Subject: [PATCH] build.html: implicitly state that dev OpenSSL and zlib packages are needed. GitOrigin-RevId: 2007fc970d700d21fe47bfe80bba1e5d1a606cb2 --- build.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.html b/build.html index c7fe612a..9f6a9174 100644 --- a/build.html +++ b/build.html @@ -497,7 +497,7 @@ function onOptionsChanged() { if (os_linux && linux_distro === 'Other') { var jdk = target === 'JNI' ? ', JDK ' : ''; var compiler = use_clang ? 'clang++ >= 3.4' : 'g++ >= 4.9.2'; - pre_text.push('Install Git, ' + compiler + ', make, CMake >= 3.0.2, OpenSSL, zlib, gperf, PHP' + jdk + ' using your package manager.'); + pre_text.push('Install Git, ' + compiler + ', make, CMake >= 3.0.2, OpenSSL-dev, zlib-dev, gperf, PHP' + jdk + ' using your package manager.'); } if (os_linux && os.includes('Node.js')) { pre_text.push('Note that for Node.js ≤ 9.11.2 you must build TDLib with OpenSSL 1.0.* and for Node.js ≥ 10 with OpenSSL 1.1.* instead, so you may need to modify the following commands to install a proper OpenSSL version.');