Skip to content

Commit 8fee614

Browse files
committed
0.6.3 (20040806)
- Fixed bug: --acceptable was broken (chris at edesix.com)
1 parent 088f10e commit 8fee614

Some content is hidden

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

85 files changed

+231
-128
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# or visit http://www.gnu.org/copyleft/gpl.html
2020
#
2121

22-
# 20040102 raf <raf@raf.org>
22+
# 20040806 raf <raf@raf.org>
2323

2424
CC := gcc
2525
# CC := cc
@@ -48,7 +48,7 @@ LIB_MANSECTNAME := C Library Functions - libslack
4848
FMT_MANSECTNAME := File Formats
4949
MAN_GZIP := 1
5050

51-
#CCFLAGS += -O3
51+
CCFLAGS += -O3
5252
CCFLAGS += -Wall -pedantic
5353

5454
# CCFLAGS += -xO4

README

Lines changed: 67 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ they have some very nasty bugs.
141141

142142
First, uninstall any previous version:
143143

144-
cd /usr/local/src/daemon-0.6.1
144+
cd /usr/local/src/daemon-0.6.2
145145
make uninstall
146146

147147
To build and test:
148148

149-
tar xzf daemon-0.6.2.tar.gz
150-
cd daemon-0.6.2
149+
tar xzf daemon-0.6.3.tar.gz
150+
cd daemon-0.6.3
151151
./config # iff linux, solaris, openbsd, freebsd or macosx
152152
make # must be gnu make
153153
make test # only tests libslack. to test daemon, see test/README
@@ -191,38 +191,38 @@ BINARY PACKAGES
191191
~~~~~~~~~~~~~~~
192192
To install from the RPM binary package (into /usr by default):
193193

194-
rpm -i daemon-0.6.2-1.i386.rpm
194+
rpm -i daemon-0.6.3-1.i386.rpm
195195

196196
To install from the RPM binary package into somewhere other than /usr:
197197

198-
rpm --prefix=/usr/local -i daemon-0.6.2-1.i386.rpm
198+
rpm --prefix=/usr/local -i daemon-0.6.3-1.i386.rpm
199199

200200
To install from the (relocatable) Debian binary package (into /usr):
201201

202-
dpkg -i daemon_0.6.2-0_i386.deb # you should really use apt-get
202+
dpkg -i daemon_0.6.3-0_i386.deb # you should really use apt-get
203203

204204
Install from the OpenBSD binary package (into /usr/local):
205205

206-
pkg_add daemon-0.6.2-obsd-i386.tar.gz
206+
pkg_add daemon-0.6.3-obsd-i386.tar.gz
207207

208208
Install from the FreeBSD binary package (into /usr/local):
209209

210-
pkg_add daemon-0.6.2-fbsd-i386.tar.gz
210+
pkg_add daemon-0.6.3-fbsd-i386.tar.gz
211211

212212
Install from the (relocatable) Mac OS X binary package (into /usr/local):
213213

214214
cd /usr/local
215-
tar xzf /usr/local/src/daemon-0.6.2-osx-powerpc.tar.gz
215+
tar xzf /usr/local/src/daemon-0.6.3-osx-powerpc.tar.gz
216216

217217
To install from the (relocatable) Solaris8 binary package (into /opt/daemon):
218218

219-
gunzip daemon-0.6.2.sun4u.pkg.gz
220-
pkgadd -d daemon-0.6.2.sun4u.pkg
219+
gunzip daemon-0.6.3.sun4u.pkg.gz
220+
pkgadd -d daemon-0.6.3.sun4u.pkg
221221

222222
or:
223223

224-
gunzip daemon-0.6.2.i86pc.pkg.gz
225-
pkgadd -d daemon-0.6.2.i86pc.pkg
224+
gunzip daemon-0.6.3.i86pc.pkg.gz
225+
pkgadd -d daemon-0.6.3.i86pc.pkg
226226

227227
REQUIREMENTS
228228
~~~~~~~~~~~~
@@ -351,6 +351,56 @@ All rights reserved.
351351
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
352352
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
353353

354+
MAILING LISTS
355+
~~~~~~~~~~~~~
356+
If you'd like to be kept up to date with daemon releases or have questions
357+
or suggestions, you can join one or more of the following (extremely low
358+
volume) mailing lists (@libslack.org).
359+
360+
daemon-announce (Announcements)
361+
daemon-users (User forum)
362+
daemon-dev (Development forum)
363+
364+
To subscribe to any of these mailing lists, send a mail message to
365+
<listname>-request@libslack.org with "subscribe" as the message body.
366+
367+
E.g.
368+
369+
$ echo subscribe | mail daemon-announce-request@libslack.org
370+
$ echo subscribe | mail daemon-users-request@libslack.org
371+
$ echo subscribe | mail daemon-dev-request@libslack.org
372+
373+
Or you can send a mail message to majordomo@libslack.org with subscribe
374+
listname in the message body. This way, you can include multiple subscribe
375+
commands to subscribe to multiple lists at the same time.
376+
377+
E.g.
378+
379+
$ mail majordomo@libslack.org
380+
subscribe daemon-announce
381+
subscribe daemon-users
382+
subscribe daemon-dev
383+
.
384+
385+
A digest version of each mailing list is also available. Subscribe to
386+
digests as above but append -digest to the listname.
387+
388+
E.g.
389+
390+
$ echo subscribe | mail daemon-announce-digest-request@libslack.org
391+
$ echo subscribe | mail daemon-users-digest-request@libslack.org
392+
$ echo subscribe | mail daemon-dev-digest-request@libslack.org
393+
394+
Or
395+
396+
$ mail majordomo@libslack.org
397+
subscribe daemon-announce-digest
398+
subscribe daemon-users-digest
399+
subscribe daemon-dev-digest
400+
401+
Note that these are all extremely low volume mailing lists so there's not
402+
much use for the digest lists.
403+
354404
REFERENCES
355405
~~~~~~~~~~
356406
Advanced Programming in the UNIX Environment
@@ -740,6 +790,9 @@ HISTORY
740790
- Added hsort_closure(3) (suggested by skaller@maxtal.com.au)
741791
- Added make slack.swig (generate a SWIG input file for libslack)
742792

793+
0.6.3 (20040806)
794+
- Fixed bug: --acceptable was broken (chris@edesix.com)
795+
743796
TODO
744797
~~~~
745798
- Port to NetBSD, Cygwin[?]
@@ -755,5 +808,5 @@ TODO
755808

756809
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
757810
URL: http://libslack.org/daemon/
758-
Date: 20040102
811+
Date: 20040806
759812
Author: raf <raf@raf.org>

conf/freebsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify Makefile, macros.mk and config.h to compile on FreeBSD
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/linux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify Makefile, macros.mk and config.h to compile on Linux
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/macosx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify Makefile, macros.mk and config.h to compile on FreeBSD
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/openbsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify Makefile, macros.mk and config.h to compile on OpenBSD
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/solaris6-cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify the macros.mk make include files to compile on Solaris 6 with cc
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/solaris6-gcc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify the macros.mk make include files to compile on Solaris 6 with gcc
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/solaris8-cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify the macros.mk make include files to compile on Solaris 8 with cc
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

conf/solaris8-gcc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Modify the macros.mk make include files to compile on Solaris 8 with gcc
2424
#
25-
# 20040102 raf <raf@raf.org>
25+
# 20040806 raf <raf@raf.org>
2626

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

0 commit comments

Comments
 (0)