当前位置: 代码迷 >> 综合 >> coreseek-4.1-beta 安装 mmseg sphinx
  详细解决方案

coreseek-4.1-beta 安装 mmseg sphinx

热度:65   发布时间:2024-01-12 14:35:29.0
coreseek-4.1自带的mysqlse为r2917,支持string属性字段。
$ tar -zxvf  coreseek-4.1-beta.tar.gz 
1.安装mmseg
$cd mmseg-3.2.14
$./configure --prefix=/usr/local/mmseg
如果出现如下错误:
config.status: error: cannot find input file: src/Makefile.in 
运行:
$ aclocal
$ libtoolize --force
$ automake --add-missing
$ autoconf
$ autoheader
$ make clean
在重新config
$./configure --prefix=/usr/local/mmseg
打印如下信息说明config成功
------------------------------------------------------------------------
Configuration:


  Source code location:       .
  Compiler:                   gcc
  Compiler flags:             -g -O2
  Host System Type:           x86_64-unknown-linux-gnu
  Install path:               /usr/local/mmseg


  See config.h for further configuration information.
  相关解决方案