diff options
| author | Kim F. Storm | 2002-03-03 00:26:15 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-03-03 00:26:15 +0000 |
| commit | 6a22cdf4bfc7a17ff6e6b0023feb23ffcc056f65 (patch) | |
| tree | 78167ebbf43a2694df5d558177921feda31831a1 | |
| parent | e5787c30c24398fa4ec41709f29b88c680967d95 (diff) | |
| download | emacs-6a22cdf4bfc7a17ff6e6b0023feb23ffcc056f65.tar.gz emacs-6a22cdf4bfc7a17ff6e6b0023feb23ffcc056f65.zip | |
Test for getpeername.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | configure | 4 | ||||
| -rw-r--r-- | configure.in | 4 |
3 files changed, 8 insertions, 4 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-03-03 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * configure.in: Test for getpeername. | ||
| 4 | |||
| 1 | 2002-03-01 Richard M. Stallman <rms@gnu.org> | 5 | 2002-03-01 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b. | 7 | * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b. |
| @@ -2,7 +2,7 @@ | |||
| 2 | # Guess values for system-dependent variables and create Makefiles. | 2 | # Guess values for system-dependent variables and create Makefiles. |
| 3 | # Generated by Autoconf 2.52. | 3 | # Generated by Autoconf 2.52. |
| 4 | # | 4 | # |
| 5 | # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 | 5 | # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 |
| 6 | # Free Software Foundation, Inc. | 6 | # Free Software Foundation, Inc. |
| 7 | # This configure script is free software; the Free Software Foundation | 7 | # This configure script is free software; the Free Software Foundation |
| 8 | # gives unlimited permission to copy, distribute and modify it. | 8 | # gives unlimited permission to copy, distribute and modify it. |
| @@ -8226,7 +8226,7 @@ EOF | |||
| 8226 | fi | 8226 | fi |
| 8227 | done | 8227 | done |
| 8228 | 8228 | ||
| 8229 | for ac_func in gethostname getdomainname dup2 \ | 8229 | for ac_func in gethostname getdomainname getpeername dup2 \ |
| 8230 | rename closedir mkdir rmdir sysinfo \ | 8230 | rename closedir mkdir rmdir sysinfo \ |
| 8231 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ | 8231 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ |
| 8232 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ | 8232 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ |
diff --git a/configure.in b/configure.in index c59caae1e5d..2c1734563d0 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -3,7 +3,7 @@ dnl To rebuild the `configure' script from this, execute the command | |||
| 3 | dnl autoconf | 3 | dnl autoconf |
| 4 | dnl in the directory containing this script. | 4 | dnl in the directory containing this script. |
| 5 | dnl | 5 | dnl |
| 6 | dnl Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001 | 6 | dnl Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 |
| 7 | dnl Free Software Foundation, Inc. | 7 | dnl Free Software Foundation, Inc. |
| 8 | dnl | 8 | dnl |
| 9 | dnl This file is part of GNU Emacs. | 9 | dnl This file is part of GNU Emacs. |
| @@ -1975,7 +1975,7 @@ fi | |||
| 1975 | AC_CHECK_FUNCS(touchlock) | 1975 | AC_CHECK_FUNCS(touchlock) |
| 1976 | AC_CHECK_HEADERS(maillock.h) | 1976 | AC_CHECK_HEADERS(maillock.h) |
| 1977 | 1977 | ||
| 1978 | AC_CHECK_FUNCS(gethostname getdomainname dup2 \ | 1978 | AC_CHECK_FUNCS(gethostname getdomainname getpeername dup2 \ |
| 1979 | rename closedir mkdir rmdir sysinfo \ | 1979 | rename closedir mkdir rmdir sysinfo \ |
| 1980 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ | 1980 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ |
| 1981 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ | 1981 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ |