summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTor Lillqvist <tml@src.gnome.org>1999-07-12 23:11:27 +0000
committerTor Lillqvist <tml@src.gnome.org>1999-07-12 23:11:27 +0000
commitda87b1ac8505eacf293b9dfc985e5ae93a82a4b7 (patch)
tree2d0aecfae2fedcc105ff54440e96c7bc512accd4 /tests
parent4982cdbe7ee3494e164502e0574376fea278b807 (diff)
downloadglib-da87b1ac8505eacf293b9dfc985e5ae93a82a4b7.tar.gz
Correct URL for mingw runtime sources.
* README.win32: Correct URL for mingw runtime sources. * build-dll: Combine commands with &&. * glib.h: Map also rmdir() and hypot() for MSVCRT library. * makefile.cygwin.in * tests/makefile.cygwin.in: New DLL naming style. GCC-compiled DLLs are now called *.gcc.dll, to avoid binary incompatibilities with MSVC-compiled versions. * makefile.msc.in: Cosmetics.
Diffstat (limited to 'tests')
-rw-r--r--tests/makefile.cygwin.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/makefile.cygwin.in b/tests/makefile.cygwin.in
index 5e944a173..b2aa96766 100644
--- a/tests/makefile.cygwin.in
+++ b/tests/makefile.cygwin.in
@@ -37,7 +37,7 @@ all : $(TESTS)
.c.exe :
$(CC) $(CFLAGS) -c $<
- $(CC) $(CFLAGS) -o $@ $< -L.. -lglib-$(GLIB_VER) -lgthread-$(GLIB_VER)
+ $(CC) $(CFLAGS) -o $@ $< -L.. -lglib-$(GLIB_VER).gcc -lgthread-$(GLIB_VER).gcc
check: all
@for P in $(TESTS) ; do echo $$P; ./$$P; done