diff options
| author | Karl Heuer | 1995-06-09 01:05:48 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-09 01:05:48 +0000 |
| commit | a1e7cebf9ae882dbd6a6124ec93b24c975a33856 (patch) | |
| tree | d5895743308ebb0db45651877e39af7ae08ca245 /src | |
| parent | 4b7271c1a112a5956ddfd0240b27ccaacae5941a (diff) | |
| download | emacs-a1e7cebf9ae882dbd6a6124ec93b24c975a33856.tar.gz emacs-a1e7cebf9ae882dbd6a6124ec93b24c975a33856.zip | |
(LIBS_MACHINE): Define to -ldnet or -ldnet_stub.
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 | ||