From 77755a77dcd73a32806707825ee9e861725bc84a Mon Sep 17 00:00:00 2001 From: James Turk Date: Fri, 27 Mar 2015 16:37:38 -0400 Subject: [PATCH] update cjellyfish and define CJELLYFISH_PYTHON in build --- cjellyfish | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cjellyfish b/cjellyfish index 3f931b0..8696a5e 160000 --- a/cjellyfish +++ b/cjellyfish @@ -1 +1 @@ -Subproject commit 3f931b0c68b6e6bda6d6cd026103ed79d9be1e2a +Subproject commit 8696a5e01e6d8b6c3a58213f32920d301632b863 diff --git a/setup.py b/setup.py index b3b3c37..bdd93e0 100755 --- a/setup.py +++ b/setup.py @@ -82,7 +82,9 @@ def run_setup(build_c): 'cjellyfish/soundex.c', 'cjellyfish/metaphone.c', 'cjellyfish/nysiis.c', - 'cjellyfish/porter.c'])], + 'cjellyfish/porter.c'], + define_macros=[('CJELLYFISH_PYTHON', '1')], + )], cmdclass=dict(build_ext=ve_build_ext, test=TestCommand), packages=['jellyfish'], )