<feed xmlns='http://www.w3.org/2005/Atom'>
<title>goblin-king/dwm/config.mk, branch master</title>
<subtitle>My dwm build</subtitle>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/'/>
<entry>
<title>initial commit</title>
<updated>2026-08-08T17:18:52+00:00</updated>
<author>
<name>Goblin King</name>
<email>goblin-king@unix-goblins.xyz</email>
</author>
<published>2026-08-08T17:18:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=93a6a39d4f8c8548c5949a4e207c3afac8508cb7'/>
<id>93a6a39d4f8c8548c5949a4e207c3afac8508cb7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.8</title>
<updated>2026-01-30T10:18:38+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2026-01-30T10:18:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=f63cde9354504ee9cfecc07517c03736d0f90c26'/>
<id>f63cde9354504ee9cfecc07517c03736d0f90c26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.7</title>
<updated>2026-01-10T10:31:44+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2026-01-10T10:31:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=85fe518c1af5eb43f222f4d8579e4814ed769f3b'/>
<id>85fe518c1af5eb43f222f4d8579e4814ed769f3b</id>
<content type='text'>
Put the maintainer at the top and bump years (time flies).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Put the maintainer at the top and bump years (time flies).
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.6</title>
<updated>2025-08-09T12:34:03+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2025-08-09T12:34:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=693d94d350c806e77677c35958e18590c26e19d2'/>
<id>693d94d350c806e77677c35958e18590c26e19d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.5</title>
<updated>2024-03-19T11:13:16+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2024-03-19T11:13:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=061e9fe9a7db396c0c4f3d996c3908fb43a6d50c'/>
<id>061e9fe9a7db396c0c4f3d996c3908fb43a6d50c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>config.mk: update to _XOPEN_SOURCE=700L</title>
<updated>2023-02-17T14:27:34+00:00</updated>
<author>
<name>NRK</name>
<email>nrk@disroot.org</email>
</author>
<published>2023-02-17T05:05:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=348f6559ab0d4793db196ffa56ba96ab95a594a6'/>
<id>348f6559ab0d4793db196ffa56ba96ab95a594a6</id>
<content type='text'>
SA_NOCLDWAIT is marked as XSI in the posix spec [0] and FreeBSD and NetBSD
seems to more be strict about the feature test macro [1].

so update the macro to use _XOPEN_SOURCE=700L instead, which is equivalent to
_POSIX_C_SOURCE=200809L except that it also unlocks the X/Open System
Interfaces.

[0]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html#tag_13_42
[1]: https://lists.suckless.org/dev/2302/35111.html

Tested on:
* NetBSD 9.3 (fixed).
* FreeBSD 13 (fixed).
* Void Linux musl.
* Void Linux glibc.
* OpenBSD 7.2 (stable).
* Slackware 11.

Reported-by: beastie &lt;pufferfish@riseup.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SA_NOCLDWAIT is marked as XSI in the posix spec [0] and FreeBSD and NetBSD
seems to more be strict about the feature test macro [1].

so update the macro to use _XOPEN_SOURCE=700L instead, which is equivalent to
_POSIX_C_SOURCE=200809L except that it also unlocks the X/Open System
Interfaces.

[0]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html#tag_13_42
[1]: https://lists.suckless.org/dev/2302/35111.html

Tested on:
* NetBSD 9.3 (fixed).
* FreeBSD 13 (fixed).
* Void Linux musl.
* Void Linux glibc.
* OpenBSD 7.2 (stable).
* Slackware 11.

Reported-by: beastie &lt;pufferfish@riseup.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.4</title>
<updated>2022-10-04T17:35:13+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2022-10-04T17:35:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=50ad171eea9db5ccb36fce2592e047c3282975ff'/>
<id>50ad171eea9db5ccb36fce2592e047c3282975ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: add manual path for OpenBSD</title>
<updated>2022-05-01T16:37:54+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2022-05-01T16:37:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=cd0773cee9bad694dc9a6b1355a32bbe61abadff'/>
<id>cd0773cee9bad694dc9a6b1355a32bbe61abadff</id>
<content type='text'>
Reported by fossy &lt;fossy@dnmx.org&gt;, thanks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by fossy &lt;fossy@dnmx.org&gt;, thanks
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version to 6.3</title>
<updated>2022-01-07T11:39:18+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2022-01-07T11:39:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=d39e2f3441fe18aba8d1a62c08918a411ec6f237'/>
<id>d39e2f3441fe18aba8d1a62c08918a411ec6f237</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>config.mk: fix POSIX_C_SOURCE macro for feature test for snprintf()</title>
<updated>2020-04-03T13:36:32+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2020-04-03T13:36:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.unix-goblins.xyz/goblin-king/dwm/commit/?id=c82db690cc0c4624dad4dc6ae899020799ec84db'/>
<id>c82db690cc0c4624dad4dc6ae899020799ec84db</id>
<content type='text'>
The feature test was incorrect:
_POSIX_C_SOURCE=2

"The value 2 or greater additionally exposes definitions for POSIX.2-1992."
http://man7.org/linux/man-pages/man7/feature_test_macros.7.html

A higher value is needed (atleast 1995):
https://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html

FreeBSD feature test macro:
on
https://github.com/freebsd/freebsd/blob/master/include/stdio.h line 297

This was already fixed in dmenu.

This fixes a warning on FreeBSD, reported by Plasmoduck on IRC, thanks.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The feature test was incorrect:
_POSIX_C_SOURCE=2

"The value 2 or greater additionally exposes definitions for POSIX.2-1992."
http://man7.org/linux/man-pages/man7/feature_test_macros.7.html

A higher value is needed (atleast 1995):
https://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html

FreeBSD feature test macro:
on
https://github.com/freebsd/freebsd/blob/master/include/stdio.h line 297

This was already fixed in dmenu.

This fixes a warning on FreeBSD, reported by Plasmoduck on IRC, thanks.
</pre>
</div>
</content>
</entry>
</feed>
