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 1slWmD-008O25-9a for buildfarm-members@arkaria.postgresql.org; Tue, 03 Sep 2024 16:53:09 +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 1slWmC-00EGIc-FM for buildfarm-members@arkaria.postgresql.org; Tue, 03 Sep 2024 16:53:08 +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 1slWmC-00EGIJ-9d for buildfarm-members@lists.postgresql.org; Tue, 03 Sep 2024 16:53:08 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1slWmA-000USi-5r for buildfarm-members@lists.postgresql.org; Tue, 03 Sep 2024 16:53:07 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 483Gr0Bm1467906; Tue, 3 Sep 2024 12:53:00 -0400 From: Tom Lane To: Marcel Hofstetter cc: buildfarm-members@lists.postgresql.org Subject: Re: select openssl version In-reply-to: <5d9ff677-0ab2-4af3-80ce-ff1bbf899cc4@jomasoft.ch> References: <5d9ff677-0ab2-4af3-80ce-ff1bbf899cc4@jomasoft.ch> Comments: In-reply-to Marcel Hofstetter message dated "Tue, 03 Sep 2024 18:41:30 +0200" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1467904.1725382380.1@sss.pgh.pa.us> Date: Tue, 03 Sep 2024 12:53:00 -0400 Message-ID: <1467905.1725382380@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Marcel Hofstetter writes: > margay fails with > "configure: error: OpenSSL version >= 1.1.0 is required for SSL support" > On the box is a version 1.1.1 installed > -bash-5.1$ /usr/openssl/1.1/bin/openssl version > OpenSSL 1.1.1l 24 Aug 2021 OK ... > I tried using > --with-openssl --with-ssl=/usr/openssl/1.1 > but it still fails. Yeah, --with-ssl is not meant to provide a pathname. You need to use --with-includes/--with-libs. As an example, my animal longfin selects a non-default openssl installation with --with-includes=/usr/local/ssl/include --with-libs=/usr/local/ssl/lib regards, tom lane