1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-
-
-
+
+
+
-
-
-
-
-
|
<h1>Notes on how the precompiled binaries were constructed</h1>
<h2>Linux</h2>
<ul>
<li>On the www.fossil-scm.org server in the /home/www/fossil/b2 directory</li>
<li>fossil clean -f</li>
<li>./configure --static</li>
<li>On the machine named "bella", cd to ~/fossil/static</li>
<li>rm -rf *</li>
<li>../m1/configure --static --disable-fusefs</li>
<li>Edit Makefile. Change "-O2" to "-Os -m32"</li>
<li>make</li>
<li>strip fossil</li>
</ul>
<p>The SSL libraries for the 64-bit Ubuntu machine above were set up using:
<ul>
<li>apt-get install openssl libssl-dev libssl-dev:i386
</ul>
<h2>OpenBSD</h2>
<ul>
<li>On the devio.us machine in the ~/fossil/m1 directory</li>
<li>fossil clean -x</li>
<li>./configure</li>
<li>make</li>
|