~ubuntu-branches/ubuntu/utopic/libcgi-compile-perl/utopic

« back to all changes in this revision

Viewing changes to t/hello.cgi

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-05-25 14:50:14 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140525145014-f7w6i2usopo3vjib
Tags: 0.17-1
* New upstream release.
* Strip trailing slash from metacpan URLs.
* Drop debian/README.source, the upstream .gitignore is gone.
* debian/copyright: remove stanza about removed inc/Module/*.
* Update years of packaging copyright.
* Declare compliance with Debian Policy 3.9.5.
* Build-Depend on Module::Build::Tiny. Adjust required debhelper version
  accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use CGI;
2
2
$COUNTER++;
3
3
 
4
 
BEGIN { $SIG{USR1} = 'IGNORE'; }
 
4
BEGIN { $SIG{USR1} = 'IGNORE'; $SIG{TERM} = sub {"COMPILE TERM"} }
5
5
 
6
6
$SIG{USR1} = 'IGNORE';
 
7
$SIG{TERM} = sub {"RUN TERM"};
7
8
 
8
9
my $q = CGI->new;
9
10