win64: glib DLL depends on libintl

This dependency was previously accidentally satisfied due to
the load order of modules (which recently changed).
This commit is contained in:
Matthew Flatt 2012-05-17 08:37:05 -06:00
parent 0695c63cb1
commit 3a46b5dd08

View File

@ -13,7 +13,10 @@
[(macosx)
(ffi-lib "libintl.8.dylib")
(ffi-lib "libglib-2.0.0.dylib")]
[(windows) (ffi-lib "libglib-2.0-0.dll")])
[(win32) (ffi-lib "libglib-2.0-0.dll")]
[(win64)
(ffi-lib "libintl-8.dll")
(ffi-lib "libglib-2.0-0.dll")])
(define-runtime-lib gmodule-lib
[(unix) (ffi-lib "libgmodule-2.0" '("0" ""))]