glib tests: Compile new thread tests on win32
authorRyan Lortie <desrt@desrt.ca>
Mon, 26 Sep 2011 13:05:53 +0000 (09:05 -0400)
committerRyan Lortie <desrt@desrt.ca>
Mon, 26 Sep 2011 13:05:53 +0000 (09:05 -0400)
They accidentally got added inside of a 'if OS_UNIX'.  Move them out.

glib/tests/Makefile.am

index 2846699..52125fb 100644 (file)
@@ -181,15 +181,6 @@ dataset_LDADD  = $(progs_ldadd)
 TEST_PROGS    += sort
 sort_LDADD     = $(progs_ldadd)
 
-if OS_UNIX
-
-TEST_PROGS    += unix
-unix_LDADD  = $(progs_ldadd)
-
-TEST_PROGS    += unix-nothreads
-unix_nothreads_SOURCES = unix.c
-unix_nothreads_LDADD  = $(progs_ldadd)
-
 noinst_PROGRAMS += atomic
 atomic_CFLAGS = $(INCLUDES)
 if HAVE_GCC
@@ -215,6 +206,15 @@ once_LDADD       = $(progs_ldadd)
 TEST_PROGS      += cond
 cond_LDADD       = $(progs_ldadd)
 
+if OS_UNIX
+
+TEST_PROGS    += unix
+unix_LDADD  = $(progs_ldadd)
+
+TEST_PROGS    += unix-nothreads
+unix_nothreads_SOURCES = unix.c
+unix_nothreads_LDADD  = $(progs_ldadd)
+
 #TEST_PROGS      += include
 #include_LDADD    = $(progs_ldadd)