]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - make/utilities.pm
Proritise cached value above a search
[user/henk/code/inspircd.git] / make / utilities.pm
index 2470e1b44d338bbf4efa1b99ce67333239ec694d..982337577c59fbf4a81a96b8cdf779170064087c 100644 (file)
@@ -1,5 +1,7 @@
 package make::utilities;
 use Exporter 'import';
+use make::configure;
+use POSIX;
 @EXPORT = qw(make_rpath pkgconfig_get_include_dirs pkgconfig_get_lib_dirs translate_functions);
 
 # Parse the output of a *_config program,
@@ -10,18 +12,23 @@ use Exporter 'import';
 
 my %already_added = ();
 
-sub make_rpath($)
+sub make_rpath($;$)
 {
-       my ($executable) = @_;
+       my ($executable, $module) = @_;
        chomp($data = `$executable`);
-       $data =~ /-L(\S+)\s/;
-       $libpath = $1;
-       if (!exists $already_added{$libpath})
+       my $output = "";
+       while ($data =~ /-L(\S+)/)
        {
-               print "Adding extra library path \033[1;32m$libpath\033[0m ...\n";
-               $already_added{$libpath} = 1;
+               $libpath = $1;
+               if (!exists $already_added{$libpath})
+               {
+                       print "Adding extra library path to \033[1;32m$module\033[0m ... \033[1;32m$libpath\033[0m\n";
+                       $already_added{$libpath} = 1;
+               }
+               $output .= "-Wl,--rpath -Wl,$libpath -L$libpath ";
+               $data =~ s/-L(\S+)//;
        }
-       return "-Wl,--rpath -Wl,$libpath -L$libpath";
+       return $output;
 }
 
 sub extend_pkg_path()
@@ -36,12 +43,20 @@ sub extend_pkg_path()
        }
 }
 
