#!/usr/bin/perl -w use strict; use warnings; $|++; print << "EOP"; ================================================ This GDS2 module can try to compile and use C code so as to speed up gds2 reading slightly. This code is relatively untested. ================================================ EOP #print "Do you want to use Inline::C code? (y/N): "; #my $response = ; my $response; #if ($response =~ m/^[yY]/) #{ # $response = 'yes'; # print "\nMaking version of GDS2.pm with C code on...."; #} #else #{ $response = 'no'; print "\nMaking version of GDS2.pm with C code off...."; #} rename "lib/GDS2.pm","lib/GDS2.pm.original"; open(OLD,"lib/GDS2.pm") or die "Unable to create lib/GDS2.pm $!"; while () { if ($response eq 'yes') { s/FALSE/TRUE/ if (m/^\s+use constant USE_C /); s/^#+// if (m/#INLINEC/); } if ($response eq 'no') { s/TRUE/FALSE/ if (m/^\s+use constant USE_C /); s/^/#/ if (m/#INLINEC/ && (! m/^#/)); } print NEW; } close OLD; close NEW; unlink "lib/GDS2.pm.original"; print "Done.\n";