summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorH.Merijn Brand <perl5@tux.freedom.nl>2023-04-28 14:50:10 +0200
committerH.Merijn Brand <perl5@tux.freedom.nl>2023-04-28 15:16:32 +0200
commitcf6a78b99ae365b7c2f2d81e895b4e297dbb61eb (patch)
tree014d317931a4ebda085134a3b05754473735a513 /config_h.SH
parent934479e4e0e2b51b70fbc94d44ba3bbec4ca3d9f (diff)
downloadperl-cf6a78b99ae365b7c2f2d81e895b4e297dbb61eb.tar.gz
Whitespace consistency from Configure end
Diffstat (limited to 'config_h.SH')
-rwxr-xr-xconfig_h.SH59
1 files changed, 30 insertions, 29 deletions
diff --git a/config_h.SH b/config_h.SH
index 5b0104003a..0adcd5ce4d 100755
--- a/config_h.SH
+++ b/config_h.SH
@@ -32,7 +32,7 @@ case "$CONFIG_H" in
already-done) echo "Not re-extracting config.h" ;;
*)
echo "Extracting $CONFIG_H (with variable substitutions)"
-sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!'
+sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-def!#undef!' -e's!define\t!define !'
/* This file was produced by running the config_h.SH script, which
* gets its values from $CONFIG_SH, which is generally produced by
* running Configure.
@@ -3411,9 +3411,9 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
* does have the f_flags member containing the mount flags of
* the filesystem containing the file.
* This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
- * not from <sys/statfs.h> (SYSV). Older BSDs do not have statfs() and
- * struct statfs, they have ustat() and getmnt() with struct ustat and
- * struct fs_data.
+ * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
+ * have statfs() and struct statfs, they have ustat() and getmnt()
+ * with struct ustat and struct fs_data.
*/
#$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS /**/
@@ -4026,6 +4026,32 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
*/
#$need_va_copy NEED_VA_COPY /**/
+/* I32df:
+ * This symbol defines the format string used for printing a Perl I32
+ * as a signed decimal integer.
+ */
+/* U32uf:
+ * This symbol defines the format string used for printing a Perl U32
+ * as an unsigned decimal integer.
+ */
+/* U32of:
+ * This symbol defines the format string used for printing a Perl U32
+ * as an unsigned octal integer.
+ */
+/* U32xf:
+ * This symbol defines the format string used for printing a Perl U32
+ * as an unsigned hexadecimal integer in lowercase abcdef.
+ */
+/* U32Xf:
+ * This symbol defines the format string used for printing a Perl U32
+ * as an unsigned hexadecimal integer in uppercase ABCDEF.
+ */
+#define I32df $i32dformat /**/
+#define U32of $u32oformat /**/
+#define U32uf $u32uformat /**/
+#define U32xf $u32xformat /**/
+#define U32Xf $u32XUformat /**/
+
/* IVTYPE:
* This symbol defines the C type used for Perl's IV.
*/
@@ -4191,26 +4217,6 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
* This symbol defines the format string used for printing a Perl NV
* using %g-ish floating point format.
*/
-/* I32df:
- * This symbol defines the format string used for printing a Perl I32
- * as a signed decimal integer.
- */
-/* U32uf:
- * This symbol defines the format string used for printing a Perl U32
- * as an unsigned decimal integer.
- */
-/* U32of:
- * This symbol defines the format string used for printing a Perl U32
- * as an unsigned octal integer.
- */
-/* U32xf:
- * This symbol defines the format string used for printing a Perl U32
- * as an unsigned hexadecimal integer in lowercase abcdef.
- */
-/* U32Xf:
- * This symbol defines the format string used for printing a Perl U32
- * as an unsigned hexadecimal integer in uppercase ABCDEF.
- */
#define IVdf $ivdformat /**/
#define UVuf $uvuformat /**/
#define UVof $uvoformat /**/
@@ -4219,11 +4225,6 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
#define NVef $nveformat /**/
#define NVff $nvfformat /**/
#define NVgf $nvgformat /**/
-#define I32df $i32dformat /**/
-#define U32uf $u32uformat /**/
-#define U32of $u32oformat /**/
-#define U32xf $u32xformat /**/
-#define U32Xf $u32XUformat /**/
/* SELECT_MIN_BITS:
* This symbol holds the minimum number of bits operated by select.