Ignore:
Timestamp:
2004-08-24T10:10:28+12:00 (20 years ago)
Author:
davidb
Message:

Support for optional compilation of lucene searching and z39.50 server.

File:
1 edited

Legend:

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

    r3632 r8033  
    8787endif
    8888MINCLUDES = -I. -I../../lib -I../colservr -I../mgpp/text $(MICO_INC)
     89
     90USE_LUCENE=0
     91ifeq ($(USE_LUCENE), 1)
     92LC_LIBS     = -L../../packages/xerces/lib -lxerces-c
     93LC_OBJECTS  = \
     94    ../colservr/lucenesearch.o   \
     95    ../colservr/lucenequeryfilter.o \
     96    ../colservr/lucenegdbmsource.o \
     97    ../colservr/sax_resultset.o  \
     98    ../colservr/sax_resultset_handler.o
     99else
     100LC_LIBS     =
     101LC_OBJECTS  =
     102endif
     103
    89104
    90105RANLIB = @RANLIB@
     
    250265          ../colservr/mgppsearch.o \
    251266          ../colservr/mgppqueryfilter.o \
    252           ../colservr/collectset.o
     267          ../colservr/collectset.o \
     268          $(LC_OBJECTS)
    253269
    254270
     
    379395test:
    380396
     397Z3950_OBJS = $(COMMONOBJECTS) $(COLSERVROBJECTS) \
     398    ../colservr/z3950server.o ../colservr/read-grs.o nullproto.o \
     399    ../../lib/gsdllib.a  \
     400    ../../packages/mg/src/text/libtextin.a \
     401    ../../packages/mg/lib/libmg.a \
     402    $(FASTCGI_OBJS) \
     403    ../mgpp/text/libtextin.a \
     404    ../mgpp/lib/libmg.a ../../packages/yaz-1.9/lib/.libs/libyaz.a
     405
     406z3950server: $(Z3950_OBJS)
     407    @echo -e building z3950server
     408    $(CXXLINK) $(Z3950_OBJS) $(LIBS)
Note: See TracChangeset for help on using the changeset viewer.