diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-07-24 20:55:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-07-24 20:55:48 +0200 |
commit | 9194e9c1c01b34c9e63f0ee989e43ced606cf554 (patch) | |
tree | 87ca86d386bb8ecc7ba688f9b036044c502b75d7 | |
parent | f341a3fd9c38e4e43a0fc792f382447965d6ce83 (diff) |
Add DATABASE_PGSQL define
-rw-r--r-- | template/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/template/Makefile.am b/template/Makefile.am index 7bebe38..9a83bfa 100644 --- a/template/Makefile.am +++ b/template/Makefile.am @@ -17,6 +17,10 @@ if DATABASE_SQLITE AM_CPPFLAGS += -DDATABASE_SQLITE endif +if DATABASE_PGSQL +AM_CPPFLAGS += -DDATABASE_PGSQL +endif + TESTS=$(top_builddir)/tester TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir; |