live-g-file won't build on Windows, too Unix-specific.
authorTor Lillqvist <tml@novell.com>
Thu, 7 Feb 2008 09:56:25 +0000 (09:56 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Thu, 7 Feb 2008 09:56:25 +0000 (09:56 +0000)
2008-02-07  Tor Lillqvist  <tml@novell.com>

* tests/Makefile.am (TEST_PROGS): live-g-file won't build on
Windows, too Unix-specific.

svn path=/trunk/; revision=6478

gio/ChangeLog
gio/tests/Makefile.am

index 00c580b796c5f9502398873d1280055339077ffe..6eaa960fca39c3351a7bfa139b6be2e59b716733 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-07  Tor Lillqvist  <tml@novell.com>
+
+       * tests/Makefile.am (TEST_PROGS): live-g-file won't build on
+       Win32, too Unix-specific.
+
 2008-02-06  Behdad Esfahbod  <behdad@gnome.org>
 
        * pltcheck.sh: Skip g_bit_*().  Inline functions may end up with
index c4feeae2916777ffcb7f58c115db1e00963a10bc..6f3c65025f263b1e238185aae75a9002f4ab2b3a 100644 (file)
@@ -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)