From owner-freebsd-current Mon Aug 31 12:22:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13294 for freebsd-current-outgoing; Mon, 31 Aug 1998 12:22:42 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13164 for ; Mon, 31 Aug 1998 12:22:07 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id MAA05953; Mon, 31 Aug 1998 12:21:00 -0700 (PDT) (envelope-from jdp) Message-Id: <199808311921.MAA05953@austin.polstra.com> To: ccsanady@friley-185-114.res.iastate.edu, current@FreeBSD.ORG Subject: Re: elf and kerberos.. In-reply-to: Your message of "Mon, 31 Aug 1998 11:52:25 PDT." Date: Mon, 31 Aug 1998 12:20:59 -0700 From: John Polstra Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wrote: > A quick fix would be: > > #ifdef __FreeBSD__ > #ifdef __ELF__ > asm(".globl _et_list"); /* FreeBSD bug workaround */ > #else > asm(".globl __et_list"); /* FreeBSD bug workaround */ > #endif > #endif Looking some more, that's probably not correct. I now think it should be: #if defined(__FreeBSD__) && !defined(__ELF__) asm(".globl __et_list"); /* FreeBSD a.out workaround */ #endif John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message