PERFORCE change 12328 for review

[email protected] (Chris Nandor) Wed, 3 Oct 2001 17:07:52 -0400
Newsgroups perl.perl5.changes.mac
Message-ID <p05100304b7e12e6a475a@[10.0.1.177]>
Change 12328 by pudge@pudge-mobile on 2001/10/03 19:11:15

	Allow overriding of defaults, for change #12327.

Affected files ...

... //depot/maint-5.6/macperl/perl.h#4 edit

Differences ...

==== //depot/maint-5.6/macperl/perl.h#4 (text) ====
Index: perl/perl.h
--- perl/perl.h.~1~	Wed Oct  3 13:15:06 2001
+++ perl/perl.h	Wed Oct  3 13:15:06 2001
@@ -1626,7 +1626,7 @@
 #   endif
 #endif
 
-#if defined(OS2)
+#if defined(OS2) || defined(MACOS_TRADITIONAL)
 #  include "iperlsys.h"
 #endif
 
@@ -1947,7 +1947,7 @@
 #define FILTER_DATA(idx)	   (AvARRAY(PL_rsfp_filters)[idx])
 #define FILTER_ISREADER(idx)	   (idx >= AvFILLp(PL_rsfp_filters))
 
-#if !defined(OS2)
+#if !defined(OS2) && !defined(MACOS_TRADITIONAL)
 #  include "iperlsys.h"
 #endif
 #include "regexp.h"
End of Patch.