From owner-freebsd-questions Sat Sep 22 9:24:40 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 6B43637B40D for ; Sat, 22 Sep 2001 09:24:36 -0700 (PDT) Received: (from dan@localhost) by dan.emsphone.com (8.11.4/8.11.4) id f8MGOUv05462; Sat, 22 Sep 2001 11:24:30 -0500 (CDT) (envelope-from dan) Date: Sat, 22 Sep 2001 11:24:14 -0500 From: Dan Nelson To: Gabriel Ambuehl Cc: questions@FreeBSD.ORG Subject: Re: Getting autoconf to generate configure scripts compatible with BSD make... Message-ID: <20010922112414.A10147@dan.emsphone.com> References: <186166877106.20010922173146@buz.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <186166877106.20010922173146@buz.ch> User-Agent: Mutt/1.3.22.1i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Sep 22), Gabriel Ambuehl said: > If I comment that one out, BSD make will work. Is there any way to > get autoconf or configure to write BSD make compatible Makefiles in > first place or am I stuck with either editing the Makefiles myself or > using gmake (which isn't so much of a problem, I'd simply would find > it more convenient to be able to build it without gmake as that would > result in yet another dependency of which the code already got > plenty...)? The port of automake is still at 1.4, which can only produce GNUmake dependency rules (1.5 uses a separate "depcomp" script to generate portable dependencies). The quick fix is to add "no-dependencies" to your AUTOMAKE_OPTIONS line in your Makefile.in: AUTOMAKE_OPTIONS = 1.4 foreign no-dependencies -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message