* The stylesheet has changed, so if you use your own, you will need to update
it or the output will look ugly.
* Added support for universal binaries on MacOSX (only the non-GUI part).
* Added CALLER_GRAPH config option and \callergraph command to add a caller
(or called-by) graph to a function or all functions.
* Added REFERENCES_LINK_SOURCE config option which allows to selected if
reference relations should point to the source or to the documentation.
* Fixed encoding of the Czech translation thanks to Jakub Galgonek.
* Added support for QString in Qt4's debug libraries.
* Fixed that the debugger window really comes to the foreground and
receives the focus when the debuggee stops at a breakpoint, when this
option is on
2.0.8:
Stepan Roh - 2005-10-02 09:46
* Fixed line spacing by using font ascender and descender
Sam Lantinga - Sun Apr 30 01:48:40 PDT 2006
* Added gcc-fat.sh for generating Universal binaries on Mac OS X
* Updated libtool support to version 1.5.22
Add build fix patch for freetype2-2.2.1.
Bump BUILDLINK_ABI_DEPENDS for SDL shlib changes.
Package changes:
Merge SDL-arts, SDL-esound, and SDL-nas packages back as options,
all defaulting to on (add "-arts -esound -nas" to PKG_OPTIONS.SDL
to get the previous behaviour of this package). Reason: trying to
get and stay in sync with upstream, who decided not to take back
the relevant changes. Ok jmmv@
Also follow upstream w.r.t. library version numbers; bump
BUILDLINK_API_DEPENDS for that (no real reason to diverge here).
Most patches have been integrated upstream.
Changes in 1.2.10:
1.2.10:
If SDL_OpenAudio() is passed zero for the desired format
fields, the following environment variables will be used
to fill them in:
SDL_AUDIO_FREQUENCY
SDL_AUDIO_FORMAT
SDL_AUDIO_CHANNELS
SDL_AUDIO_SAMPLES
If an environment variable is not specified, it will be set
to a reasonable default value.
Added support for the SDL_VIDEO_FULLSCREEN_HEAD environment
variable, currently supported on X11 Xinerama configurations.
Added SDL_GL_SWAP_CONTROL to wait for vsync in OpenGL applications.
Added SDL_GL_ACCELERATED_VISUAL to guarantee hardware acceleration.
Added current_w and current_h to the SDL_VideoInfo structure,
which is set to the desktop resolution during video intialization,
and then set to the current resolution when a video mode is set.
SDL_SetVideoMode() now accepts 0 for width or height and will use
the current video mode (or the desktop mode if no mode has been set.)
Added SDL_GetKeyRepeat()
Added SDL_config.h, with defaults for various build environments.
Changes in version 2.3, 2006-06-05:
* GLR grammars should now use `YYRECOVERING ()' instead of `YYRECOVERING',
for compatibility with LALR(1) grammars.
* It is now documented that any definition of YYSTYPE or YYLTYPE should
be to a type name that does not contain parentheses or brackets.
fix problems with this package under Mac OS X (and eventually DragonFly).
Fix various problems reported by "pkglint". Bump package revision because
of these changes.
This fixes PR pkg/33664 by Darrin B.Jewell.
By default, this module exports a single function: prompt(). It
prompts the user to enter some input, and returns an object that
represents the user input.
You may specify various flags to the function to affect its behaviour;
most notably, it defaults to automatically chomp the input, unless
the -line flag is specified.
slurp takes:
* a filename,
* a filehandle,
* a typeglob reference,
* an IO::File object, or
* a scalar reference,
converts it to an input stream if necessary, and reads in the entire
stream. If slurp fails to set up or read the stream, it throws an
exception.
This module prototypes the Perl 6 'exported' and 'exportable' traits
in Perl 5.
Instead of messing around with @EXPORT arrays, you just declare which subs
are to be exported (or are exportable on request) as part of those subs.
For example:
sub foo is exported { # by default
...
}
sub bar is exportable { # on request
...
}
Provides the same version objects as included in Perl v5.9.x (and
hopefully in the 5.10.0 release). In fact, if you attempt to use
this module with a version of Perl >= v5.9.0, this module will not
do anything, since the code already exists in the Perl core. Note
that the CPAN release cannot be installed with the interim 5.9.0,
5.9.1, and 5.9.2 releases (since it duplicates code in the core).
If you are testing bleadperl, you will need to check out the latest
release of 5.9.x to get the changes included in 0.50.