Ignore:
Timestamp:
2012-01-20T16:22:35+13:00 (12 years ago)
Author:
ak19
Message:

First commit to do with Greenstone's support for RSS. Committing Dr Bainbridge's code which was already working for windows. This has now been tested on Linux, where it can be got to work with changes to zextra.dm and base.dm and if the rss-items.rdf file generated by the update to BasePlugout is moved to the index folder). The next set of commits will make the way rssaction.cpp accesses the rss-items.rdf file independent of where the GS server is located, with changes to the protocol class.

File:
1 edited

Legend:

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

    r24901 r24958  
    136136fi
    137137AC_SUBST(USE_SQLITE)
     138
     139dnl
     140dnl Set use of RSS (enabled by default)
     141dnl
     142AC_ARG_ENABLE(rss, [  --disable-rss        Disable RSS support], USE_RSS=$enableval, USE_RSS=yes)
     143if test $USE_RSS = "yes" -o $USE_RSS = "1" ; then
     144  USE_RSS=1
     145  AC_DEFINE(USE_RSS,[])
     146else
     147  USE_RSS=0
     148fi
     149AC_SUBST(USE_RSS)
     150
    138151
    139152dnl
Note: See TracChangeset for help on using the changeset viewer.