Formerly arscan.c.~32~
authorRoland McGrath <roland@redhat.com>
Thu, 16 Dec 1993 23:24:39 +0000 (23:24 +0000)
committerRoland McGrath <roland@redhat.com>
Thu, 16 Dec 1993 23:24:39 +0000 (23:24 +0000)
arscan.c

index 7352785..f3bb3ce 100644 (file)
--- a/arscan.c
+++ b/arscan.c
 
 #ifndef        NO_ARCHIVES
 \f
+/* SCO Unix's compiler defines both of these.  */
+#ifdef M_UNIX
+#undef M_XENIX
+#endif
+
 /* On the sun386i and in System V rel 3, ar.h defines two different archive
    formats depending upon whether you have defined PORTAR (normal) or PORT5AR
    (System V Release 1).  There is no default, one or the other must be defined
 
 #if (!defined (PORTAR) || PORTAR == 0) && (!defined (PORT5AR) || PORT5AR == 0)
 #undef PORTAR
+#ifdef M_XENIX
+/* According to Jim Sievert <jas1@rsvl.unisys.com>, for SCO XENIX defining
+   PORTAR to 1 gets the wrong archive format, and defining it to 0 gets the
+   right one.  */
+#define PORTAR 0
+#else
 #define PORTAR 1
 #endif
+#endif
 
 #include <ar.h>
 
 #ifndef        AR_HDR_SIZE
 #define        AR_HDR_SIZE     (sizeof (struct ar_hdr))
 #endif
-
-/* SCO Unix's compiler defines both of these.  */
-#ifdef M_UNIX
-#undef M_XENIX
-#endif
 \f
 /* Takes three arguments ARCHIVE, FUNCTION and ARG.