Skip to content

Instantly share code, notes, and snippets.

@charlescui
Forked from liwh/gist:1022751
Created August 26, 2011 06:22
Show Gist options
  • Save charlescui/1172826 to your computer and use it in GitHub Desktop.
Save charlescui/1172826 to your computer and use it in GitHub Desktop.
install coreseek on mac os
# 按照coreseek网站上的安装步骤没装上,所以采用了下面的安装方式,安装成功!
sudo port install autoconf263 libtool-devel m4 autoconf automake libtool
cd mmseg-3.2.14
aclocal && glibtoolize --copy --force --ltdl && autoreconf -i -f && automake --a && ./configure --prefix=/usr/local/mmseg3 && make && sudo make install
cd ../csft-3.2.14
./configure --prefix=/usr/local/coreseek --without-unixodbc --with-mmseg --with-mmseg-includes=/usr/local/mmseg3/include/mmseg/ --with-mmseg-libs=/usr/local/mmseg3/lib/ --with-pgsql
make && sudo make install
ln -s /usr/local/mmseg3/bin/mmseg /usr/local/bin/mmseg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment