lhaのインストールメモ

投稿者: | 2012-09-05

lhaのインストールにハマったのでメモ。

lhaをインストールする際、./configureのみだと、makeの際に以下のエラーが出て正常にコンパイルできない。

undefined reference to `libiconv'
undefined reference to `libiconv_open'
undefined reference to `libiconv_close'

以下のように事前に環境変数を定義しておくと、無事makeが出来るようになる。

export LDFLAGS=-liconv
./configure