* Fix installation and uninstallation of Info files built in subdirectories.
* Do not run `./configure --with-included-gettext' during `make distcheck'
if AM_GNU_GETTEXT([external]) is used.
* Correctly uninstall renamed man pages.
* Do not strip escaped newline in variables defined in one condition
and augmented in another condition.
* Fix ansi2knr rules for LIBOBJS sources.
* Clean all known Texinfo index files, not only those which appear to
be used, because we cannot know wich indexes are used in included files.
(Debian Bug #168671)
* Honor only the first @setfilename seen in a Texinfo file.
* Treat "required file X not found" diagnostics as errors (exit status 1).
* Don't complain that a required file is not found when it is a Makefile
target.
* Don't use single suffix inference rules when building `.info'-less
Info files, for the sake of Solaris make.
* The `check' target now depends on `$(BUILT_SOURCES)'.
* Recognize multiple inference rules such as `.a.b .c.d:'.
* Warn about multiple inference rules when -Wportability is used.
* Fix building of deansified files from subdirectories.
* Add missing `fi' in the .c->.obj rules.
* Improve install-sh to work even when names contain spaces or certain
(but not all) shell metachars.
* Fix the following spurious failures in the test suite:
depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
* Noteworthy manual updates:
- Augment the section about BUILT_SOURCES.
- Mention that AM_PROG_CC_STDC is a relic that is beter avoided today.
GRhino, or Rhino its former name, is an Othello/Reversi game.
What distinguish GRhino from most other Othello games is that
GRhino will be targeted for experienced Othello players.
Strong AI is the main focus with some additional good, useful
features (like an endgame solver) is planned. The ultimate
target strength of the AI is that it should be able to beat
the best human player at the highest difficulty level.
WHAT'S NEW with Wine-20021125: (see ChangeLog for details)
- Finished conversion to STRICT compilation mode.
- WinHelp revival.
- Client-side fonts supported even without RENDER extension.
- Regression tests no longer require Perl.
- Lots of bug fixes.
Change MAINTAINER (OK'ed by tron)
Changes:
November 26th, 2002 ivtools-1.0.7
- fixes for compiling with gcc-3.2 using ACE (on RedHat 6.2)
- new comdraw funcs submitted by Secil Ugurel:
- migrate glyphs/text-editor to stand-alone ivtext.
- add Quit option under File menu to ivtext..
- preliminary support for SVG export. For those interested in playing
along at home, ivtools now supports export of line graphics via SVG,
with support for variable widths, colors, and dash-patterns, as well
as rectangle export with fill colors that are blends of foreground and
background (plus none fill).
- refactor OverlayPS::idraw_format to be a pair of set/get methods
where the get method overrides the internal static member value
(_idraw_format) with the value of an idraw_format flag on an
associated Command if there is one, either OvExportCmd or OvPrintCmd.
- the export dialog box now defaults to everything if nothing is selected
in the drawing editor.
- fix drawserv attribute expression propogation used for Null
Convention Logic emulation (http://www.theseus.com).
- a new version number 13 for the idraw format adds support for
executable fonts (as opposed to static fonts). Required by recent
versions of RedHat Linux.
- fix out-of-order destruction of member objects of the central
Unidraw object at program termination.
- disable use of X11 shared memory extension for MacOS X. This may
only be a problem with 10.1, or only be a problem with XFree86 4.2, so
it may be reinstated in the future.
- customize iostream include files for MacOS X Jaguar (10.2), to mask
the difference between Apple's version of gcc-3.1 libstdc++ and
everyone elses. This is untested, so let me know if it worked for you.
- apply diffs generated by Ben Hines in creating a fink package for
Jaguar (MacOS X 10.2)
August 2nd, 2002 ivtools-1.0.6
- more changes for compiling with gcc-2.96 on RedHat 7.*
August 1st, 2002 ivtools-1.0.5
- various compile time fixes for Solaris and Cygwin.
- a proper fix for handling non-idraw PostScript. An improper fix was
introduced in ivtools-1.0.3 that made all idraw format files get
filtered through pstoedit (if you had it). Pointed out by Todd Gruhn.
- changes required to compile ivtools with gcc-3.1. Most all in the area
of migrating from use of an fstream constructor that accepted a FILE*
to use of a derivative class (__gnu_cxx::stdio_filebuf<char>) that does
the same. Wrapped up the difference between 3.0.* and 3.1 by
conditionally defining a fileptr_fstream in src/include/ivstd/fstream.h
to filebuf for 3.0.* and __gnu_cxx::stdio_filebuf<char> for 3.1.
** Constant evolution of the behavior and API of filebuf has been the
single most challenging aspect of keeping ivtools compiling with gcc
and working for the past decade. I really hope things will be stable
for the next decade. **
- fixes for using ACE and ivtools with gcc-3.1
- fix up compiling with ACE using less than gcc-3.*
- disable incremental display while incrementally loading from a URL.
A placeholder raster still gets inserted before the connection is
established, and the rest of the download and display is asynchronous,
which avoids hanging on a net connection.
- compilation fixes based on feedback from Gregory Kriehn. Mostly
adding #include <string.h> where missing. Don't know why this wasn't
a problem in every environment. Should improve support for RedHat 7.*.
June 21st, 2002 ivtools-1.0.4
- give special meaning to a set of parentheses that proceed the
tuple operator ",", by adding an extra level of nesting to the
resultant list. Before the expression "(1,2),(3,4)" yielded
"{1,2,{3,4}}". Now it yields "{{1,2},{3,4}}" as one might expect.
This anomaly stemmed from the fact the tuple operator "," works
by concatenating its right-hand argument to its left-hand argument
if the left-hand argument is already a list (that's how the
interpreter concatenates a compound tuple-expression, i.e. "1,2,3,4").
- fix unitialized variable used when reading from sockets that would
cause a hang.
- add comterp commands for the value of PI (pi), converting radians to
degrees (radtodeg), and converting degrees to radians (degtorad).
- add new matrix transpose command (xpose), which takes a 2d list of numbers
(i.e. a matrix), and transposes them.
- add a matrix addition capability to the comterp "+" operator.
- add matrix multiplication to comterp "*" operator.
- extend matrix multiply to support vector inputs.
- add support for panning with cursor keys (left/right/up/down) as well
as Page Up and Page Down (PgUp/PgDn) for larger vertical moves.
- greatly improve the efficiency of rendering alpha-transparent
rasters with a TrueColor visual. Prior to this each input color was
being looked up in a table that could be as long as 2 to the 24th,
then the weighed average computed in floating point, then the result
rescaled into a TrueColor color. Now everything is done with nothing
more than 32 bit integer multiplies, adds, and shifts. Performance
has gone from a multi-second lag to adequately interactive.
- rename "Custom Tools" to "Extra Tools".
- migrate Attribute, Annotate, and GraphicLoc to "Extra Tools".
- add a :next flag to comdraw's import func. It attempts to
auto-increment the numerics in the last URL and import again.
- sync with diffs from latest Debian release (ivtools-0.9.2-6).
- add gcc-2.96 warning to INSTALL and README files
- remove installation of extraneous scripts when non-local install.
- save/restore raster alpha-transparency value in drawing documents.
- create AlphaTransparentCmd and make available under Edit/"Image Processing"
- create raster peek command for comdraw (RasterPeekFunc).
with some additions by me. Those running exim are advised to update.
Highlights from ChangeLog
1. Added HAVE_SA_LEN=YES to the OS/Makefile-Darwin file.
3. The code for computing load averages was broken in 64-bit Solaris.
10. Tidies to code for calls to fork(); some failures not logged.
26. Fixed some problems with retrying address errors in remote deliveries.
Local changes (will make next release):
Undo the OS/Makefile-NetBSD split that made it into the main tree. This
causes all manner of breakage.
mail/nail.
Nail is a mail user agent derived from Berkeley Mail 8.1. It is
intended to provide the functionality of the POSIX.2 mailx command
with built-in support for MIME messages. This means it can handle
international character sets as well as attachments. In recent
system environments, nail is Unicode/UTF-8 capable. It further
contains some minor enhancements like the ability to set a "From:"
Address.
Supplied (for nail 10.1) by Mishka in PR#19112. Thanks!
mail/nail.
Nail is a mail user agent derived from Berkeley Mail 8.1. It is
intended to provide the functionality of the POSIX.2 mailx command
with built-in support for MIME messages. This means it can handle
international character sets as well as attachments. In recent
system environments, nail is Unicode/UTF-8 capable. It further
contains some minor enhancements like the ability to set a "From:"
Address.
Supplied (for nail 10.1) by Mishka in PR#19112. Thanks!
incompatible.
Fixes buildlink2 problems with converters/libiconv, which assumed that
iconv was in the base system (on Solaris) due to the existance of
/usr/include/iconv.h.
Changes since 0.4 include:
* Multiple homepages
* Intellimouse 5-button support
* Sidebar remembers its state across sessions
* Download fixes
* History improvements
* Accessibility improvements
* Size and memory reduction
* Performance improvements
* Stability improvements
* Many many more themes (http://texturizer.net/phoenix/themes.html)
* Miscellaneous bug fixes, including middle clicking in content area
The full list of changes can be found at:
http://www.mozilla.org/projects/phoenix/phoenix-release-notes.html
Thanks to Oliver Tonnhofer for submitting this update in PR pkg/19328.
Changes since 20020628 (from FIXES file):
modified b.c (with tiny changes in main and run) to support
locales, using strcoll and iswhatever tests for posix character
classes. thanks to ruslan ermilov (ru@freebsd.org) for code.
the function isblank doesn't seem to have propagated to any
header file near me, so it's there explicitly. not properly
tested on non-ascii character sets by me.
2. Update to 20021129.
Changes since 20020628 (from FIXES file):
modified b.c (with tiny changes in main and run) to support
locales, using strcoll and iswhatever tests for posix character
classes. thanks to ruslan ermilov (ru@freebsd.org) for code.
the function isblank doesn't seem to have propagated to any
header file near me, so it's there explicitly. not properly
tested on non-ascii character sets by me.
again changed the distfile without a change in the name, causing checksum
to fail.
No apparent changes in functionality. Distfile and PLIST double-checked
and this commit approved by maintainer wennmach (thanks!).