051a76c155
* clutter/Makefile.am: * clutter/eglnative/Makefile.am: * clutter/eglnative/clutter-backend-egl.c: * clutter/eglnative/clutter-backend-egl.h: * clutter/eglnative/clutter-egl.h: * clutter/eglnative/clutter-event-egl.c: * clutter/eglnative/clutter-stage-egl.c: * clutter/eglnative/clutter-stage-egl.h: * clutter/eglx/Makefile.am: * clutter/eglx/clutter-backend-egl.c: * clutter/eglx/clutter-egl.h: * clutter/eglx/clutter-event-egl.c: * clutter/eglx/clutter-stage-egl.c: * configure.ac: Add a new 'native' EGL backend for non X based EGL's (i.e on framebuffer). Rename old backend to 'eglx' and namespace public funcs with this. * clutter/pango/pangoclutter-private.h: Add extra checks for expected defines.
20 lines
427 B
Makefile
20 lines
427 B
Makefile
libclutterincludedir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/clutter
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterEGL\" \
|
|
-I$(top_srcdir) \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(GCC_FLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libclutter-eglnative.la
|
|
|
|
libclutter_eglnative_la_SOURCES = \
|
|
clutter-backend-egl.h \
|
|
clutter-backend-egl.c \
|
|
clutter-event-egl.c \
|
|
clutter-stage-egl.h \
|
|
clutter-stage-egl.c
|