Index: trunk/setup.py
===================================================================
--- trunk/setup.py	(revision 32)
+++ trunk/setup.py	(revision 50)
@@ -74,5 +74,6 @@
         except CompileError:
             self._clean(src, obj)
-            raise CompileError, "syck.h is not found"
+            raise CompileError, "syck.h is not found, " \
+                    "try to uncomment the include_dirs parameter in setup.cfg"
         log.info("checking for libsyck.a")
         try:
@@ -80,5 +81,6 @@
         except LinkError:
             self._clean(src, obj, prog)
-            raise LinkError, "libsyck.a is not found"
+            raise LinkError, "libsyck.a is not found, " \
+                    "try to uncomment the library_dirs parameter in setup.cfg"
         if self.compiler.exe_extension:
             prog += self.compiler.exe_extension
