From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_DBL_BLOCKED_OPENDNS, URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=new2025; t=1753999552; bh=iPS7kjCm/7LyjeWn0q6L1oWDN6lAB8O0uF/M5GHb0Nk=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Content-Type: Content-Transfer-Encoding:Message-ID:Date:From:Reply-To:Subject:To: Cc:In-Reply-To:References:Resent-Date:Resent-From:Resent-To: Resent-Cc:User-Agent:Content-Type:Content-Transfer-Encoding; b=UBNgVx+xa0zj1Gml1QNk/qJyJkntXvlkWh9jXDIMuc9ucD7TE6LWVYlZNDeLzEAEA z3d+XEEJ14ni+FUwe0WfVbLkwv06PqpPrfA18Nex3oJ5j/4d+j237lS6LSfVP46H+G CBIqBv3nyBuw01oJhV0rNp1l3kZYlJA3+VQ+8tmbxqq82kgnFfbCglpZYupJMp7zkD /r3UozXPWydnsd7iOojxPbjhnbvbZAjcb9mLrrelunGrY7yDUIH/fIcwv0dd1tYbEC KUz4c06vT3APr84p2PXbGDPUCjN4W+E7PtmzmT5hYCPA208ATpLE/h5DnV1fEHYKSc f4rM/bhTOcGJg== Received: from localhost.localdomain (unknown [68.183.184.174]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id ECB103126ED4; Thu, 31 Jul 2025 22:05:50 +0000 (UTC) From: Alviro Iskandar Setiawan To: Ammar Faizi Cc: Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH gwproxy v1 0/2] Fixes for older glibc version Date: Fri, 1 Aug 2025 05:05:44 +0700 Message-Id: <20250731220546.303497-1-alviro.iskandar@gnuweeb.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: Good morning! Two patches to fix issues with older glibc version, specifically glibc version 2.28 which is the default on AlmaLinux-8. GNU CC version 8.5.0 20210514 (Red Hat 8.5.0-26) with glibc version 2.28. Signed-off-by: Alviro Iskandar Setiawan --- Alviro Iskandar Setiawan (2): log: Fix missing `gettid()` syscall on older glibc version configure: Append `-lanl` lib to fix missing `getaddrinfo_a()` Makefile | 2 +- configure | 6 +++--- src/gwproxy/log.c | 8 +++++++- 3 files changed, 11 insertions(+), 5 deletions(-) base-commit: f897120d186dcf609d025c48be0be9f044b2b46b -- Alviro Iskandar Setiawan