Ignore:
Timestamp:
2008-10-03T16:00:50+13:00 (16 years ago)
Author:
mdewsnip
Message:

Support for using MSSQL for infodb databases, many thanks to Jeffrey Ke from DL Consulting Ltd. (http://www.dlconsulting.com). Please note that MSSQL only runs on Windows, and requires some setup before use. Documentation will be added to the Greenstone Wiki explaining this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/src/colservr/win32.mak

    r16577 r17476  
    3636DLLDEBUG = 0
    3737USE_SQLITE = 0
     38USE_MSSQL = 0
    3839
    3940
     
    6061!ENDIF
    6162
     63!IF $(USE_MSSQL)
     64MSSQL_DEFINES = -DUSE_MSSQL
     65!ELSE
     66MSSQL_DEFINES =
     67!ENDIF
     68
    6269
    6370AR = lib
    6471CC = cl
    6572DEFS = -D__WIN32__ -DHAVE_CONFIG_H -DPARADOCNUM -D_LITTLE_ENDIAN -DSHORT_SUFFIX -D_CRT_SECURE_NO_DEPRECATE \
    66         -DXML_STATIC $(SQLITE_DEFINES)
     73        -DXML_STATIC $(SQLITE_DEFINES) $(MSSQL_DEFINES)
    6774# Do NOT add the "recpt" directory here: the colserver should be independent of the receptionist!
    6875INCLUDES = -I"$(GSDL_DIR)" -I"$(COMMON_DIR)\src\lib" \
Note: See TracChangeset for help on using the changeset viewer.