diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-12 12:17:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-12 12:17:02 +0000 |
commit | 912ec6395ccd8f957980c6c263fd9cff9e9bb2fa (patch) | |
tree | 588858884873b06a438e1c0af8e8cb9e7be3b9d9 /win32 | |
parent | 7f830b7b73b719fa94e6d7aabd5587845f70dbcc (diff) | |
download | perl-912ec6395ccd8f957980c6c263fd9cff9e9bb2fa.tar.gz |
Synchronize config.bc and config_H.bc; add SCNfldbl;
go back to disabling long doubles from MinGW because
MSVCRT doesn't do long double printfing even when gcc
would know how to handle them.
p4raw-id: //depot/perl@17200
Diffstat (limited to 'win32')
-rw-r--r-- | win32/config.bc | 8 | ||||
-rw-r--r-- | win32/config_H.bc | 2 | ||||
-rw-r--r-- | win32/config_H.gc | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/win32/config.bc b/win32/config.bc index 0df9810030..483ffcd41e 100644 --- a/win32/config.bc +++ b/win32/config.bc @@ -793,14 +793,14 @@ sPRIFUldbl='"F"' sPRIGUldbl='"G"' sPRIXU64='"lX"' sPRId64='"ld"' -sPRIeldbl='"e"' -sPRIfldbl='"f"' -sPRIgldbl='"g"' +sPRIeldbl='"Le"' +sPRIfldbl='"Lf"' +sPRIgldbl='"Lg"' sPRIi64='"li"' sPRIo64='"lo"' sPRIu64='"lu"' sPRIx64='"lx"' -sSCNfldbl='"f"' +sSCNfldbl='"Lf"' sched_yield='' scriptdir='~INST_TOP~~INST_VER~\bin' scriptdirexp='~INST_TOP~~INST_VER~\bin' diff --git a/win32/config_H.bc b/win32/config_H.bc index 3fa348c71f..3e4e80c576 100644 --- a/win32/config_H.bc +++ b/win32/config_H.bc @@ -2930,7 +2930,7 @@ #define PERL_PRIfldbl "Lf" /**/ #define PERL_PRIgldbl "Lg" /**/ #define PERL_PRIeldbl "Le" /**/ -#define PERL_SCNfldbl "f" /**/ +#define PERL_SCNfldbl "Lf" /**/ /* Off_t: * This symbol holds the type used to declare offsets in the kernel. diff --git a/win32/config_H.gc b/win32/config_H.gc index 85c000a83e..a968ec6f3c 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -2927,9 +2927,9 @@ * This symbol, if defined, contains the string used by stdio to * format long doubles (format 'f') for input. */ -#define PERL_PRIfldbl "Lf" /**/ -#define PERL_PRIgldbl "Lg" /**/ -#define PERL_PRIeldbl "Le" /**/ +/*#define PERL_PRIfldbl "f" /**/ +/*#define PERL_PRIgldbl "g" /**/ +/*#define PERL_PRIeldbl "e" /**/ /*#define PERL_SCNfldbl "f" /**/ /* Off_t: |