From d95222e56f79c0602ab542300e0adf0c415cfaee Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 1 Jun 2012 12:20:24 +0300 Subject: compositor-android: fix build flags When adding a C++ file to the build, I forgot to set CXXFLAGS for it, triggering the error: android-framebuffer.h:26:21: fatal error: EGL/egl.h: No such file or directory I never hit this, because I have EGL headers installed also in my system, rather than only in $prefix. Fix this by setting the CXXFLAGS for the android backend. Reported-by: Scott Moreau Reported-by: Tiago Vignatti Signed-off-by: Pekka Paalanen --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.am b/src/Makefile.am index ea81d33..fd8aa9b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -130,6 +130,7 @@ android_backend = android-backend.la android_backend_la_LDFLAGS = -module -avoid-version android_backend_la_LIBADD = $(COMPOSITOR_LIBS) android_backend_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) +android_backend_la_CXXFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) android_backend_la_SOURCES = \ compositor-android.c \ android-framebuffer.cpp \ -- cgit v1.2.3