From e3e6ee69641b8ea1e24f05ee64393a52e495bf86 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Thu, 22 Sep 2022 20:36:28 -0700 Subject: [PATCH] ci: freebsd: Set extra_{lib,include}_dirs to /usr/local/... Ommitted in e6b6ea025cc, but necessary for libintl to be found. All other dependencies can be found via pkg-config (which searches in /usr/local/...) and thus worked even without adding the directories. --- .cirrus.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cirrus.yml b/.cirrus.yml index f7868c358e..0e3b2d4268 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -109,6 +109,7 @@ task: --buildtype=debug \ -Dcassert=true -Dssl=openssl -Duuid=bsd -Dtcl_version=tcl86 -Ddtrace=auto \ -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \ + -Dextra_lib_dirs=/usr/local/lib -Dextra_include_dirs=/usr/local/include/ \ build EOF build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'