22 lines
833 B
Diff
22 lines
833 B
Diff
|
diff -up tre-0.8.0/python/setup.py.chicken tre-0.8.0/python/setup.py
|
||
|
--- tre-0.8.0/python/setup.py.chicken 2009-09-20 09:51:01.000000000 +0200
|
||
|
+++ tre-0.8.0/python/setup.py 2009-09-20 15:43:45.000000000 +0200
|
||
|
@@ -10,7 +10,8 @@ import shutil
|
||
|
|
||
|
version = "0.8.0"
|
||
|
data_files = []
|
||
|
-include_dirs = ["../lib"]
|
||
|
+include_dirs = ["..", "../lib"]
|
||
|
+library_dirs = ["../lib/.libs"]
|
||
|
libraries = ["tre"]
|
||
|
|
||
|
if sys.platform == "win32":
|
||
|
@@ -31,6 +32,7 @@ setup(name = "tre",
|
||
|
sources = ["tre-python.c"],
|
||
|
define_macros = [("HAVE_CONFIG_H", None)],
|
||
|
include_dirs = include_dirs,
|
||
|
+ library_dirs = library_dirs,
|
||
|
libraries = libraries
|
||
|
),
|
||
|
],
|