summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-03-15 14:20:58 +0000
committergrant <grant@pkgsrc.org>2004-03-15 14:20:58 +0000
commit491f0bc197a6cecca86518d066ad7ba6f6859c05 (patch)
tree9a9da54c6c70590e4b9df832300808c7142d3519 /bootstrap
parentc672d347528989269a287b3661edb991d18ad7d1 (diff)
downloadpkgsrc-491f0bc197a6cecca86518d066ad7ba6f6859c05.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')
-rw-r--r--bootstrap/bmake/cond.c7
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"