diff options
author | Steve Hay <SteveHay@planit.com> | 2006-01-24 09:22:44 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-01-24 09:22:44 +0000 |
commit | cec8d04d5bbefa97829c5315600af7b8a0040476 (patch) | |
tree | 0342fde1d872e425eca423bde0346d5c6d9df4c8 | |
parent | ebab5fdda82b63a33ca5426cdae823563f351ee3 (diff) | |
download | perl-cec8d04d5bbefa97829c5315600af7b8a0040476.tar.gz |
SPRINTF_RETURNS_STRLEN isn't really a compile-time option
From: Gisle Aas <gisle@ActiveState.com>
Date: 23 Jan 2006 02:12:04 -0800
Message-ID: <lr3bjfb6dn.fsf@caliper.activestate.com>
Subject: RE: SPRINTF_RETURNS_STRLEN isn't really a compile-time option
From: "Jan Dubois" <jand@ActiveState.com>
Date: Mon, 23 Jan 2006 11:30:51 -0800
Message-ID: <008001c62053$86adf680$2217a8c0@candy>
p4raw-id: //depot/perl@26935
-rw-r--r-- | makedef.pl | 2 | ||||
-rw-r--r-- | perl.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/makedef.pl b/makedef.pl index 56a95442b2..b846bdb1c1 100644 --- a/makedef.pl +++ b/makedef.pl @@ -288,6 +288,7 @@ if ($PLATFORM eq 'win32') { Perl_getenv_len Perl_my_pclose Perl_my_popen + Perl_my_sprintf )]; } else { @@ -364,6 +365,7 @@ if ($PLATFORM eq 'wince') { Perl_getenv_len Perl_my_pclose Perl_my_popen + Perl_my_sprintf )]; } elsif ($PLATFORM eq 'aix') { @@ -1809,9 +1809,6 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit) # ifdef PL_OP_SLAB_ALLOC " PL_OP_SLAB_ALLOC" # endif -# ifdef SPRINTF_RETURNS_STRLEN - " SPRINTF_RETURNS_STRLEN" -# endif # ifdef THREADS_HAVE_PIDS " THREADS_HAVE_PIDS" # endif |