diff --git a/cogl/Makefile.am b/cogl/Makefile.am index 0d97216a3..ce3ff0d3b 100644 --- a/cogl/Makefile.am +++ b/cogl/Makefile.am @@ -344,10 +344,6 @@ cogl_sources_c += \ $(srcdir)/winsys/cogl-winsys-egl.c \ $(srcdir)/winsys/cogl-winsys-stub.c endif -if SUPPORT_EGL_PLATFORM_FRUITY -cogl_sources_c += \ - $(srcdir)/winsys/cogl-winsys-fruity.c -endif if SUPPORT_EGL_PLATFORM_DRM_SURFACELESS cogl_sources_c += \ $(srcdir)/winsys/cogl-winsys-egl.c \ diff --git a/cogl/winsys/cogl-winsys-fruity.c b/cogl/winsys/cogl-winsys-fruity.c deleted file mode 100644 index 9c937e4bc..000000000 --- a/cogl/winsys/cogl-winsys-fruity.c +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Cogl - * - * An object oriented GL/GLES Abstraction/Utility Layer - * - * Copyright (C) 2007,2008,2009 Intel Corporation. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - * - * - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "cogl.h" - -CoglFuncPtr -_cogl_winsys_get_proc_address (const char *name) -{ - return NULL; -} - diff --git a/configure.ac b/configure.ac index 1ef4e406c..45bfe8c72 100644 --- a/configure.ac +++ b/configure.ac @@ -273,9 +273,7 @@ AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_X11, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_NULL, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_GDL, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_DRM_SURFACELESS, [false]) -AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_FRUITY, [false]) AM_CONDITIONAL(SUPPORT_OSX, [false]) -AM_CONDITIONAL(SUPPORT_FRUITY, [false]) AM_CONDITIONAL(SUPPORT_WIN32, [false]) AM_CONDITIONAL(SUPPORT_CEX100, [false]) AM_CONDITIONAL(SUPPORT_WAYLAND, [false])