Changeset 50
Legend:
- Unmodified
- Added
- Removed
-
trunk/setup.cfg
r49 r50 5 5 6 6 # List of directories to search for 'syck.h' (separated by ':'). 7 include_dirs=/usr/local/include7 #include_dirs=/usr/local/include:../../include 8 8 9 9 # List of directories to search for 'libsyck.a' (separated by ':'). 10 library_dirs=/usr/local/lib10 #library_dirs=/usr/local/lib:../../lib 11 11 -
trunk/setup.py
r32 r50 74 74 except CompileError: 75 75 self._clean(src, obj) 76 raise CompileError, "syck.h is not found" 76 raise CompileError, "syck.h is not found, " \ 77 "try to uncomment the include_dirs parameter in setup.cfg" 77 78 log.info("checking for libsyck.a") 78 79 try: … … 80 81 except LinkError: 81 82 self._clean(src, obj, prog) 82 raise LinkError, "libsyck.a is not found" 83 raise LinkError, "libsyck.a is not found, " \ 84 "try to uncomment the library_dirs parameter in setup.cfg" 83 85 if self.compiler.exe_extension: 84 86 prog += self.compiler.exe_extension
Note: See TracChangeset
for help on using the changeset viewer.
