mention new build system in ChangeLog and
README.html downgrade build dependencies to automake 1.8
This commit is contained in:
parent
5081616aca
commit
76d6649d66
|
@ -1,5 +1,6 @@
|
||||||
Gajim 0.11 (XX October 2006)
|
Gajim 0.11 (XX October 2006)
|
||||||
|
* New build system, using GNU autotools. See README.
|
||||||
|
* Support for link-local messaging via zeroconf/bonjour
|
||||||
* Intoducing View Menu (GNOME HIG)
|
* Intoducing View Menu (GNOME HIG)
|
||||||
* GNOME Keyring Support (if GNOME keyring available, manage passwords and save them in an encrypted file).
|
* GNOME Keyring Support (if GNOME keyring available, manage passwords and save them in an encrypted file).
|
||||||
* Ability to now hide the Transports group
|
* Ability to now hide the Transports group
|
||||||
|
|
23
README.html
23
README.html
|
@ -60,9 +60,10 @@ If you still have problems compiling, you may want to try removing the gtk1 seri
|
||||||
<h2>Installation Procedure</h2>
|
<h2>Installation Procedure</h2>
|
||||||
<ol>
|
<ol>
|
||||||
<li>tar jxvf gajim-version.tar.bz2</li>
|
<li>tar jxvf gajim-version.tar.bz2</li>
|
||||||
</li>cd gajim</li>
|
<li>cd gajim</li>
|
||||||
</li>make (builds all modules)</li>
|
<li>./configure</li>
|
||||||
</li>su -c make install</li>
|
<li>make (builds all modules)</li>
|
||||||
|
<li>su -c make install</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -81,8 +82,22 @@ Just do <em>gajim</em> or you can run Gajim from your GNOME/XFCE/KDE/whatever me
|
||||||
|
|
||||||
or if you didn't 'make install' you can also run from gajim folder with
|
or if you didn't 'make install' you can also run from gajim folder with
|
||||||
<em>./launch.sh</em>
|
<em>./launch.sh</em>
|
||||||
|
<hr>
|
||||||
|
<h3>Note for svn users</h3>
|
||||||
|
You will need GNU autotools in order to install Gajim from svn. This includes:
|
||||||
|
<ul>
|
||||||
|
<li>automake >= 1.8 </li>
|
||||||
|
<li>autoconf >= 2.59 </li>
|
||||||
|
<li>libtool</li>
|
||||||
|
<li>intltool-0.35.0 </li>
|
||||||
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
steps to compile gajim:
|
||||||
|
<pre>
|
||||||
|
$ sh autogen.sh
|
||||||
|
$ ./configure
|
||||||
|
$ make
|
||||||
|
</pre>
|
||||||
<h2>Uninstallation Procedure</h2>
|
<h2>Uninstallation Procedure</h2>
|
||||||
<p>
|
<p>
|
||||||
su -c make uninstall<br/>
|
su -c make uninstall<br/>
|
||||||
|
|
|
@ -33,8 +33,7 @@ except ImportError:
|
||||||
If you start gajim from svn:
|
If you start gajim from svn:
|
||||||
* Make sure you have GNU autotools installed.
|
* Make sure you have GNU autotools installed.
|
||||||
This includes the following packages:
|
This includes the following packages:
|
||||||
aclocal-1.9
|
automake >= 1.8
|
||||||
automake-1.9
|
|
||||||
autoconf >= 2.59
|
autoconf >= 2.59
|
||||||
intltool-0.35
|
intltool-0.35
|
||||||
libtool
|
libtool
|
||||||
|
|
Loading…
Reference in New Issue