diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/alpha.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/m/alpha.h b/src/m/alpha.h index 2f4d5101c39..0b4db8bb6fc 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h | |||
| @@ -162,6 +162,13 @@ NOTE-END | |||
| 162 | 162 | ||
| 163 | #define ORDINARY_LINK | 163 | #define ORDINARY_LINK |
| 164 | 164 | ||
| 165 | /* Some systems seem to have this, others don't. */ | ||
| 166 | #ifdef HAVE_LIBDNET | ||
| 167 | #define LIBS_MACHINE -ldnet | ||
| 168 | #else | ||
| 169 | #define LIBS_MACHINE -ldnet_stub | ||
| 170 | #endif | ||
| 171 | |||
| 165 | #ifndef __GNUC__ | 172 | #ifndef __GNUC__ |
| 166 | /* This apparently is for the system ld as opposed to Gnu ld. */ | 173 | /* This apparently is for the system ld as opposed to Gnu ld. */ |
| 167 | #ifdef OSF1 | 174 | #ifdef OSF1 |
| @@ -193,8 +200,8 @@ NOTE-END | |||
| 193 | 200 | ||
| 194 | /* Define XINT and XUINT so that they can take arguments of type int */ | 201 | /* Define XINT and XUINT so that they can take arguments of type int */ |
| 195 | 202 | ||
| 196 | #define XINT(a) (((long)(a) << LONGBITS-VALBITS) >> LONGBITS-VALBITS) | 203 | #define XINT(a) (((long) (a) << (LONGBITS - VALBITS)) >> (LONGBITS - VALBITS)) |
| 197 | #define XUINT(a) ((long)(a) & VALMASK) | 204 | #define XUINT(a) ((long) (a) & VALMASK) |
| 198 | 205 | ||
| 199 | /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */ | 206 | /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */ |
| 200 | 207 | ||