From 940bf2436d5c31c97d006a58d1f259dc4bc53ec2 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Wed, 9 Feb 2011 04:46:46 +0000 Subject: [PATCH] Assume ELF on FreeBSD if objformat doesn't exist If /usr/bin/objformat doesn't exist on a FreeBSD system, it could indicate a pre-3.0 a.out version or a post-7.0 ELF version. Since FreeBSD 3.0 is now twelve years old, it's safer to assume ELF than a.out. From aberry@likewise.com. ticket: 6858 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24619 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/shlib.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/shlib.conf b/src/config/shlib.conf index f176921f4..dd21126e1 100644 --- a/src/config/shlib.conf +++ b/src/config/shlib.conf @@ -309,7 +309,7 @@ mips-*-netbsd*) if test -x /usr/bin/objformat ; then objformat=`/usr/bin/objformat` else - objformat="aout" + objformat="elf" fi PICFLAGS=-fpic if test "x$objformat" = "xelf" ; then -- 2.26.2