Edgewall Software

Changes between Initial Version and Version 1 of TracOnSolaris


Ignore:
Timestamp:
Dec 2, 2005, 4:14:06 PM (18 years ago)
Author:
Christian Boos
Comment:

Pointer to Chris Miles article

Legend:

Unmodified
Added
Removed
Modified
  • TracOnSolaris

    v1 v1  
     1= Trac On Solaris =
     2
     3Trac should be able to work on any Unix system.
     4However, building all its dependencies can sometimes be challenging...
     5
     6Chris Miles has successfully build Trac [milestone:0.9.1] on Solaris.
     7He wrote a nice [http://systemsadmin.info/solaris/articles/building-trac-on-solaris explanation] of what he did.
     8
     9
     10I'll add one caveat though: I noticed he configured SQLite 3.2.7
     11with
     12{{{
     13./configure --prefix=/opt/sqlite --disable-tcl CFLAGS="-I/usr/local/include -L/usr/local/lib"
     14}}}
     15
     16It should have been:
     17{{{
     18./configure --prefix=/opt/sqlite --enable-threadsafe --disable-tcl CFLAGS="-I/usr/local/include -L/usr/local/lib"
     19}}}
     20
     21See PySqlite for more details.
     22
     23
     24Similarly, problems on AIX were reported when ClearSilver was not built
     25thread-safe (see [/trac/ticket/1764#change_15 #1764]).
     26
     27