Petr Gajdos
8a4184e1e2
- Fixes per Petr and Tomas - Added make check tests - Added python-tre wrapper - Used updated source from https://github.com/laurikari/tre/ OBS-URL: https://build.opensuse.org/request/show/231198 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tre?expand=0&rev=13
22 lines
851 B
Diff
22 lines
851 B
Diff
diff -up tre-0.8.0/python/setup.py.in.chicken tre-0.8.0/python/setup.py.in
|
|
--- tre-0.8.0/python/setup.py.in.chicken 2009-09-20 09:51:01.000000000 +0200
|
|
+++ tre-0.8.0/python/setup.py.in 2009-09-20 15:43:45.000000000 +0200
|
|
@@ -10,7 +10,8 @@ import shutil
|
|
|
|
version = "@TRE_VERSION@"
|
|
data_files = []
|
|
-include_dirs = ["../lib"]
|
|
+include_dirs = ["../include"]
|
|
+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
|
|
),
|
|
],
|