diff options
author | Vladimir Vukicevic <vladimir@pobox.com> | 2006-09-09 23:29:17 -0700 |
---|---|---|
committer | U-CYCLONE\Vladimir Vukicevic <vladimir@cyclone.(none)> | 2006-09-09 23:29:17 -0700 |
commit | 00d5a2ed48d999a29708d4750c034bbf1b91de12 (patch) | |
tree | d36db3348548bd1818089194ec3e088329e5e097 /pixman | |
parent | d78fd375d3f99a5bb4a4799ce5d90a2a946a854c (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.win32 | 2 |
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 \ |