From a8c55b5a3356f12d613b3d8e44c10182bbdecbb5 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Thu, 9 Jan 2014 10:17:14 +0900 Subject: [PATCH] ecore: don't build Unix specific example on Windows. --- ecore/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ecore/Makefile.am b/ecore/Makefile.am index 9edeb1fc..34f6fd87 100644 --- a/ecore/Makefile.am +++ b/ecore/Makefile.am @@ -33,7 +33,6 @@ EXTRA_PROGRAMS = \ ecore_animator_example \ ecore_client_bench \ ecore_con_client_example \ -ecore_con_client_simple_example \ ecore_con_lookup_example \ ecore_con_server_example \ ecore_con_server_http_example \ @@ -67,6 +66,10 @@ ecore_time_functions_example \ ecore_timer_example \ ecore_getopt_example +if ! HAVE_WINDOWS +EXTRA_PROGRAMS += ecore_con_client_simple_example +endif + ECORE_COMMON_LDADD = \ $(top_builddir)/src/lib/ecore/libecore.la \ $(top_builddir)/src/lib/eo/libeo.la \