-sub pkgconfig_get_include_dirs($$$)
+sub pkgconfig_get_include_dirs($$$;$)
 {
-       my ($packagename, $headername, $defaults) = @_;
+       my ($packagename, $headername, $defaults, $module) = @_;
+
+       if (exists $config{$key})
+       {
+               my $key = "default_includedir_$packagename";
+               $ret = $config{$key};
+               return $ret;
+       }
+
        extend_pkg_path();
 
-       print "Locating include directory for package \033[1;32m$packagename\033[0m ... ";
+       print "Locating include directory for package \033[1;32m$packagename\033[0m for module \033[1;32m$module\033[0m... ";
 
        $ret = `pkg-config --cflags $packagename 2>/dev/null`;
        if ((!defined $ret) || ($ret eq ""))
@@ -65,7 +80,17 @@ sub pkgconfig_get_include_dirs($$$)
        chomp($ret);
        if (($ret eq " ") || (!defined $ret))
        {
-               print "\033[1;32mUsing defaults\033[0m\n";
+               my $key = "default_includedir_$packagename";
+               if (exists $config{$key})
+               {
+                       $ret = $config{$key};
+               }
+               else
+               {
+                       $headername =~ s/^\///;
+                       promptstring("path to the directory containing $headername", $key, "/usr/include");
+                       $ret = $config{$key};
+               }
        }
        else
        {
@@ -74,12 +99,20 @@ sub pkgconfig_get_include_dirs($$$)
        return $ret;
 }
 
-sub pkgconfig_get_lib_dirs($$$)
+sub pkgconfig_get_lib_dirs($$$;$)
 {
-       my ($packagename, $libname, $defaults) = @_;
+       my ($packagename, $libname, $defaults, $module) = @_;
+
+       if (exists $config{$key})
+       {
+               my $key = "default_libdir_$packagename";
+               $ret = $config{$key};
+               return $ret;
+       }
+
        extend_pkg_path();
 
-       print "Locating library directory for package \033[1;32m$packagename\033[0m ... ";
+       print "Locating library directory for package \033[1;32m$packagename\033[0m for module \033[1;32m$module\033[0m... ";
 
        $ret = `pkg-config --libs $packagename 2>/dev/null`;
        if ((!defined $ret) || ($ret eq ""))
@@ -104,7 +137,17 @@ sub pkgconfig_get_lib_dirs($$$)
        chomp($ret);
        if (($ret eq " ") || (!defined $ret))
        {
-               print "\033[1;32mUsing defaults\033[0m\n";
+               my $key = "default_libdir_$packagename";
+               if (exists $config{$key})
+               {
+                       $ret = $config{$key};
+               }
+               else
+               {
+                       $libname =~ s/^\///;
+                       promptstring("path to the directory containing $libname", $key, "/usr/lib");
+                       $ret = $config{$key};
+               }
        }
        else
        {
@@ -115,35 +158,81 @@ sub pkgconfig_get_lib_dirs($$$)
 
 # Translate a $CompileFlags etc line and parse out function calls
 # to functions within these modules at configure time.
-sub translate_functions($)
+sub translate_functions($$)
 {
-       my ($line) = @_;
-       while ($line =~ /pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/)
-       {
-               my $replace = pkgconfig_get_lib_dirs($1, $2, $3);
-               $line =~ s/pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/$replace/;
-       }
-       while ($line =~ /pkgconflibs\("(.+?)","(.+?)",""\)/)
-       {
-               my $replace = pkgconfig_get_lib_dirs($1, $2, "");
-               $line =~ s/pkgconflibs\("(.+?)","(.+?)",""\)/$replace/;
-       }
-       while ($line =~ /pkgconfincludes\("(.+?)","(.+?)",""\)/)
+       my ($line,$module) = @_;
+
+       eval
        {
-               my $replace = pkgconfig_get_include_dirs($1, $2, "");
-               $line =~ s/pkgconfincludes\("(.+?)","(.+?)",""\)/$replace/;
-       }
-       while ($line =~ /pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/)
+               $module =~ /modules*\/(.+?)$/;
+               $module = $1;
+
+               # This is only a cursory check, just designed to catch casual accidental use of backticks.
+               # There are pleanty of ways around it, but its not supposed to be for security, just checking
+               # that people are using the new configuration api as theyre supposed to and not just using
+               # backticks instead of eval(), being as eval has accountability. People wanting to get around
+               # the accountability will do so anyway.
+               if (($line =~ /`/) && ($line !~ /eval\(.+?`.+?\)/))
+               {
+                       die "Developers should no longer use backticks in configuration macros. Please use exec() and eval() macros instead. Offending line: $line (In module: $module)";
+               }
+               while ($line =~ /exec\("(.+?)"\)/)
+               {
+                       print "Executing program for module \033[1;32m$module\033[0m ... \033[1;32m$1\033[0m\n";
+                       my $replace = `$1`;
+                       chomp($replace);
+                       $line =~ s/exec\("(.+?)"\)/$replace/;
+               }
+               while ($line =~ /eval\("(.+?)"\)/)
+               {
+                       print "Evaluating perl code for module \033[1;32m$module\033[0m ... ";
+                       my $tmpfile;
+                       do
+                       {
+                               $tmpfile = tmpnam();
+                       } until sysopen(TF, $tmpfile, O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW, 0700);
+                       print "(Created and executed \033[1;32m$tmpfile\033[0m)\n";
+                       print TF $1;
+                       close TF;
+                       my $replace = `perl $tmpfile`;
+                       chomp($replace);
+                       $line =~ s/eval\("(.+?)"\)/$replace/;
+               }
+               while ($line =~ /pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/)
+               {
+                       my $replace = pkgconfig_get_lib_dirs($1, $2, $3, $module);
+                       $line =~ s/pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/$replace/;
+               }
+               while ($line =~ /pkgconflibs\("(.+?)","(.+?)",""\)/)
+               {
+                       my $replace = pkgconfig_get_lib_dirs($1, $2, "", $module);
+                       $line =~ s/pkgconflibs\("(.+?)","(.+?)",""\)/$replace/;
+               }
+               while ($line =~ /pkgconfincludes\("(.+?)","(.+?)",""\)/)
+               {
+                       my $replace = pkgconfig_get_include_dirs($1, $2, "", $module);
+                       $line =~ s/pkgconfincludes\("(.+?)","(.+?)",""\)/$replace/;
+               }
+               while ($line =~ /pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/)
+               {
+                       my $replace = pkgconfig_get_include_dirs($1, $2, $3, $module);
+                       $line =~ s/pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/$replace/;
+               }
+               while ($line =~ /rpath\("(.+?)"\)/)
+               {
+                       my $replace = make_rpath($1,$module);
+                       $line =~ s/rpath\("(.+?)"\)/$replace/;
+               }
+       };
+       if ($@)
        {
-               my $replace = pkgconfig_get_include_dirs($1, $2, $3);
-               $line =~ s/pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/$replace/;
+               print "\n\nConfiguration failed. The following error occured:\n\n$@\n";
+               exit;
        }
-       while ($line =~ /rpath\("(.+?)"\)/)
+       else
        {
-               my $replace = make_rpath($1);
-               $line =~ s/rpath\("(.+?)"\)/$replace/;
+               return $line;
        }
-       return $line;
 }
 
 1;