From: Stian Seeberg Date: Mon, 30 Jul 2001 12:28:07 +0000 (+0200) Subject: [ID 20010730.003] IRIX 6.5 already has struct sv in (defined in perl.h) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d2b3f3651ca833d07ae0a5237edc2bb6dec68ff7;p=p5sagit%2Fp5-mst-13.2.git [ID 20010730.003] IRIX 6.5 already has struct sv in (defined in perl.h) Message-Id: <68236D3FC2D92347B466639324391D1A0432AB@PONDUS.nimsoft.no> p4raw-id: //depot/perl@11542 --- diff --git a/perl.h b/perl.h index c68faec..938e730 100644 --- a/perl.h +++ b/perl.h @@ -1548,8 +1548,11 @@ typedef struct pvop PVOP; typedef struct loop LOOP; typedef struct interpreter PerlInterpreter; -#ifdef UTS -# define STRUCT_SV perl_sv /* Amdahl's has struct sv */ + +/* Amdahl's has struct sv */ +/* SGI's has struct sv */ +#if defined(UTS) || defined(__sgi) +# define STRUCT_SV perl_sv #else # define STRUCT_SV sv #endif