1# $Id: Makefile.PL,v 1.1 2008/04/04 11:02:30 knizhnik Exp $
2use ExtUtils::MakeMaker;
3WriteMakefile(
4    'NAME'		=> 'DBD::Gigabase',
5    'VERSION_FROM'	=> 'Gigabase.pm', # finds $VERSION
6    'PREREQ_PM'		=> {'Gigabase' => 1.05 } # e.g., Module::Name => 1.1
7);
8use strict;
9=off
10print "Trying start subsql utility...\n";
11my $found=open SUBSQL,"|subsql";
12close SUBSQL;
13if ($found) { print "\nfound\nYou can type 'make test' to run tests.\n" }
14else { print "not found\n";
15 print "Warning: database test will fail without runned cli server.\n";
16}
17=cut
18print "If you want run tests,make shure that GigaBASE server running \n"
19. "at localhost:6100. You can type 'subsql creatdb.sql' in t directory.\n";
201;