Changeset 213 for trunk/ports/python/py-hesiod/files
- Timestamp:
- 01/24/20 01:45:11 (5 years ago)
- Files:
-
- trunk/ports/python/py-hesiod (moved) (moved from trunk/ports/python/py27-hesiod)
- trunk/ports/python/py-hesiod/files/patch-setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ports/python/py-hesiod/files/patch-setup.py
r205 r213 2 2 +++ setup.py 2012-02-24 01:48:19.000000000 -0500 3 3 @@ -17,6 +17,8 @@ 4 ext_modules= [4 ext_modules=cythonize([ 5 5 Extension("_hesiod", 6 6 ["_hesiod.pyx"], 7 7 + include_dirs=['__PREFIX__/include'], 8 8 + library_dirs=['__PREFIX__/lib'], 9 libraries=["hesiod"]) 10 ],11 cmdclass= {"build_ext": build_ext}9 libraries=["hesiod"]), 10 ]), 11 )