Added checks for setvbuf(), RAND_set() and removed the perl stuff

This commit is contained in:
Daniel Stenberg 2000-03-02 23:02:58 +00:00
parent c1b5798e50
commit 0e31dadfb4
1 changed files with 12 additions and 10 deletions

View File

@ -2,7 +2,7 @@ dnl $Id$
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
AC_INIT(lib/urldata.h) AC_INIT(lib/urldata.h)
AM_CONFIG_HEADER(config.h src/config.h) AM_CONFIG_HEADER(config.h src/config.h)
AM_INIT_AUTOMAKE(curl,"6.3.1") AM_INIT_AUTOMAKE(curl,"6.5pre1")
dnl Checks for programs. dnl Checks for programs.
AC_PROG_CC AC_PROG_CC
@ -181,14 +181,16 @@ AC_CHECK_FUNCS( socket \
tcgetattr \ tcgetattr \
perror \ perror \
getpass \ getpass \
closesocket closesocket \
setvbuf \
RAND_status
) )
AC_PATH_PROG( PERL, perl, , dnl AC_PATH_PROG( PERL, perl, ,
$PATH:/usr/local/bin/perl:/usr/bin/:/usr/local/bin ) dnl $PATH:/usr/local/bin/perl:/usr/bin/:/usr/local/bin )
AC_SUBST(PERL) dnl AC_SUBST(PERL)
AC_PATH_PROGS( NROFF, gnroff nroff, , AC_PATH_PROGS( NROFF, gnroff nroff, ,
$PATH:/usr/bin/:/usr/local/bin ) $PATH:/usr/bin/:/usr/local/bin )
@ -203,8 +205,8 @@ dnl AC_SUBST(RANLIB)
AC_OUTPUT( Makefile \ AC_OUTPUT( Makefile \
src/Makefile \ src/Makefile \
lib/Makefile \ lib/Makefile )
perl/checklinks.pl \ dnl perl/checklinks.pl \
perl/getlinks.pl \ dnl perl/getlinks.pl \
perl/formfind.pl \ dnl perl/formfind.pl \
perl/recursiveftpget.pl ) dnl perl/recursiveftpget.pl )