From e533a9bb2afa6adb89c842ba6108b1867d45cc54 Mon Sep 17 00:00:00 2001 From: om Date: Wed, 9 Aug 2006 15:15:28 +0000 Subject: Fix for when we hit PgSQL 9.x that I think actually works git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4815 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/extra/pgsql_config.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/modules/extra/pgsql_config.pl b/src/modules/extra/pgsql_config.pl index 9b09aef91..bc91fa24d 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)) or ($a > 8)); +print "-D PGSQL_HAS_ESCAPECONN" if(hex(sprintf("%02x", $a) . sprintf("%02x", $b) . sprintf("%02x", $c)) >= 0x080104); -- cgit v1.2.3