diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-17 16:49:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 15:45:45 +0200 |
commit | 04201d013c2a43d27987122e0118236d74154d77 (patch) | |
tree | f806841bec2378ca955a7bea2ca45a978ed39edb /libcommon/common/makefile | |
parent | 16a4099d36ca1cdc33cf6e2b99edce796595341f (diff) |
Add initial support for SQL Server test infrastructure
Diffstat (limited to 'libcommon/common/makefile')
-rw-r--r-- | libcommon/common/makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcommon/common/makefile b/libcommon/common/makefile index 6bc7a88..accf285 100644 --- a/libcommon/common/makefile +++ b/libcommon/common/makefile @@ -61,6 +61,9 @@ endif ifeq ($(db_id),oracle) @echo '#define DATABASE_ORACLE 1' >>$@ endif +ifeq ($(db_id),mssql) + @echo '#define DATABASE_MSSQL 1' >>$@ +endif @echo '#define HAVE_TR1_MEMORY 1' >>$@ @echo '' >>$@ @echo '#endif /* LIBCOMMON_COMMON_CONFIG_H */' >>$@ |