diff options
author | grant <grant> | 2004-03-15 14:20:58 +0000 |
---|---|---|
committer | grant <grant> | 2004-03-15 14:20:58 +0000 |
commit | b8d01173b77d2401aa3b867db610e0a0bc9fc623 (patch) | |
tree | 9a9da54c6c70590e4b9df832300808c7142d3519 /bootstrap/bmake | |
parent | c47fc6911c7c3dad2aadddfecece6a10e2943adb (diff) | |
download | pkgsrc-b8d01173b77d2401aa3b867db610e0a0bc9fc623.tar.gz |
no need to include <math.h> (it was removed in bmake 3.1.18, too).
this removes a dependency on SUNWlibm on Solaris. noted by Marc Herbert
<Marc.Herbert@sun.com> way back in April 2003.
Diffstat (limited to 'bootstrap/bmake')
-rw-r--r-- | bootstrap/bmake/cond.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bootstrap/bmake/cond.c b/bootstrap/bmake/cond.c index 8fdb30ca07b..bb48b195dc0 100644 --- a/bootstrap/bmake/cond.c +++ b/bootstrap/bmake/cond.c @@ -1,4 +1,4 @@ -/* $NetBSD: cond.c,v 1.1.1.1 2004/03/11 13:04:01 grant Exp $ */ +/* $NetBSD: cond.c,v 1.2 2004/03/15 14:20:58 grant Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -39,14 +39,14 @@ */ #ifdef MAKE_BOOTSTRAP -static char rcsid[] = "$NetBSD: cond.c,v 1.1.1.1 2004/03/11 13:04:01 grant Exp $"; +static char rcsid[] = "$NetBSD: cond.c,v 1.2 2004/03/15 14:20:58 grant Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)cond.c 8.2 (Berkeley) 1/2/94"; #else -__RCSID("$NetBSD: cond.c,v 1.1.1.1 2004/03/11 13:04:01 grant Exp $"); +__RCSID("$NetBSD: cond.c,v 1.2 2004/03/15 14:20:58 grant Exp $"); #endif #endif /* not lint */ #endif @@ -61,7 +61,6 @@ __RCSID("$NetBSD: cond.c,v 1.1.1.1 2004/03/11 13:04:01 grant Exp $"); */ #include <ctype.h> -#include <math.h> #include "make.h" #include "hash.h" #include "dir.h" |