Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 497492
Collapse All | Expand All

(-)gobject-introspection-1.36.0/giscanner/dumper.py (-2 / +4 lines)
Lines 89-96 class DumpCompiler(object): Link Here
89
        # Enable the --msvc-syntax pkg-config flag when
89
        # Enable the --msvc-syntax pkg-config flag when
90
        # the Microsoft compiler is used
90
        # the Microsoft compiler is used
91
        # (This is the other way to check whether Visual C++ is used subsequently)
91
        # (This is the other way to check whether Visual C++ is used subsequently)
92
        if 'cl' in self._compiler_cmd:
92
        if 'clang' not in self._compiler_cmd:
93
            self._pkgconfig_msvc_flags = '--msvc-syntax'
93
            if 'uclibc' not in self._compiler_cmd:
94
                if 'cl' in self._compiler_cmd:
95
                    self._pkgconfig_msvc_flags = '--msvc-syntax'
94
        self._uninst_srcdir = os.environ.get(
96
        self._uninst_srcdir = os.environ.get(
95
            'UNINSTALLED_INTROSPECTION_SRCDIR')
97
            'UNINSTALLED_INTROSPECTION_SRCDIR')
96
        self._packages = ['gio-2.0 gmodule-2.0']
98
        self._packages = ['gio-2.0 gmodule-2.0']

Return to bug 497492