Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-01-20 | install includes from libpthread, not libc_r | Marco S Hyman | |
2002-12-30 | Back out __EOF stuff and just use -1 in ctype.h. This is OK since | Todd C. Miller | |
we don't want any user defines to change how the inlined ctype functions behave. | |||
2002-12-29 | Don't define EOF In ctype.h, some 3rd party code checks whether or | Todd C. Miller | |
not EOF is defined to determine if stdio.h has been included. Instead, use __EOF which should be OK wrt namespace safety. | |||
2002-12-23 | o Ansi function headers | Todd C. Miller | |
o Add __BEGIN_DECLS/__END_DECLS to include files o Safe macros o Remove useless variable assignment in the End function of *hl.c o Some minor KNF, needs more From Dan Weeks | |||
2002-12-15 | Casting to unsigned int in isfoo() causes problems on alpha and | Todd C. Miller | |
sparc64. Change cast back to unsigned char but do a bitwise AND with 0xff to avoid any sign extension weirdness and to make it impossible for us to overflow _C_ctype_. The bitwise AND is probably not needed and may be removed later if this does not trigger compiler bugs. | |||
2002-12-14 | fix typo; noticed by David Krause | Todd C. Miller | |
2002-12-14 | Instead of doing "if (c == EOF) return 0;" use the hook ('?') operator | Todd C. Miller | |
instead to make these one-liners. Works around a compiler bug on vax that affects both the libc and inline versions identically. | |||
2002-12-13 | Less stupid check for 7-bit ascii in toupper/tolower | Todd C. Miller | |
Remove useless check for EOF in isascii | |||
2002-12-13 | Cast to unsigned int, not unsigned char, since what is being cast is an | Todd C. Miller | |
int, not a char. | |||
2002-12-11 | Convert ctype.h macros into inline functions. This fixes the issues we | Todd C. Miller | |
currently have with the macro versions and makes the ctype.h versions 100% identical to what is in libc. Discussed with pjanzen@ and OK'd by deraadt@. | |||
2002-12-11 | Make x_handy in XDR u_int, not int since there are places in the | Todd C. Miller | |
code that assign a u_int value to x_handy. However, this means that we need to be careful checking for overflow as we can no longer subtract a value and check the result for < 0. We reorder the expression instead to avoid this problem (basic algebra). deraadt@ OK | |||
2002-12-03 | Intall getopt.h in /usr/include as well. | Miod Vallat | |
2002-12-03 | GNU-like getopt_long() from NetBSD with changes by me to support | Todd C. Miller | |
getopt_long_only(). At some point this should replace the BSD getopt(3) but we are not there yet. While I am here add protection from the multiple getopt() definitions due to conflicting standards. | |||
2002-12-02 | Add ecvt(), fcvt() and gcvt() for standard compliance and legacy code. | Todd C. Miller | |
2002-12-02 | Add prototype for atoll(3). I must have forgotten to commit this bit | Todd C. Miller | |
when I committed atoll(3). | |||
2002-11-21 | add prototype for strerror_r | Marco S Hyman | |
2002-10-30 | Add [gs]etres[ug]id(2) syscall to libc and use it in emulating some 4.3BSD | Todd C. Miller | |
functions. | |||
2002-10-25 | NULL is now 0L so it is the same size as a pointer. | Todd C. Miller | |
OK mickey@ and discussed with deraadt@ | |||
2002-09-17 | uncommit, since it breaks macppc libc. millert and miod have now said they | Theo de Raadt | |
did NOT approve those for commit. why did mickey feel he was ok to go commiting a set of diffs which had not been passed around and tested by people? we don't know. mickey, have you got something to say for yourself? | |||
2002-09-17 | move __syscall prototype into unistd.h (like everybody else) and avoid ↵ | Michael Shalayeff | |
private protos for it everywhere; millert@ ok | |||
2002-09-08 | Revert this to art's orginal verstion, internal ld.so fields should not | Dale Rahn | |
be advertised in this header. Add a comment that this must be in sync with ld.so. Fixes gdb shared library handing. ok pvalchev@ | |||
2002-09-08 | no , at end of enum | Theo de Raadt | |
2002-09-07 | remove , at end of enum | Theo de Raadt | |
2002-09-03 | build OpenSSL without symlink trees: | Markus Friedl | |
* manpage related things moved to src/libssl/man/Makefile * there are now 3 obj directories src/libssl/{crypto,ssl,man}/ instead of one single src/libssl/obj * instead of running Configure (with generates lots of symlinks, and opensslconf.h) this patch stores pre-computed opensslconf.h files in src/libssl/crypto/arch * requires a make includes before the library can be built * libssl and libcrypto can be build separately (e.g. cd src/libssl/ssl && make obj && make) * make depend is now supported * no more symlink trees tested by miod@ and fries@ | |||
2002-08-30 | put sentinel back in. Thx miod@ | Marc Espie | |
2002-08-30 | Put sentinel back in. | Marc Espie | |
2002-08-06 | restore link_map ABI compatibility between gdb and ld.so. this comes from | Peter Valchev | |
what powerpc and sparc64 had as machine/link.h in 3.1 used by gdb, and will be needed by other ELF architectures to provide gdb solib support; ok drahn | |||
2002-08-02 | Change value of LOGIN_DEFSTYLE from "krb4-or-pwd" to just "passwd". | Todd C. Miller | |
If there is no login.conf or it is corrupt we don't want to make any assumptions about kerberos. By request of deraadt@ | |||
2002-06-29 | Replace strtou?q() with the more standard strtou?ll(), using weak | Todd C. Miller | |
aliases to fake up strtou?q(). espie@ OK. | |||
2002-06-28 | define RPP_STDIN; missed in previous commit | Todd C. Miller | |
2002-06-19 | Updates from lite2 via NetBSD; fixes license. | Todd C. Miller | |
2002-06-16 | install headers from libevent; ok miod@ | Christian Weisgerber | |
2002-06-10 | back-out header change for now. | Marc Espie | |
2002-06-10 | put back in the assert changes for ISO C 99 (put __func__ in it) | Marc Espie | |
2002-06-09 | backout previous | Jun-ichiro itojun Hagino | |
2002-06-09 | pax -s <regex> is botched, don't use it. | Jun-ichiro itojun Hagino | |
2002-06-08 | Add a flag - KVM_NO_FILES which tells kvm_openfiles to not | Artur Grabowski | |
open any files, just return an kvm handle that we can use to some of the functions. | |||
2002-06-07 | Switch powerpc to using new split (aout/elf) link.h | Dale Rahn | |
2002-06-07 | Backout previous change. Since it requires people to upgrade gcc, we want | Miod Vallat | |
to give them a larger timeslot to do that. Requested by deraadt@ and various people on icb or vocally. | |||
2002-06-07 | split link.h into three parts. The MI parts are left in link.h | Artur Grabowski | |
a.out stuff in link_aout.h and ELF stuff in link_elf.h. Switch sparc64 back to MI link.h. drahn@ ok (powerpc will switch soon). | |||
2002-06-05 | Don't use MI dlfcn.h that are identical to the MD one. | Artur Grabowski | |
2002-06-05 | Use attribute((sentinel)) on functions where it makes sense. | Marc Espie | |
(this will warn if they are used without a terminating NULL pointer. Note *pointer*, very useful for arches where 0 != (void *)0, in size) okay millert@ | |||
2002-06-03 | compatiblity -> compatibility | Theo de Raadt | |
decriptor -> descriptor authentciated -> authenticated transmition -> transmission | |||
2002-06-02 | withough -> without | Theo de Raadt | |
2002-06-02 | no argh. we should doc these targets better | Theo de Raadt | |
2002-06-02 | put libssl in PRDIRS instead; andre@ae-35.com | Theo de Raadt | |
2002-06-01 | we do not need this to be Makefile.bsd-wrapper | Theo de Raadt | |
2002-05-31 | do not declare int32_t and such locally. pull sys/types.h. | Jun-ichiro itojun Hagino | |
2002-05-16 | Change S/Key stuff from using a flat file (/etc/skeykeys) to a directory | Todd C. Miller | |
where each user gets their own file, which is owned by that user. An old S/Key database may be converted by running "skeyinit -C" as root. Programs that need to access the S/Key database no longer need to be setuid root. They must now be setgid auth instead. | |||
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@ |