public
Description: pkgsrc repository for Joyent.com accelerators
Clone URL: git://github.com/joevandyk/pkgsrc.git
pkgsrc / mk / endian.mk
100644 55 lines (50 sloc) 1.57 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# $NetBSD: endian.mk,v 1.5 2007/03/08 23:11:20 rillig Exp $
#
# Determine the endianness of the platform by checking header files.
#
# This file is used as follows:
#
# .include "../../mk/endian.mk"
#
# .if ${MACHINE_ENDIAN} == "big"
# # ...big endian stuff...
# .elif ${MACHINE_ENDIAN} == "little"
# # ...little endian stuff...
# .else
# BROKEN=  "Unknown endianness"
# .endif
 
.include "../../mk/bsd.prefs.mk"
 
.if !defined(MACHINE_ENDIAN)
. if exists(/usr/include/endian.h)
_ENDIAN_H=  /usr/include/endian.h    # Linux
. elif exists(/usr/include/sys/endian.h)
_ENDIAN_H=  /usr/include/sys/endian.h  # NetBSD>=1.5
. elif exists(/usr/include/machine/endian.h)
_ENDIAN_H=  /usr/include/machine/endian.h  # NetBSD<1.5
. elif exists(/usr/include/sys/byteorder.h)
_ENDIAN_H=  /usr/include/sys/byteorder.h  # Solaris
. else
_ENDIAN_H=  /dev/null
. endif
 
MACHINE_ENDIAN!=              \
  { ${ECHO} "\#if defined(__sgi)";        \
   ${ECHO} "\# include <standards.h>";        \
   ${ECHO} "\#endif";            \
   ${ECHO} "\#include <${_ENDIAN_H}>";        \
   ${ECHO} "\#ifndef BYTE_ORDER";        \
   ${ECHO} "\#ifdef _BIG_ENDIAN";        \
   ${ECHO} "\#define BYTE_ORDER 4321";        \
   ${ECHO} "\#else";            \
   ${ECHO} "\#define BYTE_ORDER 1234";        \
   ${ECHO} "\#endif";            \
   ${ECHO} "\#endif";            \
   ${ECHO} "BYTE_ORDER"; } | ${CC} -E - |      \
  { while read line; do            \
    case $$line in            \
    1234)  ${ECHO} "little"; exit 0 ;;      \
    4321)  ${ECHO} "big"; exit 0 ;;      \
    esac;              \
   done;                \
   ${ECHO} "unknown"; }
 
MAKEFLAGS+=  MACHINE_ENDIAN=${MACHINE_ENDIAN:Q}
.endif