components/python/pyscss/patches/pcre.include.patch
branchs11u2-sru
changeset 4156 4b1def16fe9b
child 6819 dde264c0ac6e
equal deleted inserted replaced
4146:097063f324c0 4156:4b1def16fe9b
       
     1 In-house patch to add the location of PCRE header files for building the
       
     2 C extension.  This patch is specific to Solaris and will not be
       
     3 submitted upstream.
       
     4 
       
     5 --- pyScss-1.2.1/setup.py.orig  2014-10-16 15:24:31.617255812 -0600
       
     6 +++ pyScss-1.2.1/setup.py    2014-10-16 15:24:48.100507110 -0600
       
     7 @@ -27,7 +27,8 @@ speedups = Feature(
       
     8          Extension(
       
     9              'scss._speedups',
       
    10              sources=['scss/src/_speedups.c', 'scss/src/block_locator.c', 'scss/src/scanner.c'],
       
    11 -            libraries=['pcre']
       
    12 +            libraries=['pcre'],
       
    13 +            include_dirs = ['/usr/include/pcre']
       
    14          ),
       
    15      ],
       
    16  )