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.96) (envelope-from ) id 1vi8yL-00GIQ4-0i for pgsql-admin@arkaria.postgresql.org; Tue, 20 Jan 2026 10:28:29 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vi8yK-000ItT-0c for pgsql-admin@arkaria.postgresql.org; Tue, 20 Jan 2026 10:28:28 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vi8yJ-000ItL-2R for pgsql-admin@lists.postgresql.org; Tue, 20 Jan 2026 10:28:28 +0000 Received: from mout-u-107.mailbox.org ([2001:67c:2050:101:465::107]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vi8yH-001OzI-18 for pgsql-admin@lists.postgresql.org; Tue, 20 Jan 2026 10:28:27 +0000 Received: from smtp102.mailbox.org (smtp102.mailbox.org [IPv6:2001:67c:2050:b231:465::102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-107.mailbox.org (Postfix) with ESMTPS id 4dwNnq2QB2z9sSf; Tue, 20 Jan 2026 11:28:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ewie.name; s=MBO0001; t=1768904895; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ZimoOuAmGPlyQuVr6tZdpJpHUqizjK6qa6YHR+OqOLI=; b=DE0ORjw+6mB6JVLfkBBOMFptg3kIbsVHOB1Y6k1vqPJY12wneqjeY2fKtT+ObQppCWZyUj BV2ZHDxRbRVavgblHyaTXmoPPfP5oA6LCjivRUeEXP+mJgSJz/jsq4wBggg+Za0lZKWkes YdYZ01U9Y2rb2yo2fOnCy8dW0jWBSXZFXyY4zf7e50S8GFQ8I97sfu1Uh9ZXbCGC7kUZZ3 Eze9rFQN7yrPrthBm3sIyZArmOZyQIz2/nyH7DniyYKQ45CZfTsV4KVLfDD+g6AWyIFGBA NcTiXyqC4YIHm03HygE2OcLzZrVfTFScJO8hL1QtO8QKFS8rGeXv46W499oZlQ== Authentication-Results: outgoing_mbo_mout; dkim=none; spf=pass (outgoing_mbo_mout: domain of ewie@ewie.name designates 2001:67c:2050:b231:465::102 as permitted sender) smtp.mailfrom=ewie@ewie.name Date: Tue, 20 Jan 2026 11:28:12 +0100 From: Erik Wienhold To: "alexander al (leiden)" Cc: Pgsql-admin Subject: Re: Building and installing pg_proctab Message-ID: References: <74911db1cbeed5636c8f36c565c5d4c9c30342d0.camel@scred.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <74911db1cbeed5636c8f36c565c5d4c9c30342d0.camel@scred.nl> X-Rspamd-Queue-Id: 4dwNnq2QB2z9sSf List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On 2026-01-20 11:01 +0100, alexander al (leiden) wrote: > picture: > i've got ubuntu 24.04 with postgresql 18 on it. Now I want to install > pg_proctab on it for monitoring reasons. > > i downloaded it from > > https://gitlab.com/pg_proctab/pg_proctab/ > > and i tried to make it. > > the docs says > > make > make install > etc. > > but when i do make in the root of pg_proctab i get the error > > "Makefile:29: /contrib/contrib-global.mk: No such file or directory > make: *** No rule to make target '/contrib/contrib-global.mk'. Stop." Judging by the Makefile logic, I think you need to set USE_PGXS=1. Without that, the Makefile expects the code to be under Postgres' contrib tree. -- Erik Wienhold