Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-29 | bugfix: correctly read timer_lib when cross-compiling | Laurent Bercot | |
2016-10-24 | Add timer_lib for support (GNU requires -lrt for timer_create!) | Laurent Bercot | |
2016-10-24 | Add the alarm library, first draft. | Laurent Bercot | |
2016-10-16 | Revert SKALIBS_DEFAULTPATH to /usr/bin:/bin | Laurent Bercot | |
2016-10-14 | Clean up and modernize librandom. | Laurent Bercot | |
Correct random number generation has historically been suprisingly painful to achieve. There was no standard, every system behaved in a subtly different way, and there were a few userland initiatives to get decent randomness, all incompatible of course. The situation is a bit better now, we're heading towards some standardization. The arc4random() series of functions is a good API, and available on a lot of systems - unfortunately not Linux, but on Linux the new getrandom() makes using /dev/random obsolete. So I removed the old crap in librandom, dropped EGD support, dropped dynamic backend selection, made a single API series (random_* instead of goodrandom_* and badrandom_*), added an arc4random backend and a getrandom backend, and defaulted to /dev/urandom backed up by SURF in the worst case. This should be much smaller and logical. However, it's a major API break, so the skarnet.org stack will be changed to adapt. | |||
2016-09-27 | configure: allow $CC to have several words | Laurent Bercot | |
2016-09-26 | Replace c99 compiler test with clang | Laurent Bercot | |
2016-08-12 | ... if I stop being an idiot | Laurent Bercot | |
2016-08-12 | And the next iteration! | Laurent Bercot | |
2016-08-12 | Next iteration... BSD shells are BROKEN | Laurent Bercot | |
2016-08-12 | Redirections are hard for the BSD shells | Laurent Bercot | |
2016-08-12 | Next iteration of the spawn.lib experiment | Laurent Bercot | |
2016-08-12 | Solaris fix attempt for spawn.lib detection | Laurent Bercot | |
2016-08-12 | Add spawn_lib support | Laurent Bercot | |
2016-08-10 | Fix posix_spawn() autodetection (it can be in librt) | Laurent Bercot | |
2016-04-27 | Add new sysdeps for futimens() and futimes(), adapt touch() implementation | Laurent Bercot | |
2016-03-19 | More standard support for cross-compilation (--host only, no --enable-cross) | Laurent Bercot | |
2016-03-10 | Change default SKALIBS_DEFAULTPATH to /usr/bin:/usr/sbin:/bin:/sbin to ↵ | Laurent Bercot | |
accommodate s6-linux-init. Also add /command on slashpackage installations. | |||
2015-11-30 | Easier CROSS_COMPILE support in configure | Laurent Bercot | |
2015-10-26 | Separate sections for smaller static binaries (thanks Denys Vlasenko) | Laurent Bercot | |
2015-10-05 | Remove fucking buggy -Bsymbolic option to the linker.v2.3.7.1 | Laurent Bercot | |
version: 2.3.7.1 | |||
2015-08-12 | Add -Bsymbolicv2.3.6.1 | Laurent Bercot | |
2015-08-12 | Xyzzy fix! (fixes https://bugs.gentoo.org/show_bug.cgi?id=541092) | Laurent Bercot | |
2015-07-13 | - sysdeps for strnlen (Solaris... sigh) | Laurent Bercot | |
- rc for 2.3.5.2 | |||
2015-01-20 | Put auto compiler flags into CPPFLAGS. They're useless for linking. | Laurent Bercot | |
2015-01-02 | Fix configure --help: no support for VAR=VALUE | Laurent Bercot | |
2015-01-02 | More noob-friendly defaults for configure | Laurent Bercot | |
2015-01-02 | Remove the --enable-right-tz configure option. | Laurent Bercot | |
Make it a run-time autodetection instead. Update doc. Thanks to Paul Jarc for the suggestion. | |||
2014-12-21 | So the non-portable MSG_DONTWAIT may alleviate the problem... might | Laurent Bercot | |
as well use it on architectures that support it. | |||
2014-12-20 | Found the BSD unixmessage bug. recvmsg(..., MSG_WAITALL) blocks | Laurent Bercot | |
until buffer full or socket shutdown on BSD, *even if the socket is nonblocking*. So I added an "okwaitall" sysdeps, and won't set MSG_WAITALL on retarded systems. | |||
2014-12-16 | Test _XOPEN_SOURCE=700, you never know... (but not for Solaris) | Laurent Bercot | |
2014-12-15 | Declare static/shared libs in configure, it's specific anyway | Laurent Bercot | |
2014-12-11 | Use -O2 by default | Laurent Bercot | |
2014-12-08 | Remove CPPFLAGS_AUTO entries that disable compiler warnings | Laurent Bercot | |
2014-09-18 | initial commit with rc for skalibs-2.0.0.0 | Laurent Bercot | |