From e5b4462f47776bd682dc1042abe6192ddf999654 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Fri, 18 Feb 2000 11:35:10 +0000 Subject: [PATCH] Stay compatible to older Perl5 releases (see diff -r1.11 -r1.12). --- Configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Configure b/Configure index 09997b747b..884893f179 100755 --- a/Configure +++ b/Configure @@ -546,7 +546,8 @@ else { $thread_cflags="-DTHREADS $thread_cflag $cflags"; $thread_defines .= "#define THREADS\n"; - foreach my $def (split ' ',$thread_cflag) + my $def; + foreach $def (split ' ',$thread_cflag) { if ($def =~ s/^-D//) { -- 2.34.1