diff options
author | Dennis Friis <peavey@inspircd.org> | 2010-10-15 12:37:24 +0200 |
---|---|---|
committer | Dennis Friis <peavey@inspircd.org> | 2010-10-15 12:37:24 +0200 |
commit | 9133c3302428eb81f6d970502f811e8168079d5a (patch) | |
tree | 5d4b2de752a11cffad40c14b6b48a145b274b43a /src | |
parent | 2a8510472b95e11f8f85f26ca610b28c229504c0 (diff) |
Remove m_sqlv2.h from these modules, they both use v3 now.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/extra/m_mysql.cpp | 1 | ||||
-rw-r--r-- | src/modules/extra/m_pgsql.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/modules/extra/m_mysql.cpp b/src/modules/extra/m_mysql.cpp index 9a97c10bf..1eb65794d 100644 --- a/src/modules/extra/m_mysql.cpp +++ b/src/modules/extra/m_mysql.cpp @@ -27,7 +27,6 @@ /* $ModDesc: SQL Service Provider module for all other m_sql* modules */ /* $CompileFlags: exec("mysql_config --include") */ /* $LinkerFlags: exec("mysql_config --libs_r") rpath("mysql_config --libs_r") */ -/* $ModDep: m_sqlv2.h */ /* THE NONBLOCKING MYSQL API! * diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index 0ea1e0b6a..2d8b83264 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -20,7 +20,6 @@ /* $ModDesc: PostgreSQL Service Provider module for all other m_sql* modules, uses v2 of the SQL API */ /* $CompileFlags: -Iexec("pg_config --includedir") eval("my $s = `pg_config --version`;$s =~ /^.*?(\d+)\.(\d+)\.(\d+).*?$/;my $v = hex(sprintf("0x%02x%02x%02x", $1, $2, $3));print "-DPGSQL_HAS_ESCAPECONN" if(($v >= 0x080104) || ($v >= 0x07030F && $v < 0x070400) || ($v >= 0x07040D && $v < 0x080000) || ($v >= 0x080008 && $v < 0x080100));") */ /* $LinkerFlags: -Lexec("pg_config --libdir") -lpq */ -/* $ModDep: m_sqlv2.h */ /* SQLConn rewritten by peavey to * use EventHandler instead of |