summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2003-05-16 18:16:57 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-16 15:55:10 +0000
commit04fa0c702a9221c225ba8695a20b08d7da04409f (patch)
tree56f8bd9522534e05fd8140beb22648b0d4854abd /Configure
parentea0e37e48a6e7942e23df67a0ae153e0f80bcbb3 (diff)
downloadperl-04fa0c702a9221c225ba8695a20b08d7da04409f.tar.gz
RE: maint snapshot @ 19525
Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk> (Part #1: the __format__ and __printf__) p4raw-id: //depot/perl@19527
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 181d2b36ec..8e0b995319 100755
--- a/Configure
+++ b/Configure
@@ -9815,7 +9815,7 @@ echo " "
echo "Checking whether your compiler can handle __attribute__ ..." >&4
$cat >attrib.c <<'EOCP'
#include <stdio.h>
-void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
+void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
EOCP
if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
if $contains 'warning' attrib.out >/dev/null 2>&1; then