1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

netbsd-elf fixes

This commit is contained in:
Ken Raeburn 1999-10-25 04:50:39 +00:00
parent 39dc7e84e2
commit 3a7093d84f
2 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,9 @@
1999-10-24 Ken Raeburn <raeburn@raeburn.org>
* s/netbsd.h (HAVE_GETLOADAVG): Define as 1.
(UNEXEC, START_FILES, LIB_STANDARD, LIB_GCC): Define ELF versions,
if __ELF__ is defined.
1999-10-24 Gerd Moellmann <gerd@gnu.org>
* window.c (Fnext_window): Add a QUIT in the loop.

View file

@ -12,7 +12,7 @@
#undef KERNEL_FILE
#undef LDAV_SYMBOL
#define HAVE_GETLOADAVG
#define HAVE_GETLOADAVG 1
#define HAVE_UNION_WAIT
@ -57,7 +57,15 @@
#define N_BSSADDR(x) (N_ALIGN(x, N_DATADDR(x)+x.a_data))
#define N_TRELOFF(x) N_RELOFF(x)
#endif
#endif /* not NO_SHARED_LIBS */
#endif /* not NO_SHARED_LIBS and not ELF */
#if !defined (NO_SHARED_LIBS) && defined (__ELF__)
#define START_FILES pre-crt0.o /usr/lib/crt0.o /usr/lib/crtbegin.o
#define UNEXEC unexelf.o
#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o
#undef LIB_GCC
#define LIB_GCC
#endif
#define HAVE_WAIT_HEADER
#define WAIT_USE_INT