From 7d74507aacb63f77b763c940ef6fb6c82cb2445a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 16 Jan 2012 09:50:11 +0200 Subject: Add SQL Server support --- build/configuration.make | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'build/configuration.make') diff --git a/build/configuration.make b/build/configuration.make index e2d0077..d217dd6 100644 --- a/build/configuration.make +++ b/build/configuration.make @@ -15,18 +15,14 @@ ifdef db_id ifeq ($(db_id),mysql) db_macro := DATABASE_MYSQL -endif - -ifeq ($(db_id),sqlite) +else ifeq ($(db_id),sqlite) db_macro := DATABASE_SQLITE -endif - -ifeq ($(db_id),pgsql) +else ifeq ($(db_id),pgsql) db_macro := DATABASE_PGSQL -endif - -ifeq ($(db_id),oracle) +else ifeq ($(db_id),oracle) db_macro := DATABASE_ORACLE +else ifeq ($(db_id),mssql) +db_macro := DATABASE_MSSQL endif $(out_root)/%: db_id := $(db_id) -- cgit v1.1