Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sRZqL-00Ge8u-HK for pgsql-general@arkaria.postgresql.org; Wed, 10 Jul 2024 16:06:57 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1sRZqK-006v8x-84 for pgsql-general@arkaria.postgresql.org; Wed, 10 Jul 2024 16:06:56 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sRZqJ-006v84-QE for pgsql-general@lists.postgresql.org; Wed, 10 Jul 2024 16:06:55 +0000 Received: from mail-yw1-x1135.google.com ([2607:f8b0:4864:20::1135]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1sRZqD-001PnY-Iz for pgsql-general@lists.postgresql.org; Wed, 10 Jul 2024 16:06:55 +0000 Received: by mail-yw1-x1135.google.com with SMTP id 00721157ae682-650cef35de3so59717147b3.1 for ; Wed, 10 Jul 2024 09:06:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1720627608; x=1721232408; darn=lists.postgresql.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=80YcO1Ofo9xJotUBe6jqUOYNcZi+d3LSLVTmLjDMye8=; b=fka+Gvyu/pnuRVGyoKcjl0pJbB28lKyiOjUGAptM7ZrNnBxWCjgFbXEvwPjgIiZEss UaIApyIa9ox/o+kBu9tOT22JGWoWf5zWotzATn6fRUam4KBzpk+oySy1y+G0SaYMmCX9 dIyxMJZ5oofJN2gblk0Vx1qojEPClnVXO+/q9gtDfr0PO3JWPetRvy0+bJ/YRaOzRf5Z 8eMmaB4dMiQUBatezFS8FlpQOSHeZ2s4/qrIIjKkwx9ZA6+VLAeLOVyioaxTowvWUjeT lESjjR0g8h5xqL618PHT6T2Glo+qvSbl+TPoWFkzGBcPvNPgFGja+5lXM+2XOKKj9bwQ aoyw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1720627608; x=1721232408; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=80YcO1Ofo9xJotUBe6jqUOYNcZi+d3LSLVTmLjDMye8=; b=BHHHZuz0Rm9Mx1dDvFRryRfkF2NwqtBQ5H41e++vkSY2oPVcPAogrC9O1HBs529OX+ FbSiHmVfG3bwk82jv9flvx3K7DpK84L8lWyiY7vSmGGN0OXMNLLJgCVtXzZs+BNuettS nJsjOx8ld+iL2zWH7Jt4I4G8iz7xUVx7WwoaBor0GL7Irl13hSu7OMcNdYOq8qcXGWW8 GKxOWW5o4c1UYyB/NshjFM1QuLV6PWYF170qpGpVq6pWAPWsen6jtGnlgbiIjkf+aQbu gPXwWimFKOYR9JlgcoCgjuL49ueIcYY/9jhi3fRF3/c7qvf1QJE98TI67rim15RV5zBF k8bg== X-Gm-Message-State: AOJu0YxSVwokksv8aj3rm3Z6x8MWQZ0kTXE1Ss1HjzaGRX5zE+8Tea/D ZzekQb/VdNU7m25VnlkG906/zFC9jYKwJh/KuTWDQDis6wMG1rXOWenWg+AD7ARVIThUaQyC4Cm 4QsKYgvoNJ/D5Nu8ZzJLJzLSXpHS1Vw== X-Google-Smtp-Source: AGHT+IHgF1z5Yzwo//681t7ETnuLoR9KduI2ne31Zu216StrFGXiGlmzK/AmTCD2vhsp5vJPp/v4nJeGpRP0sBvJQVM= X-Received: by 2002:a81:9105:0:b0:64b:4f90:ced1 with SMTP id 00721157ae682-658eec67fa8mr68349987b3.12.1720627607512; Wed, 10 Jul 2024 09:06:47 -0700 (PDT) MIME-Version: 1.0 From: Igor Korot Date: Wed, 10 Jul 2024 11:05:15 -0500 Message-ID: Subject: Detecting PostgreSQL client library To: "pgsql-generallists.postgresql.org" Content-Type: text/plain; charset="UTF-8" List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Hi, ALL, Is there an explicit autotools macro that can tell the presence of PostgreSQL client library? And that can be used with "configure" script. Or I should be using AC_CHECK_MODULE() one? Thank you.