summaryrefslogtreecommitdiff
path: root/src/modules/extra/pgsql_config.pl
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 15:00:06 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 15:00:06 +0000
commit7639c4bf92149ff65be6e09d6eca5db68debc760 (patch)
tree9da913dd45a913fe933fe425cbb8aecf953fd22e /src/modules/extra/pgsql_config.pl
parentcb45f8e59686788d59bb3024e078187c07e644a0 (diff)
Fix for when we hit PgSQL 9.x
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4814 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/pgsql_config.pl')
-rw-r--r--src/modules/extra/pgsql_config.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/pgsql_config.pl b/src/modules/extra/pgsql_config.pl
index 4c56e4cf6..9b09aef91 100644
--- a/src/modules/extra/pgsql_config.pl
+++ b/src/modules/extra/pgsql_config.pl
@@ -3,4 +3,4 @@
my $v = substr(`pg_config --version`, 11);
my($a, $b, $c) = split(/\./, $v);
-print "-D PGSQL_HAS_ESCAPECONN" if(($a >= 8) and ($b >= 1) and ($c >= 4));
+print "-D PGSQL_HAS_ESCAPECONN" if((($a = 8) and ($b >= 1) and ($c >= 4)) or ($a > 8));