﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	parents
843	Postgres check is wrng	muhoo		"In configure.ac, postgres check is wrong.

This fixes it:

diff --git a/configure.ac b/configure.ac
index e56a55a..098b300 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,7 +147,7 @@ AC_PROG_INSTALL
       
 # Check for a supported database program
 AC_PATH_PROG([SQLITE], [sqlite3])
-AC_PATH_PROG([POSTGRES], [postgres])
+AC_PATH_PROG([POSTGRES], [pg])
 AS_IF([test ""x$SQLITE"" = x -a ""x$POSTGRES"" = ""x""],
    [AC_MSG_ERROR([SQLite or PostgreSQL is required])])
       
"	defect	closed	major	0.7.0	programming	fixed			
