diff options
| author | Dave Love | 2000-10-02 16:44:14 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-02 16:44:14 +0000 |
| commit | 2021ab61cb5414f70eac641447dc27dfd71cfbaa (patch) | |
| tree | 9833ed479295699554243db2687468b167cdfa2a | |
| parent | f6270f62c2edd9f1c4cc047adae1b63ec913110b (diff) | |
| download | emacs-2021ab61cb5414f70eac641447dc27dfd71cfbaa.tar.gz emacs-2021ab61cb5414f70eac641447dc27dfd71cfbaa.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | configure | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
3 files changed, 15 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-10-02 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Check for gai_strerror. | ||
| 4 | |||
| 1 | 2000-10-01 Andreas Schwab <schwab@suse.de> | 5 | 2000-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 |
| @@ -3504,7 +3504,7 @@ else | |||
| 3504 | int main() { | 3504 | int main() { |
| 3505 | 3505 | ||
| 3506 | /* Ultrix mips cc rejects this. */ | 3506 | /* Ultrix mips cc rejects this. */ |
| 3507 | typedef int charset[2]; const charset x; | 3507 | typedef int charset[2]; const charset x = {0,0}; |
| 3508 | /* SunOS 4.1.1 cc rejects this. */ | 3508 | /* SunOS 4.1.1 cc rejects this. */ |
| 3509 | char const *const *ccp; | 3509 | char const *const *ccp; |
| 3510 | char **p; | 3510 | char **p; |
| @@ -5652,7 +5652,7 @@ else | |||
| 5652 | #include "confdefs.h" | 5652 | #include "confdefs.h" |
| 5653 | #include <alloca.h> | 5653 | #include <alloca.h> |
| 5654 | int main() { | 5654 | int main() { |
| 5655 | char *p = alloca(2 * sizeof(int)); | 5655 | void *p = alloca(2 * sizeof(int)); |
| 5656 | ; return 0; } | 5656 | ; return 0; } |
| 5657 | EOF | 5657 | EOF |
| 5658 | if { (eval echo configure:5659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then | 5658 | if { (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 \ | |||
| 6166 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ | 6166 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ |
| 6167 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ | 6167 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ |
| 6168 | utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \ | 6168 | utimes 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 |
| 6170 | do | 6170 | do |
| 6171 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | 6171 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 |
| 6172 | echo "configure:6173: checking for $ac_func" >&5 | 6172 | echo "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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-10-02 Gerd Moellmann <gerd@gnu.org> | 9 | 2000-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 |