Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
"indexmaker" as "mrtgindexmaker.1" to avoid name conflicts. All manual
pages are installed to "share/doc/mrtg" again.
|
|
|
|
pkg/12282. Thanks!
|
|
|
|
|
|
|
|
Catch a few cases where MKDIR/INSTALL -d can be replaced by
INSTALL_*_DIR
|
|
XXX need to teach pkglint to be more picky about this
|
|
|
|
${PREFIX}/share/doc/hdf5/RELEASE.txt.
New Features
============
* The Virtual File Layer, VFL, was added to replace the old file
drivers. It also provides an API for user defined file drivers.
* New features added to snapshots. Use 'snapshot help' to see a
complete list of features.
* Improved configure to detect if MPIO routines are available when
parallel mode is requested.
* Added Thread-Safe support. Phase I implemented. See:
http://hdf.ncsa.uiuc.edu/HDF5/papers/mthdf/MTHDFpaper.htm
for more details.
* Added data sieve buffering to raw data I/O path. This is enabled
for all VFL drivers except the mpio & core drivers. Setting the
sieve buffer size is controlled with the new API function,
H5Pset_sieve_buf_size(), and retrieved with H5Pget_sieve_buf_size().
* Added new Virtual File Driver, Stream VFD, to send/receive entire
HDF5 files via socket connections.
* As parts of VFL, HDF-GASS and HDF-SRB are also added to this
release. To find out details, please read INSTALL_VFL file.
* Increased maximum number of dimensions for a dataset (H5S_MAX_RANK)
from 31 to 32 to align with HDF4 & netCDF.
* Added 'query' function to VFL drivers. Also added 'type' parameter to
VFL 'read' & 'write' calls, so they are aware of the type of data
being accessed in the file. Updated the VFL document also.
* A new h4toh5 utility, to convert HDF4 files to analogous HDF5 files.
* Added a new array datatype to the datatypes which can be created.
Removed "array fields" from compound datatypes (use an array datatype
instead).
* Parallel HDF5 works correctly with mpich-1.2.1 on Solaris, SGI, Linux.
* You can now install the HDF5 documentation using the
``make install-doc'' command. The documentation is installed in the
$(prefix)/doc directory where $(prefix) is the prefix specified by
the (optional) ``--prefix'' flag during configuration.
* HDF5 can operate correctly in the OpenMP environment in a limited way.
Check doc/html/TechNotes/openmp-hdf5.html for details.
|
|
|
|
|
|
Unix Gnutella client for GNOME
|
|
http://www.cs.york.ac.uk/fp/nhc98/status.html
for a summary of changes for this new release.
|
|
- No busy loops when connecting to the NNTP server.
- Handle multiple records return by getaddrinfo(3) at the proper location.
- Avoid unnecessary socket creations and deletions by always passing the
correct address family to open_socket().
|
|
Don't try to create a Berkeley DB file with fopen(); let DB create it.
|
|
|
|
while here, add more options to the f2c-f77 script:
from Jason Beegan,
-r8, promote REAL and COMPLEX to DOUBLE REAL and DOUBLE COMPLEX
-s, to strip executible
generalize the -Wall flag to accept -Wxxx and pass it to the c compiler
-Wxxx for gcc warnings
complete change log from the f2c maintainers since the last packaged
version:
------------------------------------------
libf2c.zip: fix bug with the sequence backspace(n); endfile(n);
rewind(n); read(n). Supply missing (long) casts in a couple of places
where they matter when size(ftnint) == sizeof(int) < sizeof(long).
Tue Jan 18 19:22:24 EST 2000
Arrange for parameter statements involving min(...) and max(...)
functions of three or more arguments to work.
Warn about text after "end" (rather than reporting a syntax error
with a surprising line number).
Accept preprocessor line numbers of the form "# 1234" (possibly
with trailing blanks).
Accept a comma after write(...) and before a list of things to write.
Fri Jan 21 17:26:27 EST 2000
Minor updates to make compiling Win32 console binaries easier. A
side effect is that the MSDOS restriction of only one Fortran file
per invocation is lifted (and "f2c *.f") works.
Tue Feb 1 18:38:32 EST 2000
f2c/src/tokdefs.h added (to help people on non-Unix systems -- the
makefile has always had a rule for generating tokdefs.h).
Fri Mar 10 18:48:17 EST 2000
libf77, libf2c.zip: z_log.c: the real part of the double complex log
of numbers near, e.g., (+-1,eps) with |eps| small is now more accurate.
For example if z = (1,1d-7), then "write(*,*) z" now writes
"(5.E-15,1.E-07" rather than the previous "(4.88498131E-15,1.E-07)".
Thu Apr 20 13:02:54 EDT 2000
libf77, libi77, libf2c.zip: s_cat.c, rsne.c, xwsne.c: fix type
errors that only matter if sizeof(ftnint) != sizeof(ftnlen).
Tue May 30 23:36:18 EDT 2000
expr.c: adjust subcheck() to use a temporary variable of type TYLONG
rather than TYSHORT under -C -I2.
Wed May 31 08:48:03 EDT 2000
Simplify yesterday's adjustment; today's change should be invisible.
Tue Jul 4 22:52:21 EDT 2000
misc.c, function "addressable": fix fault with "f2c -I2 foo.f" when
foo.f consists of the 4 lines
subroutine foo(c)
character*(*) c
i = min(len(c),23)
end
Sundry files: tweaks for portability, e.g., for compilation by overly
fastidious C++ compilers; "false" and "true" now treated as C keywords
(so they get two underscores appended).
libf77, libi77, libf2c.zip: "invisible" adjustments to permit
compilation by C++ compilers; version numbers not changed.
Thu Jul 6 23:46:07 EDT 2000
Various files: tweaks to banish more compiler warnings.
lib?77, libf2c.zip/makefile.u: add "|| true" to ranlib invocations.
Thanks to Nelson H. F. Beebe for messages leading to these changes
(and to many of the ones two days ago).
xsum.c: tweak include order.
Fri Jul 7 18:01:25 EDT 2000
fc: accept -m xxx or -mxxx, pass them to the compiler as -mxxx
(suggestion of Nelson Beebe). Note that fc simply appends to CFLAGS,
so system-specific stuff can be supplied in the environment variable
CFLAGS. With some shells, invocations of the form
CFLAGS='system-specific stuff' fc ...
are one way to do this.
Thu Aug 17 21:38:36 EDT 2000
Fix obscure glitch: in "Error on line nnn of ...: Bad # line:...",
get nnn right.
Sat Sep 30 00:28:30 EDT 2000
libf77, libf2c.zip: dtime_.c, etime_.c: use floating-point divide;
dtime_.d, erf_.c, erfc_.c, etime.c: for use with "f2c -R", compile with
-DREAL=float.
Tue Dec 5 22:55:56 EST 2000
lread.c: under namelist input, when reading a logical array, treat
Tstuff= and Fstuff= as new assignments rather than as logical constants.
|
|
that were not extracted before, but that were requiered in order to run
Netscape.
|
|
|
|
|
|
Used in fox to build in support for Unicode by XUnicode.
|
|
|
|
|
|
Fast and extensive C++ GUI toolkit
|
|
|
|
|
|
|
|
|
|
Experimental constraint logic programming language
|
|
2001-02-22 Steven G. Johnson <stevenj@alum.mit.edu>
* configure.in: fixed cppflags order
2001-02-20 Steven G. Johnson <stevenj@alum.mit.edu>
* base/ctl.h.in, base/main.c, base/math-utils.scm, base/subplex.c,
ChangeLog, configure.in, NEWS: added minimize-multiple-expert fmin
parameter, after a suggestion from Dale Fried
2001-02-04 Steven G. Johnson <stevenj@alum.mit.edu>
* base/ctl.h.in, base/main.c: added hook functions to help us use
MPI (where we need to call MPI_Init and MPI_Finalize)
* base/interaction.scm: cleanups, and made sure output is flushed
* base/extern-funcs.scm, base/help.scm, base/interaction.scm,
base/math-utils.scm, base/simplex.scm, base/utils.scm,
doc/user-ref.html, NEWS, utils/ctl-io.scm: display-many -> print,
added print-ok?
2001-01-21 Steven G. Johnson <stevenj@alum.mit.edu>
* base/ctl.h.in: whoops, fixed prototype
* base/ctl.c, base/ctl.h.in: put ctl_get_list etc. back in because
MPB configure script looks for it
* base/ctl.c, base/ctl.h.in: whoops, fixed 'function support
* base/class.scm, base/ctl.c, base/ctl.h.in, doc/developer.html,
NEWS: add support for 'function type
* utils/ctl-io.scm: put class input & destruction headers in
ctl-io.h so that they can be used elsewhere if desired
* examples/example.c, examples/example.scm: added function-passing
example
* base/class.scm: slight clarification in comment
2001-01-20 Steven G. Johnson <stevenj@alum.mit.edu>
* doc/guile-links.html: another minor change
* doc/guile-links.html: minor change
* doc/license.html: spelling correction
* doc/advanced-user.html: Fixed command-line parameter order
(whoops).
2001-01-07 Steven G. Johnson <stevenj@alum.mit.edu>
* doc/guile-links.html: updated links
* base/main.c, base/math-utils.scm, base/matrix3x3.scm,
base/simplex.scm, base/utils.scm, base/vector3.scm,
doc/license.html, examples/example.c, examples/example.scm,
examples/Makefile.in, examples/run.ctl, utils/ctlgeom.h,
utils/ctl-io.scm, utils/gen-ctl-io.1, utils/gen-ctl-io.in,
utils/geom.c, utils/geom.scm, base/class.scm, base/ctl.c,
base/ctl-f77-glue.c, base/ctl.h.in, base/ctl.scm,
base/extern-funcs.scm, base/help.scm, base/include.scm,
base/interaction.scm, base/io-vars.scm, COPYRIGHT: 2001 copyright
year update
* ChangeLog, configure.in, NEWS: bumped version for new release
|
|
fix s/$1/$_/ at reading COMMENT.
|
|
|
|
|
|
- Update chasen to 2.4.2. ChangeLog is bellow:
2001-02-24 Masayuki Asahara <masayu-a@is.aist-nara.ac.jp>
* Makefile.am: sortdic are obsolete
* connent.cha: Connective Postpositions at the preceding positions
are grouped.
2001-01-04 Masayuki Asahara <masayu-a@is.aist-nara.ac.jp>
* Makefile.am: output zip format(make sjis-dist)
|
|
- Update ipadic to 2.4.2. ChangeLog is below:
2001-02-24 Masayuki Asahara <masayu-a@is.aist-nara.ac.jp>
* Makefile.am: sortdic are obsolete
* connent.cha: Connective Postpositions at the preceding positions
are grouped.
2001-01-04 Masayuki Asahara <masayu-a@is.aist-nara.ac.jp>
* Makefile.am: output zip format(make sjis-dist)
|
|
INSTALL -d => INSTALL_*_DIR
INSTALL => INSTALL_*
Beware that only invocations are changed that don't set special
values for owner, mode or group!
Cleanup suggested by zuntum@IRC
|
|
|
|
INSTALL -d => INSTALL_*_DIR
INSTALL => INSTALL_*
Beware that only invocations are changed that don't set special
values for owner, mode or group!
Cleanup suggested by zuntum@IRC
|
|
|
|
TCM is a collection of graphical editors for different software
specification methods. It contains generic editors (for generic
diagrams, tables and trees), editors for Structured Analysis
(entity-relationship diagrams, data and event flow diagrams,
state-transition diagrams, function refinement trees etc.) and editors
for UML (static-structure diagrams, use-case diagrams, activity
diagrams etc.).
TCM supports constraint checking for single documents (e.g. name
duplication and cycles in is-a relationships). TCM distinguishes
built-in constraints (of which a violation cannot even be attempted)
from immediate constraints (of which an attempted violation is
immediately prevented) and soft constraints (against which the editor
provides a warning when it checks the drawing). TCM is planned to
support hierarchic graphs, so that it can handle, for example,
hierarchic statecharts. Features to be added later include constraint
checking across documents and executable models.
In addition to the TCM file format, TCM outputs Plain PostScript,
Encapsulated PostScript, PNG and the XFig file format. The TCM file
format is simple to read and parse so other forms of output can be
generated easily.
|
|
ChangeLog:
2001-02-24 Masayuki Asahara <masayu-a@is.aist-nara.ac.jp>
release-2.2.3
2001-02-23 TAKAOKA Kazuma <kazuma-t@is.aist-nara.ac.jp>
* Rewrite function definitions in ANSI-C style.
* Remove the code of KoCha.
* lib/select.c (sa_common_prefix_search): The loop can't find
end-of-string. Fix.
|
|
|
|
|
|
|
|
|