| 65 |
|
dnl AIX fun |
| 66 |
|
AC_C_BIGENDIAN |
| 67 |
|
|
| 68 |
– |
AC_CHECK_SIZEOF(int) |
| 69 |
– |
AC_CHECK_SIZEOF(short) |
| 70 |
– |
AC_CHECK_SIZEOF(long) |
| 71 |
– |
|
| 72 |
– |
|
| 73 |
– |
AH_BOTTOM([ |
| 74 |
– |
#if SIZEOF_INT==4 |
| 75 |
– |
typedef signed int int32; |
| 76 |
– |
typedef unsigned int uint32; |
| 77 |
– |
#elif SIZEOF_LONG==4 |
| 78 |
– |
typedef signed long int32; |
| 79 |
– |
typedef unsigned long uint32; |
| 80 |
– |
#else |
| 81 |
– |
# error "No 32-bit integer type!" |
| 82 |
– |
#endif |
| 83 |
– |
|
| 84 |
– |
#if SIZEOF_SHORT!=2 |
| 85 |
– |
# error "Your short int data type is not 2 bytes: hopm (firedns) is not going to work for you." |
| 86 |
– |
#endif |
| 87 |
– |
]) |
| 68 |
|
|
| 69 |
|
AC_CONFIG_SUBDIRS(src/libopm) |
| 70 |
|
|