Remove some stray references to OpenSSL (#30710)

These were left over from the change to use rustls.
This commit is contained in:
Martin Robinson 2023-11-09 10:17:19 +01:00 committed by GitHub
parent 149c322639
commit c529bfa49e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 5 deletions

View file

@ -33,8 +33,6 @@ Building Servo is quite easy. Install the prerequisites described in the [README
./mach build -d ./mach build -d
``` ```
*Note: on Mac, you might run into an SSL issue while compiling. You'll find a solution to this problem [here](https://github.com/sfackler/rust-openssl/issues/255).*
There are three main build profiles, which you can build and use independently of one another: There are three main build profiles, which you can build and use independently of one another:
* debug builds, which allow you to use a debugger (lldb) * debug builds, which allow you to use a debugger (lldb)

View file

@ -13,7 +13,7 @@ clangStdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
# Native dependencies # Native dependencies
fontconfig freetype openssl libunwind fontconfig freetype libunwind
xorg.libxcb xorg.libxcb
xorg.libX11 xorg.libX11

View file

@ -51,8 +51,6 @@ class Base:
f"gst-plugin-scanner{self.executable_suffix()}", f"gst-plugin-scanner{self.executable_suffix()}",
) )
env["GST_PLUGIN_SYSTEM_PATH"] = os.path.join(gstreamer_root, "lib", "gstreamer-1.0") env["GST_PLUGIN_SYSTEM_PATH"] = os.path.join(gstreamer_root, "lib", "gstreamer-1.0")
if self.is_macos:
env["OPENSSL_INCLUDE_DIR"] = os.path.join(gstreamer_root, "Headers")
# If we are not cross-compiling GStreamer must be installed for the system. In # If we are not cross-compiling GStreamer must be installed for the system. In
# the cross-compilation case, we might be picking it up from another directory. # the cross-compilation case, we might be picking it up from another directory.