You probably need to install the VC++ runtime redistributables. The links to them are here.
I've been able to compile and run Enso by using /LD as a compiler flag. This links dynamically to the MS Visual C++ runtime, and seems to allow you to get away without a manifest.
If you're using SCons, see the diff file here: http://paste2.org/p/69732
update I've downloaded python2.6 and VS C++ express edition 2008 and the problem with the msvcr80.dll is gone ( I assume because Python and VSC++2008xe use msvscr90.dll)
I've compile with /LD and all the changes listed here: http://paste2.org/p/69732
And now the problem follows:
INFO:root:Skipping provider enso.platform.osx.
INFO:root:Skipping provider enso.platform.linux.
INFO:root:Added provider enso.platform.win32.
INFO:root:Obtained interface 'input' from provider 'enso.platform.win32'.
Traceback (most recent call last):
File "scripts\run_enso.py", line 23, in <module>
enso.run()
File "C:\oreyes\apps\enso\enso-comunity\enso\__init__.py", line 41, in run
from enso.quasimode import Quasimode
File "C:\oreyes\apps\enso\enso-comunity\enso\quasimode\__init__.py", line 62, in <module>
from enso.quasimode.window import TheQuasimodeWindow
File "C:\oreyes\apps\enso\enso-comunity\enso\quasimode\window.py", line 65, in <module>
from enso.quasimode.linewindows import TextWindow
File "C:\oreyes\apps\enso\enso-comunity\enso\quasimode\linewindows.py", line 44, in <module>
from enso import cairo
File "C:\oreyes\apps\enso\enso-comunity\enso\cairo.py", line 3, in <module>
__cairoImpl = enso.providers.getInterface( "cairo" )
File "C:\oreyes\apps\enso\enso-comunity\enso\providers.py", line 137, in getInterface
interface = provider.provideInterface( name )
File "C:\oreyes\apps\enso\enso-comunity\enso\platform\win32\__init__.py", line 61, in provideInterface
import enso.platform.win32.cairo
File "C:\oreyes\apps\enso\enso-comunity\enso\platform\win32\cairo\__init__.py", line 1, in <module>
from _cairo import *
ImportError: No module named _cairo
Looking at your update, it looks like you need to install Pycairo since you're missing the _cairo module installed as part of Pycairo. See the Pycairo downloads page for instructions on how to obtain/install binaries for Windows.