Revert "Update to 7.40.1"
[platform/upstream/curl.git] / tests / symbol-scan.pl
index 89f5eef..91b859b 100644 (file)
 
 use strict;
 use warnings;
-use vars qw($Cpreprocessor);
 
 #
 # configurehelp perl module is generated by configure script
 #
-my $rc = eval {
-    require configurehelp;
-    configurehelp->import(qw(
-        $Cpreprocessor
-    ));
-    1;
-};
-# Set default values if configure has not generated a configurehelp.pm file.
-# This is the case with cmake.
-if (!$rc) {
-    $Cpreprocessor = 'cpp';
-}
+use configurehelp qw(
+    $Cpreprocessor
+    );
 
 # we may get the dir root pointed out
 my $root=$ARGV[0] || ".";