From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from minnie.tuhs.org (minnie.tuhs.org [50.116.15.146]) by inbox.vuxu.org (Postfix) with ESMTP id 1B7E92027A for ; Thu, 20 Jun 2024 10:03:54 +0200 (CEST) Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id 5A40843A10; Thu, 20 Jun 2024 18:03:48 +1000 (AEST) Received: from minun.buric.co (minun.buric.co [51.15.8.196]) by minnie.tuhs.org (Postfix) with ESMTP id C0A97436D0 for ; Thu, 20 Jun 2024 18:03:38 +1000 (AEST) Received: by minun.buric.co (Postfix, from userid 1000) id 887E535C0F0C; Thu, 20 Jun 2024 04:05:13 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by minun.buric.co (Postfix) with ESMTP id 6381435C07A2 for ; Thu, 20 Jun 2024 04:05:13 -0400 (EDT) Date: Thu, 20 Jun 2024 04:05:13 -0400 (EDT) From: Steve Nickolas X-X-Sender: mary@sd-119843.dedibox.fr To: The Unix Heritage Society mailing list In-Reply-To: Message-ID: References: <87iky84c23.fsf@gmail.com> <20240617012531.GE12821@mcvoy.com> <0e6792ed-65b0-e2e1-8159-6426a7f15a8d@riddermarkfarm.ca> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Message-ID-Hash: VTZIDXV6CNJSOO6WYGC7L3A4L27WRF3M X-Message-ID-Hash: VTZIDXV6CNJSOO6WYGC7L3A4L27WRF3M X-MailFrom: usotsuki@buric.co X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [TUHS] Re: Version 256 of systemd boasts '42% less Unix philosophy' The Register List-Id: The Unix Heritage Society mailing list Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: So I have one program that relies on stuff that might vary from system to system. I just make use of functionality common to gmake and bmake, and expect the system to be in a reasonable state that the various detection scripts provided by the libraries work, and have "#ifdef" take care of the rest, so for most systems building the program is just "make". Works on Linux, OSX and a few other unices. I have a separate build script I use to build the Windows version. -uso.