Age | Commit message (Collapse) | Author | Files | Lines |
|
ALL:
- libscg now got official version number 0.1 and allows version checking
- libscg/scsi-aix.c compiles again - typo fixed.
- libscg/scsi-bsd-os.c compiles again - typo fixed.
- libscg/scsi-beos.c compiles again - typo fixed.
- libscg/scsi-osf.c compiles again - typo fixed.
- libscg/scsi-wnt.c compiles again - typo fixed.
- libscg/scsiopen.c typecasts to make it compile without
warnings on K&R systems.
- usleep() emulation compiles again on SCO Openserver 3.x
- align_test.c corrected
- scg/scgcmd.h restructured
- several macros to convert integers in network byte order to machine
byte order modified to make them correct on 64 bit machines too.
- usleep() prototype disabled in libport.h (needed for SCO Openserver)
- New supported architecture 9000-777-hp-ux
- Added support for the new smake source distribution.
- Added new AUTOMAKE support for the makefile system when using smake.
The makefile system will now support compilation on unknown platforms
if compilation is done with smake.
cdrecord:
- prints warning if an unofficial version of libscg is used
- removed a bug that caused an endless loop if a TEAC-CDR 50 /55
was present without a media.
This bug has been introduced when tryint to find a workaround
for a bug in the Ricoh 7040 firmware.
- The Optima Dis Covery 650 CD-R is now recognised as Sony-CDU-924
- typecasts in several files to make it compile without
warnings on K&R systems.
- Fixed a bug in the size computation that caused the media to loos 150
sectors too large if cdrecord was run in DAO mode.
- New updated macros in intcvt.h make cdrecord more correct on 64 bit
machines.
- Next_writable Address disabled for CD-ROM drives.
This will abort is someone tries to do a cdrecord -msinfo on a CD-ROM
drive. Before, this resulted in bad values now it results in an
error message.
- Sector size should now be restored in any case. Added 5 new cases.
cdda2wav:
o new ioctl module for Solaris and FreeBSD ioctl methods (ATAPI drives).
Untested yet.
o soundcard support unified. Solaris sound interfaces might be used under
other OS as well. Untested yet.
o support of the cdindex system (see www.cdindex.org for details).
For cd extra and cd-text formats the submission form is generated
automatically.
o Fixed a bug that caused the last *.inf file not to be written on OS/2
|
|
4.46 October 23, 1999
Corrected /proc-based Linux lsof to detect that an
IPv6 address is a mapped IPv4 address. The problem
was reported and analyzed by Arkadiusz Miskiewicz
<misiek@misiek.eu.org>, who also tested the fix.
Added a libc5 library /dev/kmem-based Linux lsof
circumvention, supplied by Jason Lingohr
<lingman@lucid.net.au>.
Corrected a bug in -t (terse) AIX output, reported
by Wendy Lin <af5@taiyang.cc.purdue.edu>. I
introduced the bug at revision 4.43 when adding
FILE_FLAG reporting. This was offered as a patch
to 4.45.
Added a work-around for a problem in the OpenBSD
2.3 <sys/pipe.h> header file. Volker Borchert
<bt@teknon.de> provided and tested it.
Improved description of cross-building lsof for a
64 bit Solaris 7 system on a 32 bit system with
suggestions from Phillip Edwards
<Philip.Edwards@sn.wpafb.af.mil>.
Fixed a gawk POSIX-mode pattern error in the Linux
/dev/kmem-based Mksrc script, based on a tip from
Ambrose C. Li <acli@mingpaoxpress.com>.
Fixed a bug in the Tru64 UNIX IPv6 handling, courtesy
of a report from Casper Dik <casper@holland.sun.com>.
Enabled support for OpenBSD 2.6.
Enabled support for BSDI 4.1, based on a report from
Jeffrey C Honig <jch@bsdi.com> that only a Configure
script change is necessary.
Enabled Configure script to use gcc for building
lsof for a 64 bit Solaris 7 and 8 kernels, if the
gcc version is 2.95 or above.
Improved -i option handling for systems with IPv6
support so that it will search for a host name in
both IPv4 and IPv6 families, when that is possible.
As a companion modification, changed -V processing
to report a single error when a multiple host name
match is requested. Casper Dik <casper@holland.Sun.COM>
helped test.
Fixed a DEC OSF/1, Digital UNIX, Tru64 UNIX repeat
mode bug, reported by Mayer Ilovitz <mayer@cooper.edu>.
Mayer helped test the fix. The fix was offered as a
patch to 4.45.
Changed Solaris socket file recognition scheme, so it
is (nearly) the same through Solaris 8, where the
previous clone device scheme no longer works.
With significant assistance from Casper Dik, added
support for Solaris 8 Beta and Beta refresh. The
IPv6 support in Solaris 8 is still in some flux,
so there are temporary compensations for the
differences between Beta IPv6 support and Beta
refresh IPv6 support. Casper and I hope those
differences disappear by FCS.
Improved the delivery of information on Solaris
2.5.1, 2.6, 7, and 8 door files.
Fixed a repeat mode bug that surfaces when /etc/passwd
changes between cycles. The bug report and diagnostic
help were supplied by Igor Schein <igor@txc.com>.
The fix was offered as a patch to 4.45.
Added support for INRIA IPv6 to NetBSD. Jean-Luc
Richier <Jean-Luc.Richier@imag.fr> provided patches
and a test system on which to verify them.
Added support for AIX 4.3.3. Jeff W. Stewart
<jws@anaconda.cc.purdue.edu> provided a test system.
Made adjustments for FreeBSD 4.0-current.
Improved reporting of information for AIX sockets that
lack protocol control blocks.
|
|
|
|
|
|
|
|
"Sun, the dot in half-a-decade-behind-the-rest-of-the-world.com"
|
|
For Solaris and similarly handicapped systems.
|
|
separately.
Just for posterity, here is how to replicate the problem:
(All this is going back to the maintainers)
#!/bin/sh
# Generates a 'from' directory, then runs cfengine to copy it into 'to'.
# The order of file creation in the from directory is significant -
# the 'bad' file must be picked up _after_ the 'subdir'.
# Obvious caveats about IRIX XFS notwithstanding.
TESTDIR=/tmp/cfenginetest
rm -rf $TESTDIR
mkdir -p $TESTDIR
cd $TESTDIR
# Generate cfengine.conf
cat > cfengine.conf <<END
control:
actionsequence = ( copy )
copy:
$TESTDIR/from
dest=$TESTDIR/to recurse=inf
END
# Generate 'from' directory
mkdir from
cd from
touch ok
mkdir subdir
touch bad
cd subdir
ln ../ok
ln ../bad
cd ../..
cfengine -v
echo
echo "Both 'ok' and 'bad' should have the same number of links (2) in both"
echo "'from' and 'to' directories. 'bad' will have 1 if bug is present."
echo
ls -l from to
|
|
|
|
|
|
panel. You could customise colours, refresh rate. It also allows to
execute some command on click.
After start it puts itself in the docking area on the panel. If
session support is enabled, it will restart itself next time user logs
in.
Pressing righ mouse button shows menu. Pressing left mouse button
executes configured command.
|
|
|
|
Add patches to set the correct Class based on the netmask (in the process of
submitting all patches back to the maintainer)
|
|
|
|
Whacked heavily to work on NetBSD.
|
|
the port's pagesize. Thanks to Chris Demetriou for his help!
Fixes PR 8728 by Dan McMahill <mcmahill@mtl.mit.edu>
|
|
|
|
|
|
|
|
GNOME system monitor - top like, memory graphs, processes detailed view
This package belongs to the GNOME 1.0.53 release.
|
|
|
|
of the blobs, and the brightness and movement speed according to a
process's CPU usage.
|
|
|
|
|
|
BROKEN flag removed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Automate configuration and administration of large systems
|
|
|
|
|
|
|
|
|
|
|
|
Useful for assigning an initial password to new accounts (has
an option to output the encrypted form of the password also).
|
|
|
|
|
|
- knows about /var/run/syslogd.pid, which is what our current syslogd is
creating (even if this is against the manual page of syslogd)
- proc-newstally tweak (a very local proc script)
|
|
|
|
|
|
|