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/configure.in

    r23801 r24958  
    147147fi
    148148AC_SUBST(USE_SQLITE)
     149
     150dnl
     151dnl Set use of RSS (enabled by default)
     152dnl
     153AC_ARG_ENABLE(rss, [  --disable-rss        Disable RSS support], USE_RSS=$enableval, USE_RSS=yes)
     154if test $USE_RSS = "yes" -o $USE_RSS = "1" ; then
     155  USE_RSS=1
     156  AC_DEFINE(USE_RSS,[])
     157else
     158  USE_RSS=0
     159fi
     160AC_SUBST(USE_RSS)
     161
    149162
    150163dnl
Note: See TracChangeset for help on using the changeset viewer.