skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

commit d541b650832bc2bb32abcd0482924de0776776f5
parent 7d06701bfaad445e48832ba4fd189ffc36e34387
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Tue,  5 May 2015 13:24:28 +0000

 OpenBSD sucks, but everyone knew this already.

Diffstat:
Mdoc/index.html | 2+-
Mdoc/upgrade.html | 7+++++++
Mpackage/info | 2+-
Msrc/libunixonacid/stat_at.c | 3+++
4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/doc/index.html b/doc/index.html @@ -59,7 +59,7 @@ with a standard C development environment </li> <h3> Download </h3> <ul> - <li> The current released version of skalibs is <a href="skalibs-2.3.3.0.tar.gz">2.3.3.0</a>. </li> + <li> The current released version of skalibs is <a href="skalibs-2.3.4.0.tar.gz">2.3.4.0</a>. </li> <li> Alternatively, you can checkout a copy of the skalibs git repository: <pre> git clone git://git.skarnet.org/skalibs </pre> </li> </ul> diff --git a/doc/upgrade.html b/doc/upgrade.html @@ -17,6 +17,13 @@ <h1> What has changed in skalibs </h1> +<h2> in 2.3.4.0 </h2> + +<ul> + <li> New function: stat_at() </li> + <li> The rest of the changes are bugfixes or QoL. </li> +</ul> + <h2> in 2.3.3.0 </h2> <ul> diff --git a/package/info b/package/info @@ -1,4 +1,4 @@ package=skalibs -version=2.3.3.0 +version=2.3.4.0 category=prog package_macro_name=SKALIBS diff --git a/src/libunixonacid/stat_at.c b/src/libunixonacid/stat_at.c @@ -26,6 +26,9 @@ int lstat_at (int dirfd, char const *file, struct stat *st) #else + /* OpenBSD plz. lstat() is POSIX. */ +#include <skalibs/nonposix.h> + #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h>