# New Ticket Created by Lars Balker Rasmussen
# Please include the string: [perl #23029]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=23029 >
-Wpadded seems to be more trouble than it's worth at this stage, so I
suggest getting rid of it. It clashes with a FreeBSD header file, and
the amount of warnings on Solaris just explodes, hiding more
interesting stuff.
--
Lars Balker Rasmussen Consult::Perl
-- attachment 1 ------------------------------------------------------
url: http://rt.perl.org/rt2/attach/61205/45206/2d805d/padded.patch
Index: config/auto/gcc.pl
===================================================================
RCS file: /cvs/public/parrot/config/auto/gcc.pl,v
retrieving revision 1.6
diff -u -a -r1.6 gcc.pl
--- config/auto/gcc.pl 15 Jul 2003 18:08:34 -0000 1.6
+++ config/auto/gcc.pl 17 Jul 2003 20:37:13 -0000
@@ -74,7 +74,7 @@
2.7 => "",
2.8 => "-Wsign-compare",
2.95 => "",
- 3.0 => "-Wformat-nonliteral -Wformat-security -Wpacked -Wpadded -Wdisabled-optimization",
+ 3.0 => "-Wformat-nonliteral -Wformat-security -Wpacked -Wdisabled-optimization",
# -Wsequence-point is part of -Wall
# -Wfloat-equal may not be what we want
# We shouldn't be using __packed__, but I doubt -Wpacked will harm us