安装sphinx报错(undefined reference to `libiconv_open' 、undefined reference to `libiconv'、undefined reference to `libiconv_close'、make[1]: *** No rule to make target `all'. Stop. 、make: *** [all-recursive
(为知笔记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]#
./src/MakeFile文件(增加字符串-liconv)
LIBS = -lm -lexpat -L/usr/local/lib
改成
LIBS = -lm -lexpat -liconv -L/usr/local/lib
修改 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]#
安装sphinx报错(undefined reference to `libiconv_open' 、undefined reference to `libiconv'、undefined reference to `libiconv_close'、make[1]: *** No rule to make target `all'. Stop. 、make: *** [all-recursive的更多相关文章
- python27(32位)安装模块报错“error: Unable to find vcvarsall.bat”
1)首先,下载一个Microsoft Visual C++ Compiler for Python 2.7的补丁,下载地址在这里: http://www.microsoft.com/en-us/dow ...
- Sql Server 2008卸载后再次安装一直报错
sql server 2008卸载之后再次安装一直报错问题. 第一:由于上一次的卸载不干净,可参照百度完全卸载sql server2008 的方式 1. 用WindowsInstaller删除所有与S ...
- Python virtualenv安装库报错SSL: CERTIFICATE_VERIFY_FAILED
Python virtualenv安装库报错SSL: CERTIFICATE_VERIFY_FAILED 问题描述 使用pip按照virtualenv报错,如下: pip install virtua ...
- [原创] ubuntu下安装scrapy报错 error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
Ubuntu14.04在virtualenv下安装scrapy报错,Failed building wheel for cffi,lxml,cryptography 等. error: command ...
- Sybase ASE安装过程报错,无法创建数据库设备[AM fork() failed]
今天同事要搭建一套测试环境,安装开发版的SYBASE ASE 15.03 Windows平台下的,发现安装过程中到了创建数据库设备的环节就开始报错了,报错信息如下: 03/24/14 09:31:44 ...
- 安装mysql-python报错:UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 65: ordinal not in range(128)
安装mysql-python报错: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 65: ordinal n ...
- python︱模块加载(pip安装)以及pycharm安装与报错解决方式
每每以为攀得众山小,可.每每又切实来到起点,大牛们,缓缓脚步来俺笔记葩分享一下吧,please~ --------------------------- 准备放下R开始学python,真是痛苦,因为找 ...
- 安装STS报错(三)
安装STS报错 1.具体报错如下 Failure to transfer org.codehaus.plexus:plexus-archiver:jar:1.2 from http://repo.ma ...
- 安装STS报错(二)
安装STS报错 1.启动时报错 2.报错原因 3.处理办法
随机推荐
- qt4.8中多线程的几种方式
第一: 用QtConcurrentRun类,适合在另一个线程中运行一个函数.不用继承类,很方便 第二:用QRunnable和QThreadPool结合.继承QRunnable,重写run函数,然后用Q ...
- Nginx禁止域名恶意解析
今天打开网站发现访客人数突增啊,不对啊,小站哪来这么多的访问量呢?打开百度统计,看到有其他的域名解析到我的IP,心中很不爽啊.遂搜索之,才有了此篇文章. 打开Nginx配置文件/etc/nginx/s ...
- Chunky Monkey
猴子吃香蕉可是掰成好几段来吃哦! 把一个数组arr按照指定的数组大小size分割成若干个数组块. 例如:chunk([1,2,3,4],2)=[[1,2],[3,4]]; chunk([1,2,3,4 ...
- zoj3656
题解: 按照位展开,然后一位一位判断 注意判断给出数据是否有问题 代码: #include<cstdio> #include<cmath> #include<algori ...
- 关于Qt中使用线程的时候函数具体在哪个线程中运行的问题
在子线程中,run函数中以及其中调用的都在单独的子线程里面运行,但是其他的类似构造函数之流都是在主线程里面运行的,不要搞混了
- # 2018-2019-2 20165210《网络攻防技术》Exp1 PC平台逆向破解(BOF实验)
2018-2019-2 20165210<网络攻防技术>Exp1 PC平台逆向破解(BOF实验) 实验分为三个部分: 手工修改可执行文件,改变程序执行流程,直接跳转到getShell函数. ...
- a的样式
.myAucCItem a { color: rgb(71,71,71);} .myAucCItem a:hover { color: rgb(71,71,71); text-decoration: ...
- Jquery如何获取ASP.NET服务器控件的值
关键字: Jquery 服务器控件 获取值 由于ASP.NET网页运行后,服务器控件会随机生成客户端id,jquery获取时候不太好操作,总结有以下3种方法: 服务器控件代码:<asp:Te ...
- 关于Gradle2.0的翻译说明
Gradle1.12的翻译情况 Gradle实际上在4月16日就已经在对应的OmegaT项目上完成了翻译,后因项目繁忙,直到7月20日才完成了Github上Gradledoc项目及七牛站点的更新. 总 ...
- java.lang.IllegalArgumentException: Invalid character found in method name
1.错误描述 信息: Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors ...