Changeset 9033


Ignore:
Timestamp:
2005-02-14T17:24:58+13:00 (19 years ago)
Author:
davidb
Message:

XML parsing support for Lucene used to be done with sax. This has now been
changed to the more light-weight expat, which is already being used by
XMLPlug and other perl modules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/Makefile.in

    r8185 r9033  
    8888MINCLUDES = -I. -I../../lib -I../colservr -I../mgpp/text $(MICO_INC)
    8989
    90 USE_LUCENE=0
    91 ifeq ($(USE_LUCENE), 1)
    92 LC_LIBS     = -L../../packages/xerces/lib -lxerces-c
     90LC_LIBS     = ../../packages/expat/lib/libexpat.a
    9391LC_OBJECTS  = \
    9492    ../colservr/lucenesearch.o   \
    9593    ../colservr/lucenequeryfilter.o \
    9694    ../colservr/lucenegdbmsource.o \
    97     ../colservr/sax_resultset.o  \
    98     ../colservr/sax_resultset_handler.o
    99 else
    100 LC_LIBS     =
    101 LC_OBJECTS  =
    102 endif
    103 
     95    ../colservr/expat_resultset.o
    10496
    10597RANLIB = @RANLIB@
    10698LDFLAGS = @LDFLAGS@
    10799GDBM_LIBS=@GDBM_LIBPATH@ -lgdbm
    108 LIBS = $(GDBM_LIBS) @LIBS@
     100LIBS = $(GDBM_LIBS) $(LC_LIBS) @LIBS@
    109101GSDLOS = @gsdlos@
    110102INSTALL = @INSTALL@
Note: See TracChangeset for help on using the changeset viewer.