Skip to content

Commit 8d9e41d

Browse files
committed
0.8.2 (20230330)
1 parent 7eb2f99 commit 8d9e41d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+426
-256
lines changed

CHANGELOG

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
CHANGELOG
22
=========
33

4+
0.8.2 (20230330)
5+
6+
- COPYING - Add copyrights for libslack's optional getopt/snprintf modules
7+
- .reuse - Add copyrights for libslack's optional getopt/snprintf modules
8+
- make - Exclude man-slack/html-slack/dist-slack from man/html/dist targets
9+
- Fix libslack compile error and install error on Solaris
10+
- doc - Replace http with https for libslack.org/raf.org and remove trailing /
11+
- Change default compiler on OpenBSD to cc
12+
413
0.8.1 (20230313)
514

615
- Fixed compiler error when NDEBUG is defined (Baruch Siach)
@@ -414,6 +423,6 @@ CHANGELOG
414423
URL: https://raf.org/daemon
415424
GIT: https://github.com/raforg/daemon
416425
GIT: https://codeberg.org/raforg/daemon
417-
Date: 20230313
426+
Date: 20230330
418427
Author: raf <raf@raf.org>
419428

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ Additionally, for (optional) libslack/snprintf.c
131131
URL: https://raf.org/daemon
132132
GIT: https://github.com/raforg/daemon
133133
GIT: https://codeberg.org/raforg/daemon
134-
Date: 20230313
134+
Date: 20230330
135135
Author: raf <raf@raf.org>
136136

INSTALL

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ First, uninstall any previous version (optional):
4949

5050
To build and test:
5151

52-
tar xzf daemon-0.8.1.tar.gz
53-
cd daemon-0.8.1
52+
tar xzf daemon-0.8.2.tar.gz
53+
cd daemon-0.8.2
5454
./configure # iff linux, openbsd, freebsd, netbsd, macosx, solaris, gnuhurd or kfreebsd
5555
make # must be gnu make
5656
make test # only tests libslack. to test daemon, see test/README
@@ -244,6 +244,6 @@ Probably has the same UNIX domain datagram problem as Solaris.
244244
URL: https://raf.org/daemon
245245
GIT: https://github.com/raforg/daemon
246246
GIT: https://codeberg.org/raforg/daemon
247-
Date: 20230313
247+
Date: 20230330
248248
Author: raf <raf@raf.org>
249249

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# You should have received a copy of the GNU General Public License
1717
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1818
#
19-
20-
# 20230313 raf <raf@raf.org>
19+
# 20230330 raf <raf@raf.org>
20+
#
2121

2222
CC := gcc
2323
# CC := cc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,6 @@ The `--list` option reports all the currently running named *daemon* processes.
162162
URL: https://raf.org/daemon
163163
GIT: https://github.com/raforg/daemon
164164
GIT: https://codeberg.org/raforg/daemon
165-
Date: 20230313
165+
Date: 20230330
166166
Author: raf <raf@raf.org>
167167

REFERENCES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ REFERENCES
100100
URL: https://raf.org/daemon
101101
GIT: https://github.com/raforg/daemon
102102
GIT: https://codeberg.org/raforg/daemon
103-
Date: 20230313
103+
Date: 20230330
104104
Author: raf <raf@raf.org>
105105

conf/ccenv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1919
#
20+
# 20230330 raf <raf@raf.org>
21+
#
2022

2123
# Modify Makefile to use $CC as CC
22-
#
23-
# 20230313 raf <raf@raf.org>
2424

2525
if [ "x$CC" != x ]
2626
then

conf/destdir

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1919
#
20+
# 20230330 raf <raf@raf.org>
21+
#
2022

2123
# Modify Makefile to change DESTDIR.
22-
#
23-
# 20230313 raf <raf@raf.org>
2424

2525
# Strip off the leading "--destdir=" from the command line option
2626

conf/freebsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1919
#
20+
# 20230330 raf <raf@raf.org>
21+
#
2022

2123
# Modify Makefile, macros.mk and config.h to compile on FreeBSD
22-
#
23-
# 20230313 raf <raf@raf.org>
2424

2525
perl -pi \
2626
-e 's/^(\S+ \+= xnet)$/# $1/;' \

conf/gnuhurd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1919
#
20+
# 20230330 raf <raf@raf.org>
21+
#
2022

2123
# Modify the macros.mk make include files to exercise optional code
22-
#
23-
# 20230313 raf <raf@raf.org>
2424

2525
perl -pi \
2626
-e 's/^(\S+ \+= xnet)$/# $1/;' \

0 commit comments

Comments
 (0)