Change 30019 by [EMAIL PROTECTED] on 2007/01/26 18:28:42
cflags.SH was broken: it was compiling a C file for testing available
command-line options, but this C file was including perl.h, which in
turn includes config.h, which might not be present at that time. So
force the generation of config.h.
Affected files ...
... //depot/perl/cflags.SH#43 edit
Differences ...
==== //depot/perl/cflags.SH#43 (xtext) ====
Index: perl/cflags.SH
--- perl/cflags.SH#42~30016~ 2007-01-26 08:39:40.000000000 -0800
+++ perl/cflags.SH 2007-01-26 10:28:42.000000000 -0800
@@ -17,6 +17,10 @@
*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
esac
+if ! test -f config.h; then
+ . ./config_h.SH
+fi
+
warn=''
# Add -Wall for the core modules iff gcc and not already -Wall
End of Patch.