diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 16:20:25 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 16:20:25 +0000 |
commit | ae0f4c9d021bfdfa547bbae6818027eec36db8a8 (patch) | |
tree | 204a0241b7fe6570c9c61f7a4f8923bc8c24912d | |
parent | 87b531bf29e52d2f0f42b244604715f9af15b48c (diff) |
Ooops, remove my debug line
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5779 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/extra/pgsql_config.pl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules/extra/pgsql_config.pl b/src/modules/extra/pgsql_config.pl index c0f85758a..683cb1ee8 100644 --- a/src/modules/extra/pgsql_config.pl +++ b/src/modules/extra/pgsql_config.pl @@ -1,7 +1,6 @@ #!/usr/bin/perl my $s = `pg_config --version`; -$s = shift; $s =~ /^.*?(\d+)\.(\d+)\.(\d+).*?$/; my $v = hex(sprintf("0x%02x%02x%02x", $1, $2, $3)); print "-D PGSQL_HAS_ESCAPECONN" if(($v >= 0x080104) or (($v >= 0x07030F) and ($v < 0x080000))); |