Subject: Re: -current build failure
To: None <rmk@rmkhome.com>
From: Patrick Welche <prlw1@newn.cam.ac.uk>
List: current-users
Date: 01/15/2001 21:23:23
On Mon, Jan 15, 2001 at 01:10:06PM -0700, Rick Kelly wrote:
... 
> I have grabbed the sources twice this mornign from anoncvs.
> 
> I still can't get supscan.c to compile
> 
> cc -O2  -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror   -UCMUCS -UCMU -UMACH -DVAR_TMP -DHAS_DAEMON -DHAS_POSIX_DIR  -DLIBWRAP -DHAS_FPARSELN -I/usr/src/usr.sbin/sup/supscan/../source -I/usr/src/usr.sbin/sup/supscan/../lib -I/usr/src/usr.sbin/sup/supscan/../sys -DEE_XXX  -o supscan /usr/src/usr.sbin/sup/supscan/../source/supscan.c 

That is strange as it is compiling supscan.c -> supscan. For me, a build
uses supscan.c AND scan.c ie., cc -c supscan.c && cc -c scan.c && cc -o supscan
supscan.o scan.o -lsup

Beginning of my version of the Makefile is:

#       $NetBSD: Makefile,v 1.3 2001/01/14 10:34:57 christos Exp $

PROG=   supscan
SRCS=   supscan.c scan.c


Cheers,

Patrick