Difference between revisions of "Apertium on Mac OS X (Local)"
Jump to navigation
Jump to search
(→general) |
|||
Line 33: | Line 33: | ||
# Follow [[Minimal installation from SVN]], using <code>$HOME/Local</code> as your $prefix. |
# Follow [[Minimal installation from SVN]], using <code>$HOME/Local</code> as your $prefix. |
||
# See [[Installation_troubleshooting]] if you have problems. |
# See [[Installation_troubleshooting]] if you have problems. |
||
==Troubleshooting== |
|||
===Undefined macro #2=== |
|||
;Problem |
|||
<pre> |
|||
$ sh autogen.sh --prefix=$HOME/Local/ |
|||
- libtoolize. |
|||
You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'. |
|||
- aclocal. |
|||
- autoconf. |
|||
configure.ac:109: error: possibly undefined macro: dnl |
|||
If this token and others are legitimate, please use m4_pattern_allow. |
|||
See the Autoconf documentation. |
|||
</pre> |
|||
;Solution |
|||
Re-run the <code>autogen.sh</code> command until it works. |
|||
===syntax error near unexpected token=== |
|||
; Problem |
|||
The <code>configure</code> script cannot find the <code>PKG_CHECK_MODULES</code> macro |
|||
<pre> |
|||
checking for pkg-config... $HOME/Local/bin//pkg-config |
|||
./configure: line 19355: syntax error near unexpected token `LTTOOLBOX,' |
|||
./configure: line 19355: `PKG_CHECK_MODULES(LTTOOLBOX, dnl' |
|||
</pre> |
|||
or |
|||
<pre> |
|||
checking for gawk... (cached) awk |
|||
./configure: line 2183: syntax error near unexpected token `APERTIUM,' |
|||
./configure: line 2183: ` PKG_CHECK_MODULES(APERTIUM, apertium-1.0 >= 1.0.0,' |
|||
</pre> |
|||
;Solution |
|||
Run: |
|||
<pre> |
|||
$ aclocal -I $HOME/Local/share/aclocal |
|||
$ automake -a |
|||
$ autoconf |
|||
$ autoheader |
|||
$ automake -a |
|||
$ ./configure --prefix=$HOME/Local/ |
|||
</pre> |
|||
===You don't have cg-proc installed=== |
|||
Apertium for Welsh/Breton/Norwegian/Sámi/… now requires this constraint grammar package to help with disambiguation. For install instructions go [http://wiki.apertium.org/wiki/Apertium_and_Constraint_Grammar#Installing_VISL_CG3 here]. |
|||
== See also== |
== See also== |
Revision as of 08:04, 21 November 2013
Contents |
This page gives instructions on compiling Apertium on Mac OS X, it will presume you are installing into a directory called Local
inside your home directory (your home directory will be in /Users/<your user name>
). This is slightly more complicated than Apertium on Mac OS X (System), but more contained and doesn't require root.
The procedure
First, we create the directories to hold our source and the installed binaries. Then we export these environment variables so that binaries and libraries from your local installation are taken before those from the system installation.
mkdir Local mkdir Source PATH=$HOME/Local/bin/:$PATH export PATH PKG_CONFIG_PATH=$HOME/Local/lib/pkgconfig export PKG_CONFIG_PATH LD_LIBRARY_PATH=$HOME/Local/lib export LD_LIBRARY_PATH cd Source
Also, put this in your ~/.bashrc so you don't have to paste it in every time you open a new terminal:
PATH=$HOME/Local/bin/:$PATH export PATH PKG_CONFIG_PATH=$HOME/Local/lib/pkgconfig export PKG_CONFIG_PATH LD_LIBRARY_PATH=$HOME/Local/lib export LD_LIBRARY_PATH
Now the standard steps:
- Install the Prerequisites for Mac OS X.
- Follow Minimal installation from SVN, using
$HOME/Local
as your $prefix. - See Installation_troubleshooting if you have problems.
See also
- Apertium on Mac OS X (System) — for installation in the main system.