From fc485b765ac44cd3c87ce2f7adb359bcb8d560b9 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Thu, 9 Jan 2014 07:41:54 +0100 Subject: [PATCH] autotools: really don't build Unix specific example on Windows Signed-off-by: Cedric BAIL --- ecore/Makefile.am | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ecore/Makefile.am b/ecore/Makefile.am index 34f6fd87..914eb43c 100644 --- a/ecore/Makefile.am +++ b/ecore/Makefile.am @@ -33,6 +33,7 @@ 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 \ @@ -58,7 +59,6 @@ ecore_file_download_example \ ecore_idler_example \ ecore_imf_example \ ecore_job_example \ -ecore_pipe_simple_example \ ecore_poller_example \ ecore_server_bench \ ecore_thread_example \ @@ -66,10 +66,6 @@ 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 \ @@ -209,8 +205,11 @@ ecore_pipe_gstreamer_example_LDADD = $(ECORE_COMMON_LDADD) @GSTREAMER_LIBS@ ecore_pipe_gstreamer_example_CFLAGS = @GSTREAMER_CFLAGS@ endif +if ! HAVE_WINDOWS +EXTRA_PROGRAMS += ecore_pipe_simple_example ecore_pipe_simple_example_SOURCES = ecore_pipe_simple_example.c ecore_pipe_simple_example_LDADD = $(ECORE_COMMON_LDADD) +endif ecore_poller_example_SOURCES = ecore_poller_example.c ecore_poller_example_LDADD = $(ECORE_COMMON_LDADD)