diff -urp gobject-introspection-1.36.0/giscanner/dumper.py gobject-introspection-1.36.0-uclibc/giscanner/dumper.py --- gobject-introspection-1.36.0/giscanner/dumper.py 2013-02-23 10:40:08.000000000 +0000 +++ gobject-introspection-1.36.0-uclibc/giscanner/dumper.py 2013-12-29 01:43:52.000000000 +0000 @@ -89,8 +89,10 @@ class DumpCompiler(object): # Enable the --msvc-syntax pkg-config flag when # the Microsoft compiler is used # (This is the other way to check whether Visual C++ is used subsequently) - if 'cl' in self._compiler_cmd: - self._pkgconfig_msvc_flags = '--msvc-syntax' + if 'clang' not in self._compiler_cmd: + if 'uclibc' not in self._compiler_cmd: + if 'cl' in self._compiler_cmd: + self._pkgconfig_msvc_flags = '--msvc-syntax' self._uninst_srcdir = os.environ.get( 'UNINSTALLED_INTROSPECTION_SRCDIR') self._packages = ['gio-2.0 gmodule-2.0'] Only in gobject-introspection-1.36.0-uclibc/giscanner: dumper.py~