From owner-freebsd-ports Sat Sep 25 15: 8:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 2A7C814E2B for ; Sat, 25 Sep 1999 15:08:40 -0700 (PDT) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id AAA11574; Sun, 26 Sep 1999 00:00:51 +0200 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id XAA60134; Sat, 25 Sep 1999 23:56:24 +0200 (MET DST) Date: Sat, 25 Sep 1999 23:56:24 +0200 (MET DST) From: Juergen Lock Message-Id: <199909252156.XAA60134@saturn.kn-bremen.de> To: mark@dogma.freebsd-uk.eu.org Subject: Re: ``make depend'' fails on latest wine(1) source X-Newsgroups: local.list.freebsd.ports In-Reply-To: <19990925195136.A394@marder-1> Organization: home Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <19990925195136.A394@marder-1> you write: >I'm attempting to build wine(1) from the latest (990923) sources. >I've sorted the patches but ``make depend'' throws up this error: > >marder-1# make depend >cd ../tools; make 'CC=cc' 'CFLAGS=-O -pipe -Wall' 'OPTIONS=-D_REENTRANT' makedep >make: don't know how to make makedep.o. Stop >*** Error code 2 > >Stop. > >Examining the output of ``make -dA depend'' shows this to be the >problem: > > >SuffFindDeps (makedep) > No known suffix on makedep. Using .NULL suffix >not adding suffix rules There's the problem: for some reason they added a line .SUFFIXES: to their Makefiles (actually Make.rules.in, from where it ends up getting copied into every Makefile). Now you can either add USE_GMAKE= yes in the port Makefile, as thats the make they (linux) appear to be using (which seems to interpret this empty .SUFFIXES: as `reset to default suffixes' not `forget about all suffixes' as ours does) or you can simply disable the line. Or you can just apply the port update i submitted today and build from that, it includes a bunch of other fixes you'd also like to have. Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message