Revert "Added paths to openssl includes and libraries for OSX because make complained that it couldn't find them. (#1761)"

This reverts commit 65cf1a3221.
This commit is contained in:
KlimentSerafimov
2022-05-20 12:32:36 -04:00
committed by GitHub
parent 65cf1a3221
commit 78d919ef53

View File

@@ -23,12 +23,6 @@ else
$(error Bad build type `$(BUILD_TYPE)', see Makefile for options)
endif
# macOS with brew-installed openssl requires explicit paths
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
PG_CONFIGURE_OPTS += --with-includes=/usr/local/opt/openssl/include --with-libraries=/usr/local/opt/openssl/lib
endif
# Choose whether we should be silent or verbose
CARGO_BUILD_FLAGS += --$(if $(filter s,$(MAKEFLAGS)),quiet,verbose)
# Fix for a corner case when make doesn't pass a jobserver