File: python-binding-built-failed

package info (click to toggle)
zinnia 0.06-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,408 kB
  • sloc: cpp: 13,195; sh: 9,667; perl: 223; python: 200; makefile: 119; ansic: 70; ruby: 47
file content (18 lines) | stat: -rw-r--r-- 833 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Python binding built failed
 Python binding is built with the libzinnia in system path (should use the
 libzinnia in current build environment), and if libzinnia has never been
 installed, python binding will built failed.
Author: LI Daobing <lidaobing@debian.org>
Forwarded: https://sourceforge.net/tracker/?func=detail&aid=3019030&group_id=232651&atid=1086998
Last-Update: 2010-06-21

--- zinnia-0.06.orig/python/setup.py
+++ zinnia-0.06/python/setup.py
@@ -7,5 +7,7 @@ setup(name = "zinnia-python",
       py_modules=["zinnia"],
       ext_modules = [Extension("_zinnia",
                                ["zinnia_wrap.cxx",],
+                               include_dirs=[".."],
+                               library_dirs=["../.libs"],
                                libraries=["zinnia"])
                      ])