Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-08 | includes should be installed during `make include', not later. | Marc Espie | |
Fixes this for lex and binutils' bfd. Also, do not install ansidecl.h, we don't really need it, bfd.h uses it, and we installed it so that bfd worked, so let bfd.h include it directly. prompted by mickey@ | |||
2002-05-08 | No more need to build this gprof on ELF archs. We use the native one now. | Artur Grabowski | |
2002-05-01 | Sync with OpenBSD hints file from latest perl snapshot. | Todd C. Miller | |
2002-04-30 | typo, from Denis Afonin. | Marc Espie | |
2002-04-30 | use ${DESTDIR} in install* stuff. From form@. | Mike Pechkin | |
millert@ ok | |||
2002-04-21 | Fix perlbdebguts, perlboot, and perlbot man pages. Noticed by Theo | Todd C. Miller | |
in the sets. | |||
2002-04-21 | simpler manpage generation, using make's features. | Marc Espie | |
ok millert@ | |||
2002-04-20 | If $HOME/.cvspass does not exist and we're login, don't abort but create | Federico G. Schwindt | |
the file. Based on a similar diff commited to cvs repository, except we don't warn if the file doesn't exist and we set cvsroot correctly in all the cases. tholo@ ok. | |||
2002-04-20 | use snprintf more; millert ok | Theo de Raadt | |
2002-04-20 | use _exit() in signal handler; millert ok | Theo de Raadt | |
2002-04-19 | create include dir first. | Marc Espie | |
2002-04-18 | update to sendmail 8.12.3 | Todd C. Miller | |
2002-04-17 | Ld speed-up patch. | Marc Espie | |
This reduces the memory requirements to build any recent big libtool package, like kde. Tested by miod, fries, naddy, and various. | |||
2002-04-08 | correct shared libs support in sparc64 gdb; deraadt@ ok. | Federico G. Schwindt | |
2002-04-05 | If the first field of 'uname -a' output is openbsd, treat the OS as | Todd C. Miller | |
OpenBSD regardless of anything else. Fixes a bizarre problem where if the hostname was set to "openbsd" the correct hint file was not found. | |||
2002-04-04 | use v9a disassembler. no more unknown insn. | Federico G. Schwindt | |
2002-04-04 | more changes from gdb-current. allows bt to work correctly; deraadt@ ok. | Federico G. Schwindt | |
2002-04-03 | disable mmalloc for sparc64; fgs ok | Theo de Raadt | |
2002-04-03 | more stuff adapted from gdb -current. | Federico G. Schwindt | |
2002-04-03 | more sparc64 specific code. | Federico G. Schwindt | |
2002-04-02 | enable gdb in sparc64; deraadt@ ok. | Federico G. Schwindt | |
2002-04-02 | update to a more recent version. should fix the getcwd corruption | Federico G. Schwindt | |
seen in sparc64 gdb; deraadt@ ok. | |||
2002-04-02 | Leave space for terminating NULL if empty symbol table. from bfd-current | Federico G. Schwindt | |
via pr 2447; deraadt@ ok. | |||
2002-04-02 | sparc64 support. | Federico G. Schwindt | |
2002-04-02 | wrap sparc64 specific things around ifdef to avoid pollution in sparc. | Federico G. Schwindt | |
2002-04-02 | don't use a specific file for sparc64 defines, move them to tm-sp64.h. | Federico G. Schwindt | |
also, i change the GDB_TARGET_IS_SPARC64 back to old behavior, is not that hard to back port things from gdb-current. | |||
2002-04-02 | move things around so host part can be reused by sparc64. | Federico G. Schwindt | |
2002-04-01 | unbreak gdb in sparc with my last commit. | Federico G. Schwindt | |
2002-04-01 | deal with stack bias in sparc64. | Federico G. Schwindt | |
2002-04-01 | sparc64 native defines to compensate for stack bias. | Federico G. Schwindt | |
2002-03-31 | sparc64 host configuration. | Federico G. Schwindt | |
2002-03-31 | fixed my previous commit. | Federico G. Schwindt | |
2002-03-31 | define GDB_TARGET_IS_SPARC64 to 1; from gdb-current. | Federico G. Schwindt | |
helps back porting sparc-tdep.c stuff needed by sparc64 gdb. | |||
2002-03-31 | sparc64 native support; from NetBSD. | Federico G. Schwindt | |
more pieces are comming. | |||
2002-03-31 | workaround a problem in vax; some malloc() order is causing this if among | Federico G. Schwindt | |
valid lengths are 0 length malloc's. tested by miod@, deraadt@ ok. | |||
2002-03-31 | recognize coredumps in sparc64 (for gdb); deraadt@ ok. | Federico G. Schwindt | |
2002-03-26 | Change the memory model from some home-grown thing that looks to have been | Artur Grabowski | |
designed for mmu-less systems to something more decent that doesn't conflict with how gcc sometimes generates code. WARNING! This breaks binary compatibility. Reinstall from snapshots. Upgrades won't work! I repeat, upgrades won't work! Reinstall. | |||
2002-03-25 | #ifdef out useless test on OpenBSD. f_bavail is a 32bit int and | Todd C. Miller | |
so can never be > LONG_MAX. This test is probably useless on most other operating systems too but on our LP64 platforms it generates a compiler warning. | |||
2002-03-25 | bring in prototypes | Theo de Raadt | |
2002-03-24 | remove /lib and /usr/local/lib from the default search path for the | Brad Smith | |
native linker. -- Ok'd by: pval@, fgsch@ and espie@ | |||
2002-03-22 | Pass INSTALL_STRIP in LDFLAGS. Allows debugging without tweaking the file. | Marc Espie | |
Sync with /usr/share/mk: CXXOPTS. noticed by mpech@ | |||
2002-03-21 | predefine __sparc_v9__ on sparc64; ok art, espie | Peter Valchev | |
2002-03-19 | tweak gcc inliner. More weight for leaf functions. Less depth for other | Marc Espie | |
inlining. Speeds up compilation of heavily inlined code, such as most C++ code, and loses almost no runtime speed. ok art, miod, millert, niklas. | |||
2002-03-19 | When one shared library requires another, it will try to locate the | Peter Valchev | |
required shared library and include it in the link if it's not specified explicitly. This change makes ld look at the -L arguments specified, and build search path. This avoids the need for -rpath-link, and somewhat resembles the a.out linker behaviour. However behaviour of -rpath and -rpath-link is still preserved as a GNU extension. ok drahn, espie looked at it too | |||
2002-03-19 | Remove blatant advertizement. We don't give a fuck if it's NU/Lix | Marc Espie | |
or some other penguin name. | |||
2002-03-16 | semi-current config from gcc, seems to work better for us too; espie@ ok | Michael Shalayeff | |
2002-03-13 | User may specify a suffix longer than 3 characters. Take this into | Todd C. Miller | |
account when sanity checking buffer size; itojun@ | |||
2002-03-07 | revert changes made in rev. 1.17; closes pr # 1903. niklas@ ok. | Federico G. Schwindt | |
2002-03-07 | From NetBSD: Fix evil bitfield bug; hugh@ ok | Federico G. Schwindt | |
2002-03-07 | workaround a gcc bug on vax; hugh@ ok | Federico G. Schwindt | |