From: Andrey Volk Date: Fri, 31 Dec 2021 10:40:27 +0000 (+0300) Subject: Remove ! pkg-config for mac X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48eb27f7b04dcdd3b67f392e1c2c136580ce8f5d;p=thirdparty%2Ffreeswitch.git Remove ! pkg-config for mac --- diff --git a/configure.ac b/configure.ac index baec8b2b83..4249fa9892 100644 --- a/configure.ac +++ b/configure.ac @@ -665,12 +665,12 @@ AC_PATH_PROG([PKG_CONFIG], [pkg-config], [no]) case $host in *-darwin*) path_push_unique PKG_CONFIG_PATH /usr/local/opt/libpq/lib/pkgconfig + path_push_unique PKG_CONFIG_PATH /usr/local/opt/openssl@1.1/lib/pkgconfig ;; esac if test "$PKG_CONFIG" = "no" \ - || test x"$enable_core_pgsql_pkgconfig" = x"no" \ - || ! pkg-config libpq; then + || test x"$enable_core_pgsql_pkgconfig" = x"no"; then if test "$PG_CONFIG" != "no"; then AC_MSG_CHECKING([for PostgreSQL libraries via pg_config]) POSTGRESQL_CFLAGS="-I`$PG_CONFIG --includedir`"