Message-ID: From: "shr-project (@shr-project)" To: "postgresql-interfaces/psqlodbc" Date: Tue, 22 Apr 2025 17:51:33 +0000 Subject: [postgresql-interfaces/psqlodbc] PR #112: configure: make sure to call AC_CHECK_HEADER_STDBOOL List-Id: X-GitHub-Author-Id: 1234642 X-GitHub-Author-Login: shr-project X-GitHub-Issue: 112 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/pull/112 Content-Type: text/plain; charset=utf-8 before using ac_cv_sizeof_bool It was called after this conditional, so PG_USE_STDBOOL wasn't set even when it should be as shown in at the end of config.log: ac_cv_header_stdbool_h=yes ac_cv_sizeof_bool=1 ac_cv_type__Bool=yes #define SIZEOF_BOOL 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 * fixes: https://github.com/postgresql-interfaces/psqlodbc/issues/110 https://github.com/postgresql-interfaces/psqlodbc/issues/94