summaryrefslogtreecommitdiff
path: root/plan9
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-05-19 07:32:56 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-05-20 07:53:46 +0000
commit0dbb1585a715e56312e579a5f0e7f82241b38352 (patch)
tree7d159917164aa7ac921935b3fbff5b5d86aec0c7 /plan9
parent78b9063ba31cc2a48b78683b758601c04e4eb340 (diff)
downloadperl-0dbb1585a715e56312e579a5f0e7f82241b38352.tar.gz
Attribute configuration
Message-ID: <20050519173256.GA29039@petdance.com> p4raw-id: //depot/perl@24508
Diffstat (limited to 'plan9')
-rw-r--r--plan9/config_sh.sample8
-rw-r--r--plan9/genconfig.pl8
2 files changed, 14 insertions, 2 deletions
diff --git a/plan9/config_sh.sample b/plan9/config_sh.sample
index bf78b38bf3..9ac6eb672f 100644
--- a/plan9/config_sh.sample
+++ b/plan9/config_sh.sample
@@ -111,7 +111,13 @@ d_archlib='define'
d_asctime_r='undef'
d_atolf='undef'
d_atoll='define'
-d_attribut='undef'
+d_attribute_format='undef'
+d_attribute_malloc='undef'
+d_attribute_nonnull='undef'
+d_attribute_noreturn='undef'
+d_attribute_pure='undef'
+d_attribute_unused='undef'
+d_attribute_warn_unused_result='undef'
d_bcmp='define'
d_bcopy='define'
d_bsd='undef'
diff --git a/plan9/genconfig.pl b/plan9/genconfig.pl
index d934659ec4..30f4af74a1 100644
--- a/plan9/genconfig.pl
+++ b/plan9/genconfig.pl
@@ -118,7 +118,13 @@ EndOfIntro
# Plan 9 compiler stuff
print OUT "cc='pcc'\n";
-print OUT "d_attribut='undef'\n";
+print OUT "d_attribute_format='undef'\n";
+print OUT "d_attribute_malloc='undef'\n";
+print OUT "d_attribute_nonnull='undef'\n";
+print OUT "d_attribute_noreturn='undef'\n";
+print OUT "d_attribute_pure='undef'\n";
+print OUT "d_attribute_unused='undef'\n";
+print OUT "d_attribute_warn_unused_result='undef'\n";
print OUT "d_socket='define'\n";
print OUT "d_sockpair='define'\n";
print OUT "d_sigsetjmp='define'\n";