summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2016-11-23 11:12:00 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2016-11-23 11:12:00 +0800
commit673036d609b2c87abdef9149a2edfedb4861e65e (patch)
treef85b285d7f5c9b593b8163ee6c24467a8801df8b /build
parent18a33f72db6a410606674d8d53fb2dadb706091d (diff)
downloadglib-673036d609b2c87abdef9149a2edfedb4861e65e.tar.gz
Visual Studio builds: Update gio-2.0.pc generation
We don't have libmount on Windows, so just make the entry for it blank.
Diffstat (limited to 'build')
-rw-r--r--build/win32/glibpc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/win32/glibpc.py b/build/win32/glibpc.py
index 973db1a3f..b04dc2433 100644
--- a/build/win32/glibpc.py
+++ b/build/win32/glibpc.py
@@ -15,7 +15,7 @@ from pc_base import BasePCItems
def main(argv):
base_pc = BasePCItems()
-
+
base_pc.setup(argv)
pkg_replace_items = {'@G_THREAD_CFLAGS@': '',
'@G_THREAD_LIBS@': '',
@@ -73,6 +73,7 @@ def main(argv):
'@ZLIB_LIBS@': '-lzlib1',
'@NETWORK_LIBS@': '-lws2_32',
'@SELINUX_LIBS@': '',
+ '@LIBMOUNT_LIBS@': '',
'glib-compile-schemas': '${exec_prefix}/bin/glib-compile-schemas',
'glib-compile-resources': '${exec_prefix}/bin/glib-compile-resources',
'gdbus-codegen': 'python ${exec_prefix}/bin/gdbus-codegen'}