From b0ce926a45891e83ffb4badae874161f93c0eb49 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 12 Aug 1999 19:06:17 +0000 Subject: Add Configure -Duselongdouble and add a missing semicolon. p4raw-id: //depot/cfgperl@3969 --- Configure | 31 ++++++++++++++++++++++++++++++- config_h.SH | 6 ++++++ sv.c | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/Configure b/Configure index 60df7961d6..ab71528928 100755 --- a/Configure +++ b/Configure @@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Tue Aug 10 20:19:08 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Thu Aug 12 22:03:15 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$use64bits USE_64_BITS /**/ +/* USE_LONG_DOUBLE: + * This symbol, if defined, indicates that long doubles should + * be used when available. + */ +#$uselongdouble USE_LONG_DOUBLE /**/ + /* MULTIPLICITY: * This symbol, if defined, indicates that Perl should * be built to use multiplicity. diff --git a/sv.c b/sv.c index 26c2b3472e..520a3b69ab 100644 --- a/sv.c +++ b/sv.c @@ -5130,7 +5130,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV #ifdef USE_LONG_DOUBLE { char* p = PERL_PRIfldbl + sizeof(PERL_PRIfldbl) - 3; - while (p >= PERL_PRIfldbl) { *--eptr = *p-- } + while (p >= PERL_PRIfldbl) { *--eptr = *p--; } } #endif if (has_precis) { -- cgit v1.2.1