Open GoogleCodeExporter opened 8 years ago
just to get it to import I commented this out:
clearsilver-0.10.5$ diff cs/csparse_before.c cs/csparse.c
4148c4148
< { "string.crc", 1, _builtin_str_crc},
---
> // { "string.crc", 1, _builtin_str_crc},
not a fix, but perhaps a work around.
Original comment by brianh...@gmail.com
on 16 Aug 2012 at 9:06
also, just a note that my system is 64bit...
Original comment by brianh...@gmail.com
on 17 Aug 2012 at 2:02
I found this patch fixing the import error (seems to be a quite old problem:
https://bugzilla.altlinux.org/show_bug.cgi?id=11798#c2 )
--- clearsilver-0.10.5/python/setup.py 2007-07-12 04:43:33.000000000 +0200
+++ b/python/setup.py 2013-12-20 17:15:10.148975435 +0100
@@ -56,7 +56,7 @@ for line in string.split(rules, "\n"):
if lib not in LIBRARIES:
inserted.append(lib)
sys.stderr.write("adding lib %s\n" % lib)
- LIBRARIES = inserted + LIBRARIES
+ LIBRARIES = LIBRARIES + inserted
elif var == "LDFLAGS":
matches = re.findall("-L(\S+)", val)
inserted = []
Original comment by Alexande...@googlemail.com
on 20 Dec 2013 at 4:24
Original issue reported on code.google.com by
brianh...@gmail.com
on 16 Aug 2012 at 8:47