summaryrefslogtreecommitdiff
path: root/test/pdiff
diff options
context:
space:
mode:
authorJeff Muizelaar <jmuizelaar@mozilla.com>2009-04-01 11:32:58 -0400
committerJeff Muizelaar <jmuizelaar@mozilla.com>2009-04-01 11:32:58 -0400
commit2d6336624c33e9c674c192b68eb501373a96dc87 (patch)
treebe3b296e2ac0cda6ec5939c944f927ac3cde68fd /test/pdiff
parent0f21893b0510a188439c2d8cd448bcfcf17ef8c6 (diff)
[test-win32] Fix static linking of the test suite.
Previously, the test suite needed to be dynamically linked to work.
Diffstat (limited to 'test/pdiff')
-rw-r--r--test/pdiff/Makefile.win322
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pdiff/Makefile.win32 b/test/pdiff/Makefile.win32
index 5e6680dd..851d3af6 100644
--- a/test/pdiff/Makefile.win32
+++ b/test/pdiff/Makefile.win32
@@ -16,4 +16,4 @@ pdiff.lib: $(OBJECTS)
lib -NOLOGO -OUT:$@ $(OBJECTS)
%.obj: %.c
- @$(CC) $(CFLAGS) -c -Fo"$@" $<
+ @$(CC) $(CFLAGS) -DCAIRO_WIN32_STATIC_BUILD=1 -c -Fo"$@" $<