Ignore:
Timestamp:
2009-12-09T21:41:14+13:00 (14 years ago)
Author:
ak19
Message:

Changes to makefiles, configure files, and source code to work with the new configure flags that allow indexers to be individually compiled up by setting each indexer to be enabled or disabled (enable-mg, enable-mgpp, enable-lucene)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/protocol/Makefile.in

    r18224 r21324  
    3333COLSERVR_DIR = $(RUNTIME_DIR)/src/colservr
    3434
     35ENABLE_MGPP = @ENABLE_MGPP@
     36ifeq ($(ENABLE_MGPP), 1)
     37MGPP_INCLUDES = -I$(INDEXERS_DIR)/mgpp/text
     38else
     39MGPP_INCLUDES =
     40endif
    3541
    3642AR = ar
     
    4046# Do NOT add the "recpt" directory here: the protocol should be independent of the receptionist!
    4147INCLUDES = -I. -I$(GSDL_DIR) -I$(COMMON_DIR)/src/lib -I$(COMMON_PACKAGES_DIR)/gdbm/include \
    42     -I$(COLSERVR_DIR) -I$(INDEXERS_DIR)/mgpp/text
     48    -I$(COLSERVR_DIR) $(MGPP_INCLUDES)
    4349RANLIB = @RANLIB@
    4450
Note: See TracChangeset for help on using the changeset viewer.