From cb063f95f155da1d2d8c90a6059722459dba1e2b Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Fri, 25 Oct 2002 15:20:07 +0000 Subject: [PATCH] Better configuration management. --- helm/proofChecker/proofChecker.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/helm/proofChecker/proofChecker.pl b/helm/proofChecker/proofChecker.pl index fde4b43ea..402bd3e98 100755 --- a/helm/proofChecker/proofChecker.pl +++ b/helm/proofChecker/proofChecker.pl @@ -10,8 +10,10 @@ use IPC::Open3; chdir $FindBin::Bin; # chdir to the directory of this perl script -my $d = new HTTP::Daemon LocalPort => 8085 - or die "Error: port 8085 not available."; +$proofcheckerport = $ENV{'PROOF_CHECKER_PORT'} || $proofcheckerport; + +my $d = new HTTP::Daemon LocalPort => $proofcheckerport + or die "Error: port $proofcheckerport not available."; print "Please contact me at: url, ">\n"; my $IsProofCheckerLiving = 0; -- 2.39.2