From eca7742c3c8f799f6ed1e5450df56786cf99cf66 Mon Sep 17 00:00:00 2001 From: John Polstra Date: Sun, 1 Nov 1998 02:37:40 +0000 Subject: [PATCH] Link objformat statically by default. This makes it possible to build 2.2-stable worlds on 3.0-current systems again. objformat calls getobjformat(), which doesn't exist in 2.2's libc. Technically there should have been a version number bump when it was added in -current. But it's used in so few places that it hardly seems worth that. Besides, the objformat program is very heavily used during a make world; it won't hurt to have it load a little faster. --- usr.bin/objformat/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/objformat/Makefile b/usr.bin/objformat/Makefile index 93c4285a182..a56fdd4f8b8 100644 --- a/usr.bin/objformat/Makefile +++ b/usr.bin/objformat/Makefile @@ -2,6 +2,7 @@ PROG= objformat CFLAGS+= -Wall +NOSHARED?= YES LINKS+= ${BINDIR}/objformat ${BINDIR}/addr2line LINKS+= ${BINDIR}/objformat ${BINDIR}/ar