aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-10-02 16:44:14 +0000
committerDave Love2000-10-02 16:44:14 +0000
commit2021ab61cb5414f70eac641447dc27dfd71cfbaa (patch)
tree9833ed479295699554243db2687468b167cdfa2a
parentf6270f62c2edd9f1c4cc047adae1b63ec913110b (diff)
downloademacs-2021ab61cb5414f70eac641447dc27dfd71cfbaa.tar.gz
emacs-2021ab61cb5414f70eac641447dc27dfd71cfbaa.zip
*** empty log message ***
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure6
-rw-r--r--src/ChangeLog8
3 files changed, 15 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6cd2fe53334..53126fa050a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12000-10-02 Dave Love <fx@gnu.org>
2
3 * configure.in: Check for gai_strerror.
4
12000-10-01 Andreas Schwab <schwab@suse.de> 52000-10-01 Andreas Schwab <schwab@suse.de>
2 6
3 * Makefile.in (install-arch-indep): Update list of installed info 7 * Makefile.in (install-arch-indep): Update list of installed info
diff --git a/configure b/configure
index af9deb458fd..87975dfcc6d 100755
--- a/configure
+++ b/configure
@@ -3504,7 +3504,7 @@ else
3504int main() { 3504int main() {
3505 3505
3506/* Ultrix mips cc rejects this. */ 3506/* Ultrix mips cc rejects this. */
3507typedef int charset[2]; const charset x; 3507typedef int charset[2]; const charset x = {0,0};
3508/* SunOS 4.1.1 cc rejects this. */ 3508/* SunOS 4.1.1 cc rejects this. */
3509char const *const *ccp; 3509char const *const *ccp;
3510char **p; 3510char **p;
@@ -5652,7 +5652,7 @@ else
5652#include "confdefs.h" 5652#include "confdefs.h"
5653#include <alloca.h> 5653#include <alloca.h>
5654int main() { 5654int main() {
5655char *p = alloca(2 * sizeof(int)); 5655void *p = alloca(2 * sizeof(int));
5656; return 0; } 5656; return 0; }
5657EOF 5657EOF
5658if { (eval echo configure:5659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 5658if { (eval echo configure:5659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -6166,7 +6166,7 @@ rename closedir mkdir rmdir sysinfo \
6166random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ 6166random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \
6167strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ 6167strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
6168utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \ 6168utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \
6169__fpending mblen mbrlen strsignal setitimer ualarm index rindex 6169__fpending mblen mbrlen strsignal setitimer ualarm index rindex gai_strerror
6170do 6170do
6171echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 6171echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
6172echo "configure:6173: checking for $ac_func" >&5 6172echo "configure:6173: checking for $ac_func" >&5
diff --git a/src/ChangeLog b/src/ChangeLog
index c890250eb49..70e59c36351 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12000-10-02 Dave Love <fx@gnu.org>
2
3 * config.in (HAVE_GAI_STRERROR): Add undef.
4
5 * process.c (Fopen_network_stream): Use it.
6
7 * m/alpha.h (NO_REMAP): Don't define.
8
12000-10-02 Gerd Moellmann <gerd@gnu.org> 92000-10-02 Gerd Moellmann <gerd@gnu.org>
2 10
3 * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can 11 * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can