diff options
author | Badlop <badlop@process-one.net> | 2008-07-07 08:47:47 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2008-07-07 08:47:47 +0000 |
commit | 19a1ddfa44b7375baa6744ca4a4e7c829311e20f (patch) | |
tree | 11e0d305bf91ffa877b55ed1c83d76bfa5635254 /doc/guide.tex | |
parent | Removed non ascii characters in changelog (diff) |
* doc/guide.tex: Solaris Makefile install: use ginstall (thanks to
Jonathan Auer)(EJAB-649)
* doc/guide.html: Likewise
SVN Revision: 1412
Diffstat (limited to '')
-rw-r--r-- | doc/guide.tex | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/guide.tex b/doc/guide.tex index be40363b..57a227cf 100644 --- a/doc/guide.tex +++ b/doc/guide.tex @@ -405,6 +405,31 @@ gmake \end{verbatim} +\makesubsection{solaris}{Specific Notes for Sun Solaris} +\ind{install!solaris} + +You need to have \term{GNU install}, +but it isn't included in Solaris. +It can be easily installed if your Solaris system +is set up for \footahref{http://www.blastwave.org/}{blastwave.org} +package repository. +Make sure \term{/opt/csw/bin} is in your \term{PATH} and run: +\begin{verbatim} +pkg-get -i fileutils +\end{verbatim} + +If that program is called \term{ginstall}, +modify the \ejabberd{} \term{Makefile} script to suit your system, +for example: +\begin{verbatim} +cat Makefile | sed s/install/ginstall/ > Makefile.gi +\end{verbatim} +And finally install \ejabberd{} with: +\begin{verbatim} +gmake -f Makefile.gi ginstall +\end{verbatim} + + \makesubsection{windows}{Specific Notes for Microsoft Windows} \ind{install!windows} |