Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 Aug 1998 12:20:59 -0700
From:      John Polstra <jdp@polstra.com>
To:        ccsanady@friley-185-114.res.iastate.edu, current@FreeBSD.ORG
Subject:   Re: elf and kerberos.. 
Message-ID:  <199808311921.MAA05953@austin.polstra.com>
In-Reply-To: Your message of "Mon, 31 Aug 1998 11:52:25 PDT."

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199808311921.MAA05953>