FreeBSDでもPOCO C++ライブラリ

バイナリportsもあるようなのですが,バージョンが最新じゃなかったのでソースを取ってきました.
POCO C++ Libraries - Downloads

# ./configure
Configured for FreeBSD
# make
"Makefile", line 7: Need an operator
"Makefile", line 9: Need an operator Unknown modifier ' '
"Makefile", line 10: Need an operator
"Makefile", line 11: Need an operator
"Makefile", line 12: Need an operator
"Makefile", line 14: Need an operator
"Makefile", line 15: Need an operator
"Makefile", line 16: Need an operator
"Makefile", line 18: Need an operator
"Makefile", line 19: Need an operator
"Makefile", line 20: Need an operator
Error expanding embedded variable.
#

このエラーは,アレですね.FreeBSDはmakeとgmakeが別だからです.

# ls -l /usr/bin/make
-r-xr-xr-x 1 root wheel 356312 1 7 2009 /usr/bin/make
# ls -l /usr/local/bin/gmake
-r-xr-xr-x 1 root wheel 156484 2 12 2009 /usr/local/bin/gmake

CentOSなら,

# ls -l /usr/bin/make
-rwxr-xr-x 1 root root 162300 1月 7 2007 /usr/bin/make
# ls -l /usr/bin/gmake
lrwxrwxrwx 1 root root 4 9月 11 2007 /usr/bin/gmake -> make

とリンクになってます.
FreeBSDでも,gmakeを使えばインストールできました.