DBD-SQLAnywhere
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
my $so_ext = 'so';
$so_ext = 'dll' if $os eq 'MSWin32';
$so_ext = 'dylib' if $os eq 'darwin';
$so_ext = 'sl' if $os eq 'hpux' && $osarch =~ /^PA-RISC/;
my %opts = (
NAME => 'DBD::SQLAnywhere',
VERSION_FROM => 'SQLAnywhere.pm',
OBJECT => 'SQLAnywhere.o dbdimp.o sacapidll.o',
clean => { FILES=> 'SQLAnywhere.xsi' },
dist => { DIST_DEFAULT => 'clean distcheck disttest ci tardist',
PREOP => '$(MAKE) -f Makefile.old distdir',
COMPRESS => 'gzip -v9', SUFFIX => 'gz',
},
PM => { 'SQLAnywhere.pm' => '$(INST_LIBDIR)/SQLAnywhere.pm',
'lib/DBD/SQLAnywhere/GetInfo.pm' => 'blib/lib/DBD/SQLAnywhere/GetInfo.pm' },
CONFIGURE_REQUIRES => { "DBI" => "1.51" },
);
if ($ExtUtils::MakeMaker::VERSION >= 5.43) {
$opts{AUTHOR} = 'John Smirnios (john.smirnios@sap.com), Tim Bunce';
$opts{ABSTRACT} = 'SQL Anywhere DBD driver';
$opts{PREREQ_PM} = { DBI => 1.51, 'Test::Simple' => 0.41 };
$opts{CAPI} = 'TRUE' if $Config{archname} =~ /-object\b/i;
}
$opts{LINKTYPE} = 'static' if $Config{dlsrc} =~ /dl_none/;
# Options (rarely needed)
$::opt_g = ''; # enable debugging (-g for compiler and linker)
GetOptions(qw(g!))
or die "Invalid arguments";
$::opt_g &&= '-g'; # convert to actual string
# --- Introduction
print "\nConfiguring DBD::SQLAnywhere ...\n";
my $is_gcc;
if( "$Config{cc}" eq "gcc" ||
"$Config{gccversion}" ne "" ) {
$is_gcc = 1;
printf( "Using GNU compiler\n" );
} else {
$is_gcc = 0;
printf( "Using non-GNU compiler %s\n", $Config{cc} );
}
my $perllib;
$perllib = $Config{libperl};
if( $Config{osname} ne "MSWin32" ) {
$perllib =~ s/^lib//;
}
$perllib =~ s/\..*//;
# On UNIX platforms, leave the perllib symbols unresolved and
# get them from the perl executable at runtime. Libperl.a is not
# built as relocatable code so linking against it now will leave
# relocations in a shared object which is forbidden on some
# platforms.
$opts{CCFLAGS} = $Config{ccflags};
my $sysliblist;
if( $Config{osname} eq "MSWin32" ) {
$sysliblist .= " -l${perllib}";
# $opts{CCFLAGS} =~ s/-O1//;
$opts{CCFLAGS} =~ s/-Gf\s*/-GF /;
} elsif( "$Config{osname}" eq "solaris" ) {
$sysliblist .= " -lsocket -lnsl -lm -lc";
if( $is_gcc ) {
# $opts{dynamic_lib}{OTHERLDFLAGS} .= " -Wl,-z,defs";
} else {
$opts{CCFLAGS} .= " -xCC -g";
# $opts{dynamic_lib}{OTHERLDFLAGS} .= " -z defs";
}
} elsif( "$Config{osname}" eq "hpux" ) {
if( ! $is_gcc ) {
$opts{CCFLAGS} =~ s/-Aa\s*//;
}
} elsif( "$Config{osname}" eq "aix" ) {
if( ! $is_gcc ) {
$opts{CCFLAGS} .= " -qcpluscmt"
}
}
if( $is_gcc ) {
# $opts{dynamic_lib}{OTHERLDFLAGS} .= ' -shared';
}
$opts{LIBS} = [ $sysliblist ];
$opts{DEFINE} .= " -D_SACAPI_VERSION=2";
if( $Config{osname} eq "MSWin32" ) {
$opts{INC} .= qq( -I"$dbi_arch_dir" );
$opts{DEFINE} .= ' -DWINNT -D_CRT_SECURE_NO_DEPRECATE';
# The following doesn't work if ActivePerl was built with MinGW (gcc)
# It was added so that a manifest would be added to the DLL when building with VS2005 but it
# doesn't seem to be needed anymore.
# $opts{LD} = "\$(PERL) dolink.pl \$@";
} else {
$opts{INC} .= "-I$dbi_arch_dir ";
$opts{DEFINE} .= ' -DUNIX';
}
#$opts{OPTIMIZE}="-Zi";
#$opts{dynamic_lib}{OTHERLDFLAGS} .= ' -debug';
#$opts{CCFLAGS} =~ s/-Ox //;
# uncomment log key platform information to help me help you quickly
print "System: perl$] @Config{qw(myuname archname dlsrc)}\n";
print "Compiler: @Config{qw(cc optimize ccflags)}\n";
WriteMakefile(%opts);
exit 0;
sub MY::postamble {
return( dbd_postamble(@_) );
}
__END__
( run in 1.081 second using v1.01-cache-2.11-cpan-71847e10f99 )