1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 2000-09-30 14:35:11 +00:00
parent 1ecefa7a6e
commit 71c9ec5139
3 changed files with 13 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2000-09-30 Gerd Moellmann <gerd@gnu.org>
* configure.in: Support `sparc*-*-netbsd*'.
2000-09-29 Eli Zaretskii <eliz@is.elta.co.il> 2000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
* info/dir (MIME): Add entry for emacs-mime. * info/dir (MIME): Add entry for emacs-mime.

6
configure vendored
View file

@ -819,7 +819,7 @@ case "${canonical}" in
mipsel-*-netbsd*) machine=pmax ;; mipsel-*-netbsd*) machine=pmax ;;
ns32k-*-netbsd*) machine=ns32000 ;; ns32k-*-netbsd*) machine=ns32000 ;;
powerpc-*-netbsd*) machine=macppc ;; powerpc-*-netbsd*) machine=macppc ;;
sparc-*-netbsd*) machine=sparc ;; sparc*-*-netbsd*) machine=sparc ;;
vax-*-netbsd*) machine=vax ;; vax-*-netbsd*) machine=vax ;;
arm-*-netbsd*) machine=arm ;; arm-*-netbsd*) machine=arm ;;
esac esac
@ -3504,7 +3504,7 @@ else
int main() { int main() {
/* Ultrix mips cc rejects this. */ /* Ultrix mips cc rejects this. */
typedef int charset[2]; const charset x = {0,0}; typedef int charset[2]; const charset x;
/* SunOS 4.1.1 cc rejects this. */ /* SunOS 4.1.1 cc rejects this. */
char const *const *ccp; char const *const *ccp;
char **p; char **p;
@ -5652,7 +5652,7 @@ else
#include "confdefs.h" #include "confdefs.h"
#include <alloca.h> #include <alloca.h>
int main() { int main() {
void *p = alloca(2 * sizeof(int)); char *p = alloca(2 * sizeof(int));
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:5659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:5659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then

View file

@ -1,3 +1,9 @@
2000-09-30 Gerd Moellmann <gerd@gnu.org>
* process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
gai_strerror. Make sure xerrno is set if connect fails. Improve
error recovery.
2000-09-29 Jason Rumney <jasonr@gnu.org> 2000-09-29 Jason Rumney <jasonr@gnu.org>
* w32term.c (w32_char_font_type, w32_encode_char) * w32term.c (w32_char_font_type, w32_encode_char)