Edgewall Software

Changes between Initial Version and Version 1 of TracOnSLES9ClearSilverFix


Ignore:
Timestamp:
Feb 16, 2006, 7:25:24 PM (18 years ago)
Author:
anonymous
Comment:

Initial content

Legend:

Unmodified
Added
Removed
Modified
  • TracOnSLES9ClearSilverFix

    v1 v1  
     1= Getting ClearSilver 0.10.2 to Build on SLES9 64-bit =
     2
     3I used clearsilver-0.10.2, and found that there were problems with
     4the {{{configure}}} script.
     5
     6 * It would only look for {{{/usr/lib/python2.3}}}, while the proper
     7   path is {{{/usr/lib64/python2.3}}}.
     8 * It would not set {{{PYTHON_SITE}}} correctly, because of an
     9   apparent typo.
     10
     11The attached patch should fix both of these problems.  It should only
     12be used on a 64-bit version, however, since the {{{lib64}}} is
     13hard-coded.
     14
     15So, the way I got it to build properly was as follows:
     16
     17{{{
     18tar xvfz clearsilver-0.10.2.tar.gz
     19chown -R me:mygroup clearsilver-0.10.2
     20cd clearsilver-0.10.2
     21patch configure clearsilver-0.10.2-configure.diff
     22./configure --disable-apache --disable-perl --disable-ruby \
     23            --disable-csharp --disable-java --enable-gettext \
     24            --with-python=/usr/bin/python
     25make
     26sudo make install
     27}}}