summaryrefslogtreecommitdiff
path: root/bootstrap/bmake
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-11-20 04:31:35 +0000
committergrant <grant@pkgsrc.org>2004-11-20 04:31:35 +0000
commit77e4975de46fe771ca89c38d5843ee5774836416 (patch)
tree5c5b854163339384b8d69f77dfff9f21b7427f10 /bootstrap/bmake
parent63e5f0bf8b5dc0cfb09d068b8bf945f0bf1abbb6 (diff)
downloadpkgsrc-77e4975de46fe771ca89c38d5843ee5774836416.tar.gz
add support for Tru64, patches provided by Tobias Nygren
<tnn at netilium dot org> with minor changes by me. tested on Tru64 5.0 and 5.1B.
Diffstat (limited to 'bootstrap/bmake')
-rw-r--r--bootstrap/bmake/ranlib.h4
-rw-r--r--bootstrap/bmake/trace.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap/bmake/ranlib.h b/bootstrap/bmake/ranlib.h
index 76d201eb6e8..f3ca51f42e7 100644
--- a/bootstrap/bmake/ranlib.h
+++ b/bootstrap/bmake/ranlib.h
@@ -1,5 +1,5 @@
/* @(#)ranlib.h 1.6 88/08/19 SMI; from UCB 4.1 83/05/03 */
-/* $Id: ranlib.h,v 1.1.1.1 2004/03/11 13:04:12 grant Exp $ */
+/* $Id: ranlib.h,v 1.2 2004/11/20 04:31:35 grant Exp $ */
/*
* Structure of the __.SYMDEF table of contents for an archive.
@@ -10,7 +10,7 @@
* The ran_strx fields index the string table whose first byte is numbered 0.
*/
-#ifndef IRIX
+#if !defined(IRIX) && !defined(__digital__)
#ifndef _ranlib_h
#define _ranlib_h
diff --git a/bootstrap/bmake/trace.h b/bootstrap/bmake/trace.h
index 96b7d39d324..8ca64f8bcda 100644
--- a/bootstrap/bmake/trace.h
+++ b/bootstrap/bmake/trace.h
@@ -1,4 +1,4 @@
-/* $NetBSD: trace.h,v 1.1.1.1 2004/03/11 13:04:14 grant Exp $ */
+/* $NetBSD: trace.h,v 1.2 2004/11/20 04:31:35 grant Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -47,7 +47,7 @@ typedef enum {
MAKEERROR,
JOBSTART,
JOBEND,
- MAKEINTR,
+ MAKEINTR
} TrEvent;
void Trace_Init(const char *);