Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.130.122
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Debian /
Debhelper /
Buildsystem /
[ HOME SHELL ]
Name
Size
Permission
Action
ant.pm
1.03
KB
-rw-r--r--
autoconf.pm
2.56
KB
-rw-r--r--
cmake.pm
5.55
KB
-rw-r--r--
makefile.pm
5.67
KB
-rw-r--r--
meson.pm
3.54
KB
-rw-r--r--
ninja.pm
1.68
KB
-rw-r--r--
perl_build.pm
2.25
KB
-rw-r--r--
perl_makemaker.pm
2.63
KB
-rw-r--r--
python_distutils.pm
5.45
KB
-rw-r--r--
qmake.pm
2.44
KB
-rw-r--r--
qmake_qt4.pm
220
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoconf.pm
# A debhelper build system class for handling Autoconf based projects # # Copyright: © 2008 Joey Hess # © 2008-2009 Modestas Vainius # License: GPL-2+ package Debian::Debhelper::Buildsystem::autoconf; use strict; use warnings; use Debian::Debhelper::Dh_Lib qw(%dh dpkg_architecture_value sourcepackage compat); use parent qw(Debian::Debhelper::Buildsystem::makefile); sub DESCRIPTION { "GNU Autoconf (configure)" } sub check_auto_buildable { my $this=shift; my ($step)=@_; return 0 unless -f $this->get_sourcepath("configure") && -x _; # Handle configure explicitly; inherit the rest return 1 if $step eq "configure"; return $this->SUPER::check_auto_buildable(@_); } sub configure { my $this=shift; # Standard set of options for configure. my @opts; push @opts, "--build=" . dpkg_architecture_value("DEB_BUILD_GNU_TYPE"); push @opts, "--prefix=/usr"; push @opts, "--includedir=\${prefix}/include"; push @opts, "--mandir=\${prefix}/share/man"; push @opts, "--infodir=\${prefix}/share/info"; push @opts, "--sysconfdir=/etc"; push @opts, "--localstatedir=/var"; # We pass --disable/enable-* options that might be unknown, so we # should not emit warnings. push @opts, "--disable-option-checking"; if ($dh{QUIET}) { push @opts, "--enable-silent-rules"; } else { push @opts, "--disable-silent-rules"; } my $multiarch=dpkg_architecture_value("DEB_HOST_MULTIARCH"); if (! compat(8)) { if (defined $multiarch) { push @opts, "--libdir=\${prefix}/lib/$multiarch"; push(@opts, "--libexecdir=\${prefix}/lib/$multiarch") if compat(11); } else { push(@opts, "--libexecdir=\${prefix}/lib") if compat(11); } } else { push @opts, "--libexecdir=\${prefix}/lib/" . sourcepackage(); } push @opts, "--runstatedir=/run" if not compat(10); push @opts, "--disable-maintainer-mode"; push @opts, "--disable-dependency-tracking"; # Provide --host only if different from --build, as recommended in # autotools-dev README.Debian: When provided (even if equal) # autoconf 2.52+ switches to cross-compiling mode. if (dpkg_architecture_value("DEB_BUILD_GNU_TYPE") ne dpkg_architecture_value("DEB_HOST_GNU_TYPE")) { push @opts, "--host=" . dpkg_architecture_value("DEB_HOST_GNU_TYPE"); } $this->mkdir_builddir(); eval { $this->doit_in_builddir($this->get_source_rel2builddir("configure"), @opts, @_); }; if ($@) { if (-e $this->get_buildpath("config.log")) { $this->doit_in_builddir('tail', '-v', '-n', '+0', 'config.log'); } die $@; } } sub test { my $this=shift; $this->make_first_existing_target(['test', 'check'], "VERBOSE=1", @_); } 1
Close