diff --git a/src/examples/ecore/Makefile.am b/src/examples/ecore/Makefile.am index 379f5e0551..270943f523 100644 --- a/src/examples/ecore/Makefile.am +++ b/src/examples/ecore/Makefile.am @@ -1,11 +1,11 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = \ --I$(top_builddir)/src/lib/efl \ -I$(top_srcdir)/src/lib/eina \ -I$(top_srcdir)/src/lib/eet \ -I$(top_srcdir)/src/lib/emile \ -I$(top_srcdir)/src/lib/eo \ +-I$(top_srcdir)/src/lib/efl \ -I$(top_srcdir)/src/lib/evas \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_input \ @@ -20,6 +20,7 @@ AM_CPPFLAGS = \ -I$(top_builddir)/src/lib/eet \ -I$(top_builddir)/src/lib/emile \ -I$(top_builddir)/src/lib/eo \ +-I$(top_builddir)/src/lib/efl \ -I$(top_builddir)/src/lib/evas \ -I$(top_builddir)/src/lib/ecore \ -I$(top_builddir)/src/lib/ecore_file \ diff --git a/src/examples/ecore_avahi/Makefile.am b/src/examples/ecore_avahi/Makefile.am index 793f24b2c9..a6c7677576 100644 --- a/src/examples/ecore_avahi/Makefile.am +++ b/src/examples/ecore_avahi/Makefile.am @@ -1,13 +1,14 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = \ --I$(top_builddir)/src/lib/efl \ -I$(top_srcdir)/src/lib/eina \ -I$(top_srcdir)/src/lib/eo \ +-I$(top_srcdir)/src/lib/efl \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_avahi\ -I$(top_builddir)/src/lib/eina \ -I$(top_builddir)/src/lib/eo \ +-I$(top_builddir)/src/lib/efl \ -I$(top_builddir)/src/lib/ecore \ -I$(top_builddir)/src/lib/ecore_avahi \ @AVAHI_CLIENT_CFLAGS@ diff --git a/src/examples/eio/Makefile.am b/src/examples/eio/Makefile.am index 4f5dbcd88d..53b95fec48 100644 --- a/src/examples/eio/Makefile.am +++ b/src/examples/eio/Makefile.am @@ -1,7 +1,7 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = \ --I$(top_builddir)/src/lib/efl \ +-I$(top_srcdir)/src/lib/efl \ -I$(top_srcdir)/src/lib/eina \ -I$(top_srcdir)/src/lib/emile \ -I$(top_srcdir)/src/lib/eo \ @@ -11,6 +11,7 @@ AM_CPPFLAGS = \ -I$(top_builddir)/src/lib/eina \ -I$(top_builddir)/src/lib/emile \ -I$(top_builddir)/src/lib/eo \ +-I$(top_builddir)/src/lib/efl \ -I$(top_builddir)/src/lib/eet \ -I$(top_builddir)/src/lib/ecore \ -I$(top_builddir)/src/lib/eio diff --git a/src/examples/eolian_cxx/eolian_cxx_complex_types_01.cc b/src/examples/eolian_cxx/eolian_cxx_complex_types_01.cc index a66244fca6..04ed7fe62f 100644 --- a/src/examples/eolian_cxx/eolian_cxx_complex_types_01.cc +++ b/src/examples/eolian_cxx/eolian_cxx_complex_types_01.cc @@ -17,12 +17,14 @@ #include #include +#warning TEST CASE DISABLED: EVAS TYPES NO MORE IN EO API + +#if 0 #include #include #include #include - -#include "../../lib/evas/canvas/evas_grid.eo.hh" +#include namespace efl { namespace evas { // XXX only while we don't have namespaces in EFL using ::evas::canvas; @@ -118,4 +120,7 @@ int main() return 0; } +#else +int main() { abort(); } +#endif diff --git a/src/examples/eolian_cxx/eolian_cxx_eo_events_01.cc b/src/examples/eolian_cxx/eolian_cxx_eo_events_01.cc index 0ecbdda042..2ecdb03628 100644 --- a/src/examples/eolian_cxx/eolian_cxx_eo_events_01.cc +++ b/src/examples/eolian_cxx/eolian_cxx_eo_events_01.cc @@ -17,11 +17,13 @@ #include #include +#warning TEST CASE DISABLED: EVAS TYPES NO MORE IN EO API + +#if 0 #include #include - -#include "../../lib/evas/canvas/evas_text.eo.hh" -#include "../../lib/evas/canvas/evas_grid.eo.hh" +#include +#include namespace efl { namespace evas { using ::evas::canvas; @@ -101,3 +103,7 @@ int main() return 0; } +#else +int main() { abort(); } +#endif +