diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2026-05-09 19:04:32 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2026-05-09 19:04:32 +0000 |
| commit | f851b268c586329731b9a213e20360d2ef0f108a (patch) | |
| tree | 17ec4666cb166a40dd708abd47f1153189ff495f | |
| parent | ab1db58a33aa10d04cc556a24ad612cec6e3802c (diff) | |
| download | execline-f851b268c586329731b9a213e20360d2ef0f108a.tar.gz | |
Prepare for 2.9.9.1. Correctly include locale.h when necessary.
| -rw-r--r-- | NEWS | 6 | ||||
| -rw-r--r-- | doc/index.html | 4 | ||||
| -rw-r--r-- | doc/upgrade.html | 6 | ||||
| -rw-r--r-- | package/info | 2 | ||||
| -rw-r--r-- | src/execline/wait.c | 7 |
5 files changed, 19 insertions, 6 deletions
@@ -1,5 +1,11 @@ Changelog for execline. +In 2.9.9.1 +---------- + + - Bugfixes. + + In 2.9.9.0 ---------- diff --git a/doc/index.html b/doc/index.html index f000979..c91fad4 100644 --- a/doc/index.html +++ b/doc/index.html @@ -78,8 +78,8 @@ want nsswitch-like functionality: <h3> Download </h3> <ul> - <li> The current released version of execline is <a href="execline-2.9.9.0.tar.gz">2.9.9.0</a>. -You can access its checksum <a href="execline-2.9.9.0.tar.gz.sha256">here</a>. </li> + <li> The current released version of execline is <a href="execline-2.9.9.1.tar.gz">2.9.9.1</a>. +You can access its checksum <a href="execline-2.9.9.1.tar.gz.sha256">here</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/execline/">execline git repository</a>: diff --git a/doc/upgrade.html b/doc/upgrade.html index bc6d56b..8f472c9 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -19,6 +19,12 @@ <h1> What has changed in execline </h1> +<h2> in 2.9.9.1 </h2> + +<ul> + <li> No functional changes. </li> +</ul> + <h2> in 2.9.9.0 </h2> <ul> diff --git a/package/info b/package/info index 0baad68..361743b 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=execline -version=2.9.9.0 +version=2.9.9.1 category=admin package_macro_name=EXECLINE diff --git a/src/execline/wait.c b/src/execline/wait.c index 26ac5d3..6886c0c 100644 --- a/src/execline/wait.c +++ b/src/execline/wait.c @@ -4,9 +4,6 @@ #include <sys/wait.h> #include <errno.h> -#ifdef EXECLINE_PEDANTIC_POSIX -#include <locale.h> -#endif #include <skalibs/types.h> #include <skalibs/envexec.h> @@ -18,6 +15,10 @@ #include <execline/config.h> #include <execline/execline.h> +#ifdef EXECLINE_PEDANTIC_POSIX +#include <locale.h> +#endif + #define USAGE "wait [ -I | -i ] [ -a | -o ] [ -r | -t timeout ] { pids... } [ prog... ]" #define dieusage() strerr_dieusage(100, USAGE) |
