components/python/pyscss/patches/pcre.include.patch
changeset 3998 5bd484384122
child 6819 dde264c0ac6e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/pyscss/patches/pcre.include.patch	Thu Mar 19 14:41:20 2015 -0700
@@ -0,0 +1,16 @@
+In-house patch to add the location of PCRE header files for building the
+C extension.  This patch is specific to Solaris and will not be
+submitted upstream.
+
+--- pyScss-1.2.1/setup.py.orig  2014-10-16 15:24:31.617255812 -0600
++++ pyScss-1.2.1/setup.py    2014-10-16 15:24:48.100507110 -0600
+@@ -27,7 +27,8 @@ speedups = Feature(
+         Extension(
+             'scss._speedups',
+             sources=['scss/src/_speedups.c', 'scss/src/block_locator.c', 'scss/src/scanner.c'],
+-            libraries=['pcre']
++            libraries=['pcre'],
++            include_dirs = ['/usr/include/pcre']
+         ),
+     ],
+ )