Fix the build

This commit is contained in:
Matthias Clasen 2011-11-19 17:57:08 -05:00
parent e49fb9f2ac
commit 5e11bf18d5

View File

@ -22,20 +22,14 @@
#include "config.h"
#include "gtksearchengine.h"
#include "gtksearchenginebeagle.h"
#include "gtksearchenginesimple.h"
#include "gtksearchenginetracker.h"
#include "gtksearchenginequartz.h"
#include <gdk/gdk.h> /* for GDK_WINDOWING_QUARTZ */
#ifndef G_OS_WIN32 /* Beagle and tracker are not ported
* to Windows, as far as I know.
*/
#define HAVE_BEAGLE 1
#ifndef G_OS_WIN32 /* No tracker on Windows */
#define HAVE_TRACKER 1
#endif
enum
@ -121,12 +115,6 @@ _gtk_search_engine_new (void)
return engine;
#endif
#ifdef HAVE_BEAGLE
engine = _gtk_search_engine_beagle_new ();
if (engine)
return engine;
#endif
#ifdef GDK_WINDOWING_QUARTZ
engine = _gtk_search_engine_quartz_new ();
if (engine)