]> git.eshelyaron.com Git - emacs.git/commitdiff
(LIBS_MACHINE): Define to -ldnet or -ldnet_stub.
authorKarl Heuer <kwzh@gnu.org>
Fri, 9 Jun 1995 01:05:48 +0000 (01:05 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 9 Jun 1995 01:05:48 +0000 (01:05 +0000)
src/m/alpha.h

index 2f4d5101c39c77ae15015463ef0f59b0db7f95a6..0b4db8bb6fc57114c896b633e4c55e9f5e2758e6 100644 (file)
@@ -162,6 +162,13 @@ NOTE-END
 
 #define ORDINARY_LINK
 
+/* Some systems seem to have this, others don't.  */
+#ifdef HAVE_LIBDNET
+#define LIBS_MACHINE -ldnet
+#else
+#define LIBS_MACHINE -ldnet_stub
+#endif
+
 #ifndef __GNUC__
 /* This apparently is for the system ld as opposed to Gnu ld.  */
 #ifdef OSF1
@@ -193,8 +200,8 @@ NOTE-END
 
 /* Define XINT and XUINT so that they can take arguments of type int */
 
-#define XINT(a)         (((long)(a) << LONGBITS-VALBITS) >> LONGBITS-VALBITS)
-#define XUINT(a)        ((long)(a) & VALMASK)
+#define XINT(a)  (((long) (a) << (LONGBITS - VALBITS)) >> (LONGBITS - VALBITS))
+#define XUINT(a) ((long) (a) & VALMASK)
 
 /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */