From: Andrew M. Kuchling Date: Wed, 29 Nov 2000 02:44:05 +0000 (+0000) Subject: Patch #102469: Check for glibc's getline() extension X-Git-Tag: v2.1a1~700 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78a14423af6f0bea5386c75c7e3794328f90b257;p=python Patch #102469: Check for glibc's getline() extension --- diff --git a/config.h.in b/config.h.in index 17a1624cb3..6b503febca 100644 --- a/config.h.in +++ b/config.h.in @@ -341,6 +341,9 @@ /* Define if you have the gethostbyname function. */ #undef HAVE_GETHOSTBYNAME +/* Define if you have the getline function. */ +#undef HAVE_GETLINE + /* Define if you have the getlogin function. */ #undef HAVE_GETLOGIN diff --git a/configure b/configure index 1942b32af5..a68176ecd5 100755 --- a/configure +++ b/configure @@ -3962,7 +3962,7 @@ fi # checks for library functions for ac_func in alarm chown clock confstr ctermid ctermid_r execv \ flock fork fsync fdatasync fpathconf ftime ftruncate \ - getgroups getlogin getpeername getpid getpwent getwd \ + getgroups getline getlogin getpeername getpid getpwent getwd \ kill link lstat mkfifo mktime mremap \ nice pathconf pause plock poll pthread_init \ putenv readlink \ diff --git a/configure.in b/configure.in index a6f488dff3..bf21e51584 100644 --- a/configure.in +++ b/configure.in @@ -956,7 +956,7 @@ fi # checks for library functions AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r execv \ flock fork fsync fdatasync fpathconf ftime ftruncate \ - getgroups getlogin getpeername getpid getpwent getwd \ + getgroups getline getlogin getpeername getpid getpwent getwd \ kill link lstat mkfifo mktime mremap \ nice pathconf pause plock poll pthread_init \ putenv readlink \