Date: Sun, 2 Jul 2006 04:45:29 GMT From: John Birrell <jb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 100424 for review Message-ID: <200607020445.k624jTRD066135@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=100424 Change 100424 by jb@jb_freebsd2 on 2006/07/02 04:44:30 Define as values rather than just defining. (#if vs #ifdef) Affected files ... .. //depot/projects/dtrace/src/gnu/lib/libdwarf/config.h#3 edit Differences ... ==== //depot/projects/dtrace/src/gnu/lib/libdwarf/config.h#3 (text+ko) ==== @@ -42,8 +42,11 @@ /* Define to 1 if the elf64_getehdr function is in libelf.a */ /* #undef HAVE_ELF64_GETEHDR */ +#if defined(__sparc64__) +#define HAVE_ELF64_GETSHDR 1 +#define HAVE_ELF64_GETEHDR 1 +#endif - /* see if __uint32_t is predefined in the compiler */ /* #undef HAVE___UINT32_T */ @@ -138,3 +141,6 @@ /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ /* #undef WORDS_BIGENDIAN */ +#if defined(__sparc64__) +#define WORDS_BIGENDIAN +#endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607020445.k624jTRD066135>