rawhide report: 20061115 changes

Matthias Clasen mclasen at redhat.com
Wed Nov 15 15:22:25 UTC 2006


On Wed, 2006-11-15 at 13:47 +0100, dragoran wrote:
> buildsys at redhat.com wrote:
> >
> > nautilus-2.16.2-6.fc7
> > ---------------------
> > * Tue Nov 14 2006 Matthias Clasen <mclasen at redhat.com> - 2.16.2-6
> > - Detect tracker dynamically, too
> >
> >   
> what happens when tracker and beagle are installed and running?
> which one will nautilus use?
> 

NautilusSearchEngine *
nautilus_search_engine_new (void)
{
        NautilusSearchEngine *engine;
        
#ifdef HAVE_TRACKER
        engine = nautilus_search_engine_tracker_new ();
        if (engine) {
                return engine;
        }
#endif

#ifdef HAVE_BEAGLE
        engine = nautilus_search_engine_beagle_new ();
        if (engine) {
                return engine;
        }
#endif
        engine = nautilus_search_engine_simple_new ();
        return engine;
}


So I assume it will prefer tracker, as long as it is installed. From my 
experiments, it looks like libtracker actually starts trackerd on
demand, so you'll have to uninstall tracker to get back to beagle.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/fedora-test-list/attachments/20061115/535adb14/attachment.htm>


More information about the fedora-test-list mailing list