From: Tor Lillqvist Date: Thu, 7 Feb 2008 09:56:25 +0000 (+0000) Subject: live-g-file won't build on Windows, too Unix-specific. X-Git-Tag: GLIB_2_15_5~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7077781cc36b17ef8ca402db6b992fb73a7d69a9;p=platform%2Fupstream%2Fglib.git live-g-file won't build on Windows, too Unix-specific. 2008-02-07 Tor Lillqvist * tests/Makefile.am (TEST_PROGS): live-g-file won't build on Windows, too Unix-specific. svn path=/trunk/; revision=6478 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 00c580b..6eaa960 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-02-07 Tor Lillqvist + + * tests/Makefile.am (TEST_PROGS): live-g-file won't build on + Win32, too Unix-specific. + 2008-02-06 Behdad Esfahbod * pltcheck.sh: Skip g_bit_*(). Inline functions may end up with diff --git a/gio/tests/Makefile.am b/gio/tests/Makefile.am index c4feeae..6f3c650 100644 --- a/gio/tests/Makefile.am +++ b/gio/tests/Makefile.am @@ -16,7 +16,11 @@ progs_ldadd = \ $(top_builddir)/gio/libgio-2.0.la -TEST_PROGS += memory-input-stream g-file g-file-info data-input-stream data-output-stream live-g-file +TEST_PROGS += memory-input-stream g-file g-file-info data-input-stream data-output-stream + +if OS_UNIX +TEST_PROGS += live-g-file +endif memory_input_stream_SOURCES = memory-input-stream.c memory_input_stream_LDADD = $(progs_ldadd)