summaryrefslogtreecommitdiff
path: root/usr.bin/make/arch.c
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>1997-10-13 14:47:15 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>1997-10-13 14:47:15 +0000
commit95ff6bd09bbef9d1dc5aa956b9b680cebb45acd5 (patch)
tree165c7536acf84bb2fe2c3ab924a4585d53dc127b /usr.bin/make/arch.c
parente570ed32b281f1a4980db038ff578e056def3230 (diff)
powerpc ELF
Diffstat (limited to 'usr.bin/make/arch.c')
-rw-r--r--usr.bin/make/arch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c
index 58f01e50107..4a27c351ffb 100644
--- a/usr.bin/make/arch.c
+++ b/usr.bin/make/arch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arch.c,v 1.10 1997/06/17 20:34:43 kstailey Exp $ */
+/* $OpenBSD: arch.c,v 1.11 1997/10/13 14:47:14 pefo Exp $ */
/* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */
/*
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94";
#else
-static char rcsid[] = "$OpenBSD: arch.c,v 1.10 1997/06/17 20:34:43 kstailey Exp $";
+static char rcsid[] = "$OpenBSD: arch.c,v 1.11 1997/10/13 14:47:14 pefo Exp $";
#endif
#endif /* not lint */
@@ -125,7 +125,8 @@ static void ArchFree __P((ClientData));
static struct ar_hdr *ArchStatMember __P((char *, char *, Boolean));
static FILE *ArchFindMember __P((char *, char *, struct ar_hdr *, char *));
#if defined(__svr4__) || defined(__SVR4) || \
- (defined(__OpenBSD__) && defined(__mips))
+ (defined(__OpenBSD__) && defined(__mips)) || \
+ (defined(__OpenBSD__) && defined(__powerpc))
#define SVR4ARCHIVES
static int ArchSVR4Entry __P((Arch *, char *, size_t, FILE *));
#endif