(为知笔记copy过来格式有变,希望对遇到此问题的童鞋有帮助)
具体错误:
Thank you for choosing Sphinx!
[root@vm-vagrant csft-4.1]# make && make install
Making all in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
/bin/sh svnxrev.sh ..
make all-am
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxexpr.o -MD -MP -MF .deps/sphinxexpr.Tpo -c -o sphinxexpr.o sphinxexpr.cpp
sphinxexpr.cpp: In constructor ‘ExprParser_t::ExprParser_t(CSphSchema*, ISphExprHook*)’:
sphinxexpr.cpp:742: warning: ‘ExprParser_t::m_pExtra’ will be initialized after
sphinxexpr.cpp:711: warning: ‘ISphExprHook* ExprParser_t::m_pHook’
sphinxexpr.cpp:698: warning: when initialized here
mv -f .deps/sphinxexpr.Tpo .deps/sphinxexpr.Po
rm -f libsphinx.a
ar cru libsphinx.a sphinx.o sphinxexcerpt.o sphinxquery.o sphinxsoundex.o sphinxmetaphone.o sphinxstemen.o sphinxstemru.o sphinxstemcz.o sphinxutils.o md5.o sphinxstd.o sphinxsort.o sphinxexpr.o sphinxfilter.o sphinxsearch.o sphinxrt.o tokenizer_zhcn.o
ranlib libsphinx.a
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o indexer indexer.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
libsphinx.a(sphinx.o): In function `xmlUnknownEncoding':
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22292: undefined reference to `libiconv_open'
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22310: undefined reference to `libiconv'
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22316: undefined reference to `libiconv_close'
collect2: ld returned 1 exit status
make[2]: *** [indexer] Error 1
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make: *** [all-recursive] Error 1
[root@vm-vagrant csft-4.1]# vi ./src/MakeFile
[root@vm-vagrant csft-4.1]# make && make install
Making all in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: *** No rule to make target `all'. Stop.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make: *** [all-recursive] Error 1
[root@vm-vagrant csft-4.1]#
百度搜索了很久发现都是上面这种解决方法,我在mac+vagrant+centos6.5环境中遇到的也是上面这样的解决方案(成功),但是这次在win7+vagrant+centos6.5环境中没有解决(同样的centos6.5系统)
编辑:
./src/MakeFile文件(增加字符串-liconv)
./src/MakeFile文件(增加字符串-liconv)
将
LIBS = -lm -lexpat -L/usr/local/lib
改成
LIBS = -lm -lexpat -liconv -L/usr/local/lib
LIBS = -lm -lexpat -L/usr/local/lib
改成
LIBS = -lm -lexpat -liconv -L/usr/local/lib
于是google发现了下面这篇文章,描述的和其它解决方案不通,测试通过,并解决问题
附上作者blog地址: http://bigwayseo.com/1437
#define USE_LIBICONV 0 in line 8179.
修改 configure 文件把 #define USE_LIBICONV 1最后的数值由1改为0
重新编译,安装完成
修改 configure 文件把 #define USE_LIBICONV 1最后的数值由1改为0
重新编译,安装完成
附上所有的操作记录
[root@vm-vagrant csft-4.1]# ./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-mysql
checking build environment
--------------------------
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension module directory... ${exec_prefix}/lib64/python2.6/site-packages
checking for compiler programs
------------------------------
checking whether to compile debug version... no
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for ranlib... ranlib
checking for header files
-------------------------
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking expat.h usability... yes
checking expat.h presence... yes
checking for expat.h... yes
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking sql.h usability... no
checking sql.h presence... no
checking for sql.h... no
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking for types
------------------
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking for library functions
------------------------------
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/socket.h... (cached) yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking return type of signal handlers... void
checking whether lstat dereferences a symlink specified with a trailing slash... no
checking whether stat accepts an empty string... no
checking for vprintf... yes
checking for _doprnt... no
checking for library containing setsockopt... none required
checking for library containing gethostbyname... none required
checking for library containing XML_Parse... -lexpat
checking for library containing iconv... none required
checking for library containing inflate... -lz
checking for library containing logf... -lm
checking for dup2... yes
checking for gethostbyname... yes
checking for gettimeofday... yes
checking for memmove... yes
checking for memset... yes
checking for select... yes
checking for socket... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strerror... yes
checking for strncasecmp... yes
checking for strstr... yes
checking for strtol... yes
checking for logf... yes
checking for pread... yes
checking for backtrace... yes
checking for backtrace_symbols... yes
checking for clock_gettime in -lrt... yes
checking for clock_gettime... yes
checking for LOCK_EX in sys/file.h... yes
checking for F_SETLKW in fcntl.h... yes
checking for dlopen in -ldl... yes
checking for dlopen... yes
checking for dlerror... yes
configuring Sphinx
------------------
checking for CFLAGS needed for pthreads... none
checking for LIBS needed for pthreads... -lpthread
checking for pthreads... found
checking for pthread_mutex_timedlock... yes
checking whether to compile with MySQL support... yes
checking for mysql_config... mysql_config
checking for mysql_real_connect... yes
checking MySQL include files... -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing
checking MySQL libraries... -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl
checking whether to link statically with MySQL support... no
checking whether to compile with PostgreSQL support... no
checking whether to compile with libmmseg support... yes
checking libmmseg include files... -I/usr/local/mmseg3/include/mmseg/
checking libmmseg libraries... -L/usr/local/mmseg3/lib/ -lmmseg
checking whether to use 64-bit document/word IDs... no
checking whether to compile with libstemmer support... no
checking for libexpat... found
checking for libiconv... found
checking for iconv() arg types... char **
checking for UnixODBC... disabled
checking for Syslog... disabled
checking for unaligned RAM access... yes
checking whether byte ordering is bigendian... no
generating configuration files
------------------------------
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating libstemmer_c/Makefile
config.status: creating doc/Makefile
config.status: creating sphinx.conf.dist
config.status: creating sphinx-min.conf.dist
config.status: creating config/config.h
config.status: config/config.h is unchanged
config.status: executing depfiles commands
configuration done
------------------
You can now run 'make install' to build and install Sphinx binaries.
On a multi-core machine, try 'make -j4 install' to speed up the build.
Updates, articles, help forum, and commercial support, consulting, training,
and development services are available at http://sphinxsearch.com/
Thank you for choosing Sphinx!
[root@vm-vagrant csft-4.1]# make && make install
Making all in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
/bin/sh svnxrev.sh ..
make all-am
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxexpr.o -MD -MP -MF .deps/sphinxexpr.Tpo -c -o sphinxexpr.o sphinxexpr.cpp
sphinxexpr.cpp: In constructor ‘ExprParser_t::ExprParser_t(CSphSchema*, ISphExprHook*)’:
sphinxexpr.cpp:742: warning: ‘ExprParser_t::m_pExtra’ will be initialized after
sphinxexpr.cpp:711: warning: ‘ISphExprHook* ExprParser_t::m_pHook’
sphinxexpr.cpp:698: warning: when initialized here
mv -f .deps/sphinxexpr.Tpo .deps/sphinxexpr.Po
rm -f libsphinx.a
ar cru libsphinx.a sphinx.o sphinxexcerpt.o sphinxquery.o sphinxsoundex.o sphinxmetaphone.o sphinxstemen.o sphinxstemru.o sphinxstemcz.o sphinxutils.o md5.o sphinxstd.o sphinxsort.o sphinxexpr.o sphinxfilter.o sphinxsearch.o sphinxrt.o tokenizer_zhcn.o
ranlib libsphinx.a
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o indexer indexer.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
libsphinx.a(sphinx.o): In function `xmlUnknownEncoding':
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22292: undefined reference to `libiconv_open'
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22310: undefined reference to `libiconv'
/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src/sphinx.cpp:22316: undefined reference to `libiconv_close'
collect2: ld returned 1 exit status
make[2]: *** [indexer] Error 1
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make: *** [all-recursive] Error 1
[root@vm-vagrant csft-4.1]# vi ./src/MakeFile
[root@vm-vagrant csft-4.1]# make && make install
Making all in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: *** No rule to make target `all'. Stop.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make: *** [all-recursive] Error 1
[root@vm-vagrant csft-4.1]# ls
acinclude.m4 buildconf.sh config.status COPYING INSTALL Makefile.am python.m4 sphinx.conf.dist sphinx.spec win
aclocal.m4 codeblocks configure cs_test libexpat Makefile.in smoke.sh sphinx.conf.in sphinx.workspace
api config configure.ac doc libstemmer_c misc sphinx05.sln sphinx-min.conf.dist src
autom4te.cache config.log contrib example.sql Makefile mysqlse sphinx08.sln sphinx-min.conf.in test
[root@vm-vagrant csft-4.1]# vi config
[root@vm-vagrant csft-4.1]# vi ./configure
[root@vm-vagrant csft-4.1]# ./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-mysql
checking build environment
--------------------------
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension module directory... ${exec_prefix}/lib64/python2.6/site-packages
checking for compiler programs
------------------------------
checking whether to compile debug version... no
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for ranlib... ranlib
checking for header files
-------------------------
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking expat.h usability... yes
checking expat.h presence... yes
checking for expat.h... yes
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking sql.h usability... no
checking sql.h presence... no
checking for sql.h... no
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking for types
------------------
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking for library functions
------------------------------
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/socket.h... (cached) yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking return type of signal handlers... void
checking whether lstat dereferences a symlink specified with a trailing slash... no
checking whether stat accepts an empty string... no
checking for vprintf... yes
checking for _doprnt... no
checking for library containing setsockopt... none required
checking for library containing gethostbyname... none required
checking for library containing XML_Parse... -lexpat
checking for library containing iconv... none required
checking for library containing inflate... -lz
checking for library containing logf... -lm
checking for dup2... yes
checking for gethostbyname... yes
checking for gettimeofday... yes
checking for memmove... yes
checking for memset... yes
checking for select... yes
checking for socket... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strerror... yes
checking for strncasecmp... yes
checking for strstr... yes
checking for strtol... yes
checking for logf... yes
checking for pread... yes
checking for backtrace... yes
checking for backtrace_symbols... yes
checking for clock_gettime in -lrt... yes
checking for clock_gettime... yes
checking for LOCK_EX in sys/file.h... yes
checking for F_SETLKW in fcntl.h... yes
checking for dlopen in -ldl... yes
checking for dlopen... yes
checking for dlerror... yes
configuring Sphinx
------------------
checking for CFLAGS needed for pthreads... none
checking for LIBS needed for pthreads... -lpthread
checking for pthreads... found
checking for pthread_mutex_timedlock... yes
checking whether to compile with MySQL support... yes
checking for mysql_config... mysql_config
checking for mysql_real_connect... yes
checking MySQL include files... -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing
checking MySQL libraries... -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl
checking whether to link statically with MySQL support... no
checking whether to compile with PostgreSQL support... no
checking whether to compile with libmmseg support... yes
checking libmmseg include files... -I/usr/local/mmseg3/include/mmseg/
checking libmmseg libraries... -L/usr/local/mmseg3/lib/ -lmmseg
checking whether to use 64-bit document/word IDs... no
checking whether to compile with libstemmer support... no
checking for libexpat... found
checking for libiconv... found
checking for iconv() arg types... char **
checking for UnixODBC... disabled
checking for Syslog... disabled
checking for unaligned RAM access... yes
checking whether byte ordering is bigendian... no
generating configuration files
------------------------------
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating libstemmer_c/Makefile
config.status: creating doc/Makefile
config.status: creating sphinx.conf.dist
config.status: creating sphinx-min.conf.dist
config.status: creating config/config.h
config.status: executing depfiles commands
configuration done
------------------
You can now run 'make install' to build and install Sphinx binaries.
On a multi-core machine, try 'make -j4 install' to speed up the build.
Updates, articles, help forum, and commercial support, consulting, training,
and development services are available at http://sphinxsearch.com/
Thank you for choosing Sphinx!
[root@vm-vagrant csft-4.1]# make && make install
Making all in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
/bin/sh svnxrev.sh ..
make all-am
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinx.o -MD -MP -MF .deps/sphinx.Tpo -c -o sphinx.o sphinx.cpp
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from /usr/local/mmseg3/include/mmseg/Segmenter.h:31,
from /usr/local/mmseg3/include/mmseg/SegmenterManager.h:33,
from tokenizer_zhcn.h:26,
from sphinx.cpp:2173:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/local/mmseg3/include/mmseg/Segmenter.h:38,
from /usr/local/mmseg3/include/mmseg/SegmenterManager.h:33,
from tokenizer_zhcn.h:26,
from sphinx.cpp:2173:
/usr/local/mmseg3/include/mmseg/mmthunk.h: In member function ‘u2 css::ChunkQueue::getToken()’:
/usr/local/mmseg3/include/mmseg/mmthunk.h:143: warning: comparison between signed and unsigned integer expressions
/usr/local/mmseg3/include/mmseg/mmthunk.h:161: warning: comparison between signed and unsigned integer expressions
sphinx.cpp: In function ‘bool Cmp(const SchemaRecord&, const SchemaRecord&)’:
sphinx.cpp:5409: warning: array subscript has type ‘char’
sphinx.cpp:5410: warning: array subscript has type ‘char’
sphinx.cpp: In destructor ‘virtual CSphQueryResult::~CSphQueryResult()’:
sphinx.cpp:6346: warning: deleting ‘void*’ is undefined
sphinx.cpp: In member function ‘virtual int CSphIndex_VLN::DebugCheck(FILE*)’:
sphinx.cpp:15310: warning: format ‘%li’ expects type ‘long int’, but argument 5 has type ‘int’
sphinx.cpp:15310: warning: format ‘%li’ expects type ‘long int’, but argument 6 has type ‘int’
sphinx.cpp:15332: warning: format ‘%li’ expects type ‘long int’, but argument 5 has type ‘int’
sphinx.cpp:15332: warning: format ‘%li’ expects type ‘long int’, but argument 6 has type ‘int’
sphinx.cpp:15831: warning: format ‘%u’ expects type ‘unsigned int’, but argument 8 has type ‘uint64_t’
sphinx.cpp:15831: warning: format ‘%u’ expects type ‘unsigned int’, but argument 10 has type ‘uint64_t’
mv -f .deps/sphinx.Tpo .deps/sphinx.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxexcerpt.o -MD -MP -MF .deps/sphinxexcerpt.Tpo -c -o sphinxexcerpt.o sphinxexcerpt.cpp
sphinxexcerpt.cpp: In member function ‘void ExcerptGen_c::TokenizeDocument(char*, int, CSphDict*, ISphTokenizer*, bool, const ExcerptQuery_t&, const CSphIndexSettings&)’:
sphinxexcerpt.cpp:811: warning: comparison between signed and unsigned integer expressions
sphinxexcerpt.cpp: In function ‘void TokenizeDocument(TokenFunctorTraits_c&, const CSphHTMLStripper*)’:
sphinxexcerpt.cpp:2460: warning: comparison between signed and unsigned integer expressions
sphinxexcerpt.cpp:2574: warning: comparison between signed and unsigned integer expressions
sphinxexcerpt.cpp:2583: warning: comparison between signed and unsigned integer expressions
mv -f .deps/sphinxexcerpt.Tpo .deps/sphinxexcerpt.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxquery.o -MD -MP -MF .deps/sphinxquery.Tpo -c -o sphinxquery.o sphinxquery.cpp
mv -f .deps/sphinxquery.Tpo .deps/sphinxquery.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxsoundex.o -MD -MP -MF .deps/sphinxsoundex.Tpo -c -o sphinxsoundex.o sphinxsoundex.cpp
mv -f .deps/sphinxsoundex.Tpo .deps/sphinxsoundex.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxmetaphone.o -MD -MP -MF .deps/sphinxmetaphone.Tpo -c -o sphinxmetaphone.o sphinxmetaphone.cpp
mv -f .deps/sphinxmetaphone.Tpo .deps/sphinxmetaphone.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxstemen.o -MD -MP -MF .deps/sphinxstemen.Tpo -c -o sphinxstemen.o sphinxstemen.cpp
mv -f .deps/sphinxstemen.Tpo .deps/sphinxstemen.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxstemru.o -MD -MP -MF .deps/sphinxstemru.Tpo -c -o sphinxstemru.o sphinxstemru.cpp
mv -f .deps/sphinxstemru.Tpo .deps/sphinxstemru.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxstemcz.o -MD -MP -MF .deps/sphinxstemcz.Tpo -c -o sphinxstemcz.o sphinxstemcz.cpp
mv -f .deps/sphinxstemcz.Tpo .deps/sphinxstemcz.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxutils.o -MD -MP -MF .deps/sphinxutils.Tpo -c -o sphinxutils.o sphinxutils.cpp
mv -f .deps/sphinxutils.Tpo .deps/sphinxutils.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxstd.o -MD -MP -MF .deps/sphinxstd.Tpo -c -o sphinxstd.o sphinxstd.cpp
mv -f .deps/sphinxstd.Tpo .deps/sphinxstd.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxsort.o -MD -MP -MF .deps/sphinxsort.Tpo -c -o sphinxsort.o sphinxsort.cpp
mv -f .deps/sphinxsort.Tpo .deps/sphinxsort.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxexpr.o -MD -MP -MF .deps/sphinxexpr.Tpo -c -o sphinxexpr.o sphinxexpr.cpp
sphinxexpr.cpp: In constructor ‘ExprParser_t::ExprParser_t(CSphSchema*, ISphExprHook*)’:
sphinxexpr.cpp:742: warning: ‘ExprParser_t::m_pExtra’ will be initialized after
sphinxexpr.cpp:711: warning: ‘ISphExprHook* ExprParser_t::m_pHook’
sphinxexpr.cpp:698: warning: when initialized here
mv -f .deps/sphinxexpr.Tpo .deps/sphinxexpr.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxfilter.o -MD -MP -MF .deps/sphinxfilter.Tpo -c -o sphinxfilter.o sphinxfilter.cpp
mv -f .deps/sphinxfilter.Tpo .deps/sphinxfilter.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxsearch.o -MD -MP -MF .deps/sphinxsearch.Tpo -c -o sphinxsearch.o sphinxsearch.cpp
sphinxsearch.cpp: In member function ‘bool ExtTermPos_c<T>::IsAcceptableHit(const ExtHit_t*) const [with TermPosFilter_e T = (TermPosFilter_e)5u]’:
sphinxsearch.cpp:1641: warning: enumeration value ‘SPH_ZONE_NO_SPAN’ not handled in switch
mv -f .deps/sphinxsearch.Tpo .deps/sphinxsearch.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT sphinxrt.o -MD -MP -MF .deps/sphinxrt.Tpo -c -o sphinxrt.o sphinxrt.cpp
mv -f .deps/sphinxrt.Tpo .deps/sphinxrt.Po
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT tokenizer_zhcn.o -MD -MP -MF .deps/tokenizer_zhcn.Tpo -c -o tokenizer_zhcn.o tokenizer_zhcn.cpp
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from /usr/local/mmseg3/include/mmseg/Segmenter.h:31,
from /usr/local/mmseg3/include/mmseg/SegmenterManager.h:33,
from tokenizer_zhcn.cpp:13:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/local/mmseg3/include/mmseg/Segmenter.h:38,
from /usr/local/mmseg3/include/mmseg/SegmenterManager.h:33,
from tokenizer_zhcn.cpp:13:
/usr/local/mmseg3/include/mmseg/mmthunk.h: In member function ‘u2 css::ChunkQueue::getToken()’:
/usr/local/mmseg3/include/mmseg/mmthunk.h:143: warning: comparison between signed and unsigned integer expressions
/usr/local/mmseg3/include/mmseg/mmthunk.h:161: warning: comparison between signed and unsigned integer expressions
mv -f .deps/tokenizer_zhcn.Tpo .deps/tokenizer_zhcn.Po
rm -f libsphinx.a
ar cru libsphinx.a sphinx.o sphinxexcerpt.o sphinxquery.o sphinxsoundex.o sphinxmetaphone.o sphinxstemen.o sphinxstemru.o sphinxstemcz.o sphinxutils.o md5.o sphinxstd.o sphinxsort.o sphinxexpr.o sphinxfilter.o sphinxsearch.o sphinxrt.o tokenizer_zhcn.o
ranlib libsphinx.a
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT indexer.o -MD -MP -MF .deps/indexer.Tpo -c -o indexer.o indexer.cpp
mv -f .deps/indexer.Tpo .deps/indexer.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o indexer indexer.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT searchd.o -MD -MP -MF .deps/searchd.Tpo -c -o searchd.o searchd.cpp
searchd.cpp: In function ‘int ServiceMain(int, char**)’:
searchd.cpp:14401: warning: unused variable ‘hPython’
In file included from sphinx.h:45,
from searchd.cpp:16:
sphinxstd.h: In function ‘void sphSort(T*, int, U, V) [with T = SearchFailure_t, U = SphLess_T<SearchFailure_t>, V = SphAccessor_T<SearchFailure_t>]’:
sphinxstd.h:431: warning: ‘<anonymous>’ may be used uninitialized in this function
sphinxstd.h:431: note: ‘<anonymous>’ was declared here
mv -f .deps/searchd.Tpo .deps/searchd.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o searchd searchd.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT search.o -MD -MP -MF .deps/search.Tpo -c -o search.o search.cpp
search.cpp: In function ‘int main(int, char**)’:
search.cpp:194: warning: unused variable ‘hPython’
mv -f .deps/search.Tpo .deps/search.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o search search.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT spelldump.o -MD -MP -MF .deps/spelldump.Tpo -c -o spelldump.o spelldump.cpp
mv -f .deps/spelldump.Tpo .deps/spelldump.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o spelldump spelldump.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT indextool.o -MD -MP -MF .deps/indextool.Tpo -c -o indextool.o indextool.cpp
mv -f .deps/indextool.Tpo .deps/indextool.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o indextool indextool.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
g++ -DHAVE_CONFIG_H -I. -I../config -DSYSCONFDIR="\"/usr/local/coreseek/etc\"" -DDATADIR="\"/usr/local/coreseek/var/data\"" -I/usr/local/include -I/usr/local/mysql/include/mysql -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -I/usr/local/mmseg3/include/mmseg/ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -MT tests.o -MD -MP -MF .deps/tests.Tpo -c -o tests.o tests.cpp
mv -f .deps/tests.Tpo .deps/tests.Po
g++ -Wall -g -D_FILE_OFFSET_BITS=64 -O3 -DNDEBUG -o tests tests.o libsphinx.a -L/usr/local/mysql/lib -lmysqlclient -lpthread -lz -lm -lrt -ldl -L/usr/local/mmseg3/lib/ -lmmseg -ldl -lm -lz -lexpat -L/usr/local/lib -lrt -lpthread
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
Making all in test
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/test'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/test'
Making all in doc
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
All docs are already pre-built by developer.
If you want to rebuild them, install docbook-xsl
and xsltproc and then run 'make docs' instead of simple 'make'.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
Making install in src
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
/bin/sh svnxrev.sh ..
make install-am
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[3]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
test -z "/usr/local/coreseek/bin" || /bin/mkdir -p "/usr/local/coreseek/bin"
/usr/bin/install -c indexer searchd search spelldump indextool '/usr/local/coreseek/bin'
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/src'
Making install in test
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/test'
make[1]: Nothing to be done for `install'.
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/test'
Making install in doc
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/coreseek/share/man/man1" || /bin/mkdir -p "/usr/local/coreseek/share/man/man1"
/usr/bin/install -c -m 644 searchd.1 search.1 indexer.1 indextool.1 spelldump.1 '/usr/local/coreseek/share/man/man1'
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1/doc'
make[1]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
make[2]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
test -z "/usr/local/coreseek/etc" || /bin/mkdir -p "/usr/local/coreseek/etc"
/usr/bin/install -c -m 644 sphinx.conf.dist sphinx-min.conf.dist example.sql '/usr/local/coreseek/etc'
make install-data-hook
make[3]: Entering directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
mkdir -p /usr/local/coreseek/var/data && mkdir -p /usr/local/coreseek/var/log
make[3]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
make[2]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
make[1]: Leaving directory `/home/wwwroot/softsrc/coreseek-4.1-beta/csft-4.1'
[root@vm-vagrant csft-4.1]#