= Trac On Solaris = Trac should be able to work on any Unix system. However, building all its dependencies can sometimes be challenging... Chris Miles has successfully build Trac [milestone:0.9.1] on Solaris. He wrote a nice [http://systemsadmin.info/solaris/articles/building-trac-on-solaris explanation] of what he did. I'll add one caveat though: I noticed he configured SQLite 3.2.7 with {{{ ./configure --prefix=/opt/sqlite --disable-tcl CFLAGS="-I/usr/local/include -L/usr/local/lib" }}} It should have been: {{{ ./configure --prefix=/opt/sqlite --enable-threadsafe --disable-tcl CFLAGS="-I/usr/local/include -L/usr/local/lib" }}} See PySqlite for more details. Similarly, problems on AIX were reported when ClearSilver was not built thread-safe (see [/trac/ticket/1764#change_15 #1764]).