Bug 16112

Summary: [PATCH] Fix win32 'python setup.py ...' build -- use double quotes
Product: pycairo Reporter: Kirill Smelkov <kirr>
Component: generalAssignee: Steve Chaplin <d74n5pohf9>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: medium    
Version: unspecified   
Hardware: Other   
OS: All   
Whiteboard:
i915 platform: i915 features:
Attachments: patch

Description Kirill Smelkov 2008-05-27 04:45:55 UTC
When on win32, it makes a difference, whether '...' or "..." is used in shell,
consider:

  C:\>pkg-config --print-errors 'cairo >= 1.4.12'
  Package 'cairo was not found in the pkg-config search path.
  Perhaps you should add the directory containing `'cairo.pc'
  to the PKG_CONFIG_PATH environment variable
  No package ''cairo' found

v.s.

  C:\>pkg-config --print-errors "cairo >= 1.4.12"
  C:\>pkg-config --print-errors "cairo >= 1.8.12"
  Requested 'cairo >= 1.8.12' but version of cairo is 1.6.4


So it is important to use double quotes.


/patch attached/
Comment 1 Kirill Smelkov 2008-05-27 04:47:21 UTC
Created attachment 16761 [details] [review]
patch
Comment 2 Steve Chaplin 2008-07-16 16:25:30 UTC
Patch (modified) applied to CVS, thanks.
Comment 3 Kirill Smelkov 2008-07-20 23:52:11 UTC
Thanks!

Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.