diff options
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 7 | ||||
-rw-r--r-- | package/info | 2 | ||||
-rw-r--r-- | src/libunixonacid/stat_at.c | 3 |
4 files changed, 12 insertions, 2 deletions
diff --git a/doc/index.html b/doc/index.html index 0628eba..3ac214e 100644 --- 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 index 7736c88..d1991fa 100644 --- 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 index d53131d..0832357 100644 --- 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 index e8b049f..11f7924 100644 --- 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> |