⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.in

📁 harvest是一个下载html网页得机器人
💻 IN
字号:
dnl Zebra, Index Data Aps, 1995-2003dnl $Id: configure.in,v 1.87 2003/11/28 23:16:23 adam Exp $dnlAC_INIT(include/zebraver.h)AC_PREFIX_DEFAULT(/usr/local/harvest)AM_INIT_AUTOMAKE(idzebra,1.3.14)dnl ------ SubstitutionsAC_SUBST(TCL_INCLUDE)AC_SUBST(TCL_LIB)AC_SUBST(READLINE_LIBS)dnl ------ Perl substitutionsAC_SUBST(PERL_BINARY)AC_SUBST(PERL_XS_INIT)AC_SUBST(PERL_XS_INIT_INCLUDE)AC_SUBST(PERL_LIBS)AC_SUBST(PERL_CFLAGS)AC_SUBST(ZPERL_LIBS)dnldnl ------ Checking programsAC_PROG_CCAC_PROG_CPPAC_PROG_INSTALLAC_PROG_RANLIBdnldnl ----- DOCBOOK DTDAC_SUBST(DTD_DIR)AC_ARG_WITH(dtd, [  --with-dtd[=DIR]        Use docbookx.dtd in DIR],[   if test -f "$withval/docbookx.dtd"; then      DTD_DIR=$withval   fi],[   AC_MSG_CHECKING(for docbookx.dtd)   for d in /usr/share/sgml/docbook/dtd/xml/4.1.2 \         /usr/share/sgml/docbook/xml-dtd-4.1.2* \         /usr/share/sgml/docbook/xml-dtd-4.1 \         /usr/share/sgml/docbook/dtd/xml/4.0 \	    /usr/lib/sgml/dtd/docbook-xml    do     if test -f $d/docbookx.dtd; then       AC_MSG_RESULT($d)       DTD_DIR=$d       break     fi   done   if test -z "$DTD_DIR"; then      AC_MSG_RESULT(Not found)   fi])AC_SUBST(DSSSL_DIR)AC_ARG_WITH(dsssl,[  --with-dsssl[=DIR]      Use DSSSL in DIR/{html,print}/docbook.dsl],[   if test -f "$withval/html/docbook.dsl"; then      DSSSL_DIR=$withval   fi],[   AC_MSG_CHECKING(for docbook.dsl)   for d in /usr/share/sgml/docbook/stylesheet/dsssl/modular \            /usr/share/sgml/docbook/dsssl-stylesheets-1.* \            /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh    do     if test -f $d/html/docbook.dsl; then       AC_MSG_RESULT($d)       DSSSL_DIR=$d       break     fi   done   if test -z "$DSSSL_DIR"; then      AC_MSG_RESULT(Not found)   fi])dnlAC_ARG_ENABLE(threads, [  --disable-threads       disable threads],[enable_threads=$enableval],[enable_threads=yes])if test "$enable_threads" = "yes"; then	yazflag=threadselse	yazflag=""fiYAZ_INIT($yazflag)dnl ------ Look for Tcldnl See if user has specified location of tclConfig.sh; otherwisednl see if tclConfig.sh exists in same prefix lcoation as tclsh; otherwisednl disable Tcl.TCL_LIB=""TCL_INCLUDE=""tclconfig=NONEAC_ARG_WITH(tclconfig, [  --with-tclconfig=DIR    tclConfig.sh in DIR], [tclconfig=$withval])if test "x$tclconfig" = xNONE; then	saveprefix=${prefix}	AC_PREFIX_PROGRAM(tclsh)	tclconfig=${prefix}/lib	prefix=${saveprefix}	if test ! -r ${tclconfig}/tclConfig.sh; then		# Not found, try search for Tcl on Debian systems.		for d in /usr/lib/tcl*; do			if test -f $d/tclConfig.sh; then				tclconfig=$d			fi		done	fifiAC_MSG_CHECKING(for Tcl)if test -r ${tclconfig}/tclConfig.sh; then	. ${tclconfig}/tclConfig.sh	if test -r ${tclconfig}/../generic/tcl.h; then		TCL_INCLUDE=-I${tclconfig}/../generic		TCL_LIB="$TCL_BUILD_LIB_SPEC $TCL_LIBS" 	elif test -d ${TCL_PREFIX}/include/tcl${TCL_VERSION}; then		TCL_INCLUDE=-I${TCL_PREFIX}/include/tcl${TCL_VERSION}		TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"	else		TCL_INCLUDE=-I${TCL_PREFIX}/include		TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"	fi	TCL_LIB=`echo $TCL_LIB|sed 's%-L/usr/lib%%g'`        SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS        SHLIB_LD=$TCL_SHLIB_LD        SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX        SHLIB_VERSION=$TCL_SHLIB_VERSION        AC_MSG_RESULT($TCL_VERSION)	AC_DEFINE(HAVE_TCL_H,1)else        AC_MSG_RESULT(Not found)	AC_DEFINE(HAVE_TCL_H,0)fidnldnl ------ timesAC_CHECK_HEADERS(sys/times.h)dnldnl ------ mkstempAC_CHECK_FUNCS(mkstemp)dnldnl ------ GNU ReadlineREADLINE_SHARED_LIBADD=""AC_CHECK_LIB(ncurses, tgetent, [READLINE_SHARED_LIBADD="-lncurses"],        AC_CHECK_LIB(termcap, tgetent, [READLINE_SHARED_LIBADD="-ltermcap"]))READLINE_LIBS=""AC_CHECK_LIB(readline, readline, [READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)AC_CHECK_LIB(history, add_history, [READLINE_LIBS="$READLINE_LIBS -lhistory"])if test "$ac_cv_lib_readline_readline" = "yes"; then        AC_CHECK_HEADERS(readline/readline.h readline/history.h)        xLIBS=$LIBS        LIBS="$LIBS $READLINE_LIBS"        AC_TRY_LINK([        #include <stdio.h>        #include <readline/readline.h>        ],[        static void f()        {                rl_attempted_completion_over = 0;        }        ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER))        AC_TRY_LINK([        #include <stdio.h>        #include <readline/readline.h>        ],[        static void f()        {                rl_completion_matches (0, 0);        }        ],AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES))        LIBS=$xLIBSfidnldnl ------ iconvAC_ARG_WITH(iconv, [  --with-iconv[=DIR]      iconv library in DIR])if test "$with_iconv" != "no"; then	AC_MSG_CHECKING(for iconv)	oldLIBS="$LIBS"	oldCPPFLAGS="${CPPFLAGS}"	if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then		LIBS="$LIBS -L${with_iconv}/lib"		CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"	fi	AC_TRY_LINK([		#include <iconv.h>	],[		static void f() {iconv_t t = iconv_open("", ""); }	],[		AC_DEFINE(HAVE_ICONV_H)		AC_MSG_RESULT(yes)	],[		LIBS="$LIBS -liconv"		AC_TRY_LINK([			#include <iconv.h>		],[			static void f() {iconv_t t = iconv_open("", ""); }		],[			AC_DEFINE(HAVE_ICONV_H)			AC_MSG_RESULT(yes)		],[			LIBS="$oldLIBS"			CPPFLAGS="$oldCPPFLAGS"			AC_MSG_RESULT(no)		])	])fidnldnl ------- BZIP2AC_CHECK_LIB(bz2,bzCompressInit)if test "$ac_cv_lib_bz2_bzCompressInit" = "yes"; then	AC_CHECK_HEADERS(bzlib.h)else	AC_CHECK_LIB(bz2,BZ2_bzCompressInit)	if test "$ac_cv_lib_bz2_BZ2_bzCompressInit" = "yes"; then		AC_CHECK_HEADERS(bzlib.h)	fifidnldnl ------ -lmAC_CHECK_LIB(m,sqrt)dnldnl ------ EXPATexpat=yesAC_ARG_WITH(expat,   [  --with-expat[=DIR]      EXPAT library in DIR],[expat=$withval])if test "$expat" != "no"; then	xLIBS="$LIBS";	xCFLAGS="$CFLAGS";	if test "$expat" != "yes"; then                EXPAT_CFLAGS="-I$expat/include"                EXPAT_LIBS="-L$expat/lib"		CFLAGS="$EXPAT_CFLAGS $CFLAGS"		LIBS="$EXPAT_LIBS $LIBS"	fi	AC_CHECK_LIB(expat,XML_ParserCreate,[LIBS="$LIBS -lexpat"])	if test "$ac_cv_lib_expat_XML_ParserCreate" = "yes"; then		AC_CHECK_HEADERS(expat.h)	else		LIBS="$xLIBS"		CFLAGS="$xCFLAGS"	fifidnldnl ------ PERLAM_CONDITIONAL(perl,false)perl=noPERL_XS_INIT="NULL"PERL_XS_INIT_INCLUDE=''PERL_BINARY=""AC_ARG_WITH(perl,   [  --with-perl[=FILE]      perl binary location],[perl=$withval])if test "$perl" != "no"; then	AC_MSG_CHECKING(for perl binary)	if test "$perl" = "yes"; then	    perlbin=`which perl`	else            perlbin="$perl"        fi         if test -x "$perlbin"; then	    AC_MSG_RESULT($perlbin)		    AC_MSG_CHECKING(perl core directory)	    archdir=`$perlbin -MConfig -e 'print $Config{archlib}'`;	    perlcore="$archdir/CORE";	    if test -d "$perlcore"; then		PERL_BINARY="$perlbin"		AC_MSG_RESULT($perlcore)		    else		AC_MSG_RESULT(Failed)		    fi	    AC_MSG_CHECKING("for ExtUtils::Embed to determine ccopts")	    PERL_CFLAGS=`$perlbin -MExtUtils::Embed -e ccopts 2>/dev/null`	    if test "$PERL_CFLAGS"; then		AC_MSG_RESULT(OK)	            else		PERL_CFLAGS="-I$perlcore"		AC_MSG_RESULT(Using defaults)		    fi	    AC_MSG_CHECKING("for ExtUtils::Embed to determine ldflags")	    PERL_LIBS=`$perlbin -MExtUtils::Embed -e ldopts 2>/dev/null`	    if test "$PERL_LIBS"; then		AC_MSG_RESULT(OK)	            else                PERL_LIBS="-L$perlcore -lperl -lm"		AC_MSG_RESULT(Using defaults)		    fi	    AC_MSG_CHECKING("for ExtUtils::Embed to create xs_init")	    xsf="recctrl/xsinit.h"	    `rm $xsf 2>/dev/null`;	    `$perlbin -MExtUtils::Embed -e xsinit -- -o $xsf 2>/dev/null`	    if test -r "$xsf"; then		AC_MSG_RESULT(OK)			PERL_XS_INIT="xs_init"		PERL_XS_INIT_INCLUDE='#include "xsinit.h"'            else		AC_MSG_RESULT(XS libraries are not going to be available)            fi	    xLIBS="$LIBS"	    xCFLAGS="$CFLAGS"	    CFLAGS="$PERL_CFLAGS $CFLAGS"	    LIBS="$PERL_LIBS $LIBS"	    AC_MSG_CHECKING(for perl library)            AC_TRY_LINK([            #include <stdio.h>             ],[            static void f()            {		;            }		],AM_CONDITIONAL(perl,true)	          AC_DEFINE(HAVE_PERL,1)		  AC_MSG_RESULT(found)	          ZPERL_LIBS="$xLIBS"			,                  AC_MSG_RESULT(not found)	          AC_DEFINE(HAVE_PERL,0)		  LIBS="$xLIBS"		  CFLAGS="$xCFLAGS")        else	    AC_DEFINE(HAVE_PERL,0)	    AC_MSG_RESULT(Not found)	fifidnl ------- 64 bit filesAC_MSG_CHECKING(for LFS)AC_TRY_RUN([#define _FILE_OFFSET_BITS 64#include <sys/types.h>#include <unistd.h>#include <string.h>#include <stdio.h>#include <fcntl.h>#include <errno.h>int main(int argc, char **argv){	off_t o;	char tmp_str[32];	int fd;	struct flock area;	if (sizeof(off_t) != 8) 		exit (1);	o = 2000000000;	sprintf (tmp_str, "%Ld", o+o+o);	if (strcmp (tmp_str, "6000000000"))		exit (1);	fd = creat ("config.tmp", 0644);	if (fd < 0)		exit (1);	area.l_type = F_WRLCK;	area.l_whence = SEEK_SET;	area.l_len = area.l_start = 0L;	if (fcntl(fd, F_SETLKW, &area))		exit (1);	close (fd);	unlink ("config.tmp");	exit (0);}],bits=64,bits=32,bits=32)if test "$bits" = "64"; then	AC_DEFINE(_FILE_OFFSET_BITS,64)	AC_MSG_RESULT(yes)else	AC_MSG_RESULT(no)fidnldnl ------ ANSI C Header filesAC_STDC_HEADERSif test "$ac_cv_header_stdc" = "no"; then	AC_MSG_WARN(Your system doesn't seem to support ANSI C)fidnl ------ Create MakefilesAC_OUTPUT([  Makefile  util/Makefile  bfile/Makefile  dfa/Makefile  dict/Makefile  isamb/Makefile  isams/Makefile  isamc/Makefile  isam/Makefile  rset/Makefile  data1/Makefile  recctrl/Makefile  recctrl/perlread.h  index/Makefile  include/Makefile  tab/Makefile  doc/Makefile  doc/zebra.xml  doc/zebrahtml.dsl  doc/zebraprint.dsl  doc/zebraphp.dsl  doc/tkl.xsl  test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile  test/rusmarc/Makefile test/cddb/Makefile test/malxml/Makefile   test/config/Makefile  perl/Makefile.PL test/xelm/Makefile  test/dmoz/Makefile test/xpath/Makefile test/sort/Makefile test/zsh/Makefile  test/marcxml/Makefile  examples/Makefile examples/gils/Makefile examples/zthes/Makefile  idzebra.spec])if test -x "$perlbin"; then	res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;fiif test  -z "$YAZLIB"; then	echo "YAZ was not found. Use --with-yazconfig=DIR to specify location."	test -f /etc/debian_version && echo "Debian package libyaz-dev is required."fi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -