summaryrefslogtreecommitdiff
path: root/src/dalstoragesql.h
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-06-19 12:26:04 +0000
committerAaron Marks <nymacro@gmail.com>2005-06-19 12:26:04 +0000
commitf194e2fb62234ff66d0ee12282ce4a22aa237e89 (patch)
tree60b48cf64e8b16abcee01516e7f35020b77e1171 /src/dalstoragesql.h
parentd711ab557a1e3613df1f6fd1ad818695acda05ed (diff)
downloadmanaserv-f194e2fb62234ff66d0ee12282ce4a22aa237e89.tar.gz
manaserv-f194e2fb62234ff66d0ee12282ce4a22aa237e89.tar.bz2
manaserv-f194e2fb62234ff66d0ee12282ce4a22aa237e89.tar.xz
manaserv-f194e2fb62234ff66d0ee12282ce4a22aa237e89.zip
Added PostgreSQL DAL class.
Updated configure.ac to include PostgreSQL & MySQL. (MySQL needs to be adjusted, and it seems that using --with-sqlite will drop out of configure after check for atexit. I dont know why, as i didn't touch the SQLite stuff) :)
Diffstat (limited to 'src/dalstoragesql.h')
-rw-r--r--src/dalstoragesql.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dalstoragesql.h b/src/dalstoragesql.h
index 3de9b33f..1e24f09e 100644
--- a/src/dalstoragesql.h
+++ b/src/dalstoragesql.h
@@ -25,8 +25,8 @@
#define _TMWSERV_DALSTORAGE_SQL_H_
-#if !defined (MYSQL_SUPPORT) && !defined (SQLITE_SUPPORT)
-#error "no database backend defined"
+#if !defined (MYSQL_SUPPORT) && !defined (SQLITE_SUPPORT) && !defined (POSTGRE_SUPPORT)
+#error "(dalstorage.h) no database backend defined"
#endif