summaryrefslogtreecommitdiff
path: root/pixman
diff options
context:
space:
mode:
authorVladimir Vukicevic <vladimir@pobox.com>2006-09-09 23:29:17 -0700
committerU-CYCLONE\Vladimir Vukicevic <vladimir@cyclone.(none)>2006-09-09 23:29:17 -0700
commit00d5a2ed48d999a29708d4750c034bbf1b91de12 (patch)
treed36db3348548bd1818089194ec3e088329e5e097 /pixman
parentd78fd375d3f99a5bb4a4799ce5d90a2a946a854c (diff)
[win32] Makefile.win32: use correct (/MD) runtime library flag everywhere
There was a bad mix of LIBCMT (the static runtime lib) and MSVCRT (the dynamic one) before, because LIBCMT is the default. This specifies /MD everywhere.
Diffstat (limited to 'pixman')
-rw-r--r--pixman/src/Makefile.win322
1 files changed, 1 insertions, 1 deletions
diff --git a/pixman/src/Makefile.win32 b/pixman/src/Makefile.win32
index 8f9ad165..ec83f731 100644
--- a/pixman/src/Makefile.win32
+++ b/pixman/src/Makefile.win32
@@ -1,5 +1,5 @@
CC = cl
-CFLAGS = /nologo /Zi /O2 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
+CFLAGS = /nologo /MD /Zi /O2 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
SOURCES = \
fbcompose.c \