Age | Commit message (Collapse) | Author | Files | Lines |
|
Overview of changes between 1.20.4 and 1.20.5
==============================================
- Fix libtool versioning which was broken in 1.20.4
Overview of changes between 1.20.3 and 1.20.4
==============================================
- Fix OpenType GSUB lookup type 8 crash.
- Bugs fixed in this release:
Bug 540592 Crash in HB_GSUB_Apply_String with Linux-Libertine font
|
|
This is a bugfix release for the 2.3 series which provides some important
fixes for bugs which were introduced in version 2.3.6. Additionally, native
bytecode hinting for TrueType fonts has been improved.
|
|
Overview of Changes from GLib 2.16.3 to GLib 2.16.4
===================================================
* Bug fixes:
528752 Win32 build and SSL not working
539074 Cannot get exit status with g_spawn_command_line_sync()
316221 G_LOCK warns about breaking strict-aliasing rules
519137 g_slice_dup macro needs cast for 64-bit platform
536158 also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal()
529321 make check fails in glib/pcre
314453 Nautilus crashes in Solaris when browsing the attached
file
502511 g_assert_cmphex prints invalid message
538119 glib's mainloop leaks a pipe to sub-processes
540459 there are no way of getting the real number of bytes
written in GMemoryOutputStream
540423 unrecoverable error after g_seekable_truncate(seekable,0,...)
530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
528600 g_dummy_file_get_parent("scheme://example.com/")
536641 Filesystem querying in gio does not list AFS and autofs
file systems
537392 Additional colon in xattr name
528433 gdesktopappinfo snafu ...
526320 should not list mounts that the user doesn't have permiss...
527132 nautilus crash when making ftp connection
532852 totem_pl_parser_parse_with_base: assertion `...
459905 Bug in wcwidth data
534085 g_unichar_iswide_cjk() has a totally wrong table
|
|
Two crashes discovered using the Codenomicon TLS test suite, as reported
in CVE-2008-0891 and CVE-2008-1672, were fixed. The root CA certificates
of commercial CAs were removed from the distribution. Functions were added
to implement RFC3394 compatible AES key wrapping. Utility functions to
handle ASN1 structures were added. The certificate status request TLS
extension, as defined in RFC3546, was implemented. Several other bugfixes
and enhancements were made.
|
|
Buried (deeply) in PR pkg/39079 from Aleksej Saushev.
Ride previous version change again.
|
|
Noted by Aleksej Saushev in PR pkg/39079.
Ride previous version change.
|
|
|
|
|
|
Also update the tk dep to no longer demand tk83. It does not seem to
work all that well with tk84, but it works about the same as it does
with tk83. And depend explicitly on tcl; that was missing.
Primary changes since 1.2.1 seem to be GPLv2 -> GPLv3 and
whitespace/reindenting, but there seems to be a bit more in there
too. There's also now a 12 meg kdevelop blob in the distfile, yay.
Changelog:
GNU Sather 1.2.3 - Jul 7, 2007 - Michael R. Taylor
* Made INT 32-bit even on 64-bit systems
* Changed license to (GPLv3/LGPLv3) or later
There's no changelog for 1.2.2, dunno why.
|
|
|
|
Updated x11/libXxf86vm to 1.0.2 [bjs 2008-07-13]
Updated x11/libXrandr to 1.2.3 [bjs 2008-07-13]
Updated x11/libXft to 2.1.13 [bjs 2008-07-13]
|
|
|
|
Bump BUILDLINK_ABI_DEPENDS according to library version.
Changes between 1.6.1 and 1.6.2 (21-Feb-2008 to 04-Jul-2008)
o Adjust "devtool.func" for latest GNU Libtool compatibility.
[Ralf S. Engelschall]
o Consistently annotate "RFC-XXXX" with "IETF" to clearly
indicate from which standards body this comes from.
[Ralf S. Engelschall]
o Resolve namespace conflicts of recently introduced time_xxx()
functions by using a propoer "uuid_" prefix.
[Ralf S. Engelschall]
o Remove unused "struct timezone" from time_gettimeofday() in
order to simplify portability.
[Ralf S. Engelschall]
o Add support for POSIX clock_gettime(3) in case the Unix/POSIX
gettimeofday(3) is not available.
[Ralf S. Engelschall]
o Upgrade build environment to GNU autoconf 2.62.
[Ralf S. Engelschall]
o Upgrade build environment to GNU libtool 2.2.4.
[Ralf S. Engelschall]
Changes between 1.6.0 and 1.6.1 (19-May-2007 to 21-Feb-2008)
o Fix __VA_COPY_USE_{CSP,CPP} fallback macros for va_copy.
[Mark A. Lindner <mark.a.lindner@gmail.com>]
o PostgreSQL bindings: use SET_VARSIZE() instead
of assigning to bytea->v_len under PostgreSQL >= 8.3
[Ralf S. Engelschall]
|
|
|
|
version is now 2.1.13 (from 2.1.2). ChangeLog:
commit 19240d3605b5f1e88ca5509afffd48acdb7e1c5f
Revert "Drop Requires, use Requires.private instead."
This reverts commit a1c78ce68c5f2106c38b6cb93a6b22420e1a80ab.
Unfortunately this doesn't work on old pkg-config, which made
Requires.private completely useless. That's fixed in 0.22, but...
commit a1c78ce68c5f2106c38b6cb93a6b22420e1a80ab
Drop Requires, use Requires.private instead.
Users of libXft don't need to link with fontconfig, freetype and
Xrender directly if they don't use them.
commit 541c6194d986e7849ee9541a9fd60b0724647a44
Bug #14232: Fix XftDrawRect when Render not supported.
commit 8a7f3d450c1f339f429dbce55df523d026c92375
Register objects used by libXft.
libXft uses XFT_MAX_GLYPH_MEMORY without first registering with
fontconfig.
commit 8ae5ea8c75a7850fa0aca0acc3962b6263f55094
XftFontOpenInfo: Use of uninitialised value of size 8 (bug 11200)
This is due to XftFontInfoFill using the binary representation of the
XftFontInfo to generate fi->hash.
With 64-bit pointers there is padding between .hash and .file in struct
_XftFontInfo. This padding is not initialized, and the hash uses these
bytes.
This will interfere with finding "a matching previously opened font" in
XftFontOpenInfo, and XftFontInfoEqual, which uses memcmp, will have
similar problems.
This fix makes no assumptions about the sizes and alignment of
members of struct _XftFontInfo by using memset. (It also makes
no assumptions about what FcPatternGet* does to its output parameter
when it returns FcResultNoMatch.)
|
|
|
|
commit 203fc002b6948c3942f0461a0346dd07b633222d
Bug #16430: Ignore ConfigureNotify on non-root windows in
UpdateConfiguration
commit 332eee90c4d00be3b11049e0261323abe89a96dc
Rename parameters to clarify QueryVersion/QueryExtension.
These parameters are not treated as input. Rename them to make
the inner workings slightly more obvious.
X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511>
commit 824f3d4a3a4669526a5c391c6668df0384b49cdb
Bug #14388: Remove XRRScreenConfig() and XRRConfig() from Xrandr.h.
It seems that they were never actually implemented.
Also remove the corresponding manpage symlinks.
commit 23a47035818390ca197179a9a69a54badb370990
Hide some private symbols.
XExtensionInfo, XRRExtensionName, XRRFindDisplay, _XRRHasRates and
_XRRVersionHandler are internal to libXrandr. Don't export them.
|
|
|
|
one more change: zero-length strings are set to NULL instead of null-
terminated.
|
|
|
|
commit a766b62880108f278478888f5167a5fbf2819a97
Add configure time options to disable mmx/sse2/vmx
commit 02268903e4311709744c11e495f9b17f171ec5e9
pixman-sse.c: silence pointer-cast compiler warnings.
Cast pointers to words of the same size, not 32-bits.
commit eb2d95de98683a387153f010077ad9c3c3b1b01d
Fix implicit declaration of function 'free'.
Otherwise pointer will be truncated on 64bit arch and
your programs will crash.
commit 29d144712e558aaeb49f4384028dd669d76a410b
Fix memory leak by freeing boxes{16,32}.
After calling pixman_region_init_rects() or
pixman_region32_init_rects(), boxes{16,32} were not freed before
returning. Fixes bug 16312.
commit 5d32519316b40b35113c6df9e15d955a16709ba2
Use pixman_malloc_ab instead of plain malloc for the
fbStore64_generic scratch buffer.
commit b1c70c4e6435d7f15751111828c381feb1d139cf
Move PIXMAN_FORMAT_16BPC to pixman-private.h
commit 7fa966df0ee781fa486715710f389b148c11d36e
Decide based on the image formats whether we need wide compositing.
commit 7cb735c9c0fa55ae1f4d8d13da9f33e3da2ae8fe
Take the source format into account in pixman_expand.
Extract the original bits of the source image for each
component and then replicate up to 16 bits to fill the wide
components. Make sure to hard-code the alpha value to 1 if
the source format didn't have alpha.
commit c0d98e96605c6d03f4b02f337f2f5827165bb092
Make expansion and contraction loops clearer.
commit fc0b28bf6af81428b7ac045614eea97fbf9c4a70
Add wide source picture, external alpha, and transformed
image routines. The wide external alpha path should work
correctly with wide formats. The wide transformed fetch code for
now just does a 32-bit fetch and then expands, which will lose
precision. Source pictures, for now, are evaluated at depth 32
and then are expanded to depth 64. We could get higher precision
by evaluating them directly at depth 64, but this should be good
enough for now.
commit 42a3a2d6fc8d3e521c6914ff8fb89f1fbc673e28
Add wide fetch/store functions.
Use the narrow ones and expand/contract where necessary. Still
need wide paths for fancy pictures, but this gets the
basic stuff working.
commit 7591d3f1d7e0884f9362018edf720724095cf380
Add expand and contract functions to convert between ARGB8
and ARGB16. The expansion function isn't quite correct,
but gives reasonable results.
|
|
|
|
|
|
|
|
disabled because of a (perceived?) conflict between the openssl license
and the GPL.
|
|
|
|
|
|
# IMAP with STARTTLS
The certificate port on TLS was fixed, however this will trigger
one wrong 'New certificate' warning on the first connection.
New in this release:
# Added an option, "Use secure file deletion if possible", which
enables shredding of temporary files and messages instead of
just removing them. This is available on the Other preferences
page.
# Added an option, "Select the HTML part of multipart/alternative
messages". This is available on the Message View/Text Options
preferences page.
# Added an option to the 'Create new folder' dialogue which enables
new folders to inherit the properties of their parent folders
during folder creation.
# Added a hidden option, "two_line_vertical", which toggles the
2-line view in the message list when using the 3-column layout.
Defaults to '1', show 2 lines.
# Added a hidden option, "outgoing_fallback_to_ascii", which allows
the user to specify an outgoing charset/encoding, but still fall
back to 7bit US-ASCII when possible.
Defaults to '1', fallback when possible.
# Added support for the Avant Window Navgator (Awn) information
bubble. This is automatically enabled if dbus is available.
# Face and X-Face headers can now be added globally and per-account
from configuration files under ~/.claws-mail/autofaces/. Further
information is provided in the manual.
# The SHA1 fingerprint is now shown on the SSL certificate dialogue
and the labels are now selectable.
# Several GUI improvements have been made, (Address book, filtering
dialogue, Actions dialogue, and Account preferences).
# New icons have been added for 'Reply to list' and 'Cancel'. The
'Insert file' and 'Close' icons have been improved, as have the
tray icons.
# Added the Trash and Delete icons to the Custom Toolbars options.
# SMTP-only accounts are now not shown in the Receive menus and
Account lists in filtering/processing, as they are irrelevant here.
# tools/csv2addressbook.pl
Support for a gmail exported csv address book was added.
# Updated English, French, and Spanish manuals.
# Updated translations: Brazilian Portuguese, Finnish, French,
German, and Spanish.
# Removed unmaintained translations: Bulgarian, Croatian, Czech,
Dutch, Greek, Hebrew, Japanese, Korean, Norwegian, Russian,
Swedish, and Taiwanese. (New maintainers are very welcome,
contact paul@claws-mail.org)
|
|
|
|
|
|
- test/*: updated a couple of checks.
- tools/*: fixed a couple of minor compiler warnings.
- mibs/ietf/PKTC-IETF-SIG-MIB: added (RFC 5098).
- mibs/ietf/MIDCOM-MIB: added (RFC 5190).
- tools/Makefile.am: added missing files to the distribution.
- mibs/ietf/URI-TC-MIB: added (RFC 5017).
- mibs/ietf/PIM-STD-MIB: added (RFC 5060).
- mibs/ietf/IF-CAP-STACK-MIB,EFM-CU-MIB: added (RFC 5066).
- mibs/ietf/UDPLITE-MIB: added (RFC 5097).
- mibs/ietf/LANGTAG-TC-MIB: added (RFC 5131).
- mibs/ietf/IPMCAST-MIB: added (RFC 5132).
- updated IANA MIBs.
- mibs/ietf/T11-FC-RSCN-MIB: added (RFC 4983).
- mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB: added (RFC 4935).
- mibs/ietf/T11-FC-FABRIC-LOCK-MIB,T11-FC-ZONE-SERVER-MIB: added
(RFC 4936).
- mibs/ietf/ISNS-MIB: added (RFC 4939).
- mibs/ietf/DOT3-EPON-MIB: added (RFC 4837).
- mibs/ietf/DOT3-OAM-MIB: added (RFC 4878).
- mibs/ietf/TCP-ESTATS-MIB: added (RFC 4898).
- mibs/ietf/SIP-{UA,TC,COMMON,SERVER}-MIB: added (RFC 4780).
- mibs/ietf/MAU-MIB: updated (RFC 4836).
- mibs/ietf/DS1-MIB: updated (RFC 4805).
- mibs/ietf/IPSEC-SPD-MIB: added (RFC 4807).
- mibs/iana/IANA-GMPLS-TC-MIB,IANA-IPPM-METRICS-REGISTRY-MIB,
IANA-ITU-ALARM-TC-MIB,IANA-MAU-MIB: added.
- mibs/iana/IANA-CHARSET-MIB,IANA-ADDRESS-FAMILY-NUMBERS-MIB,
IANAifType-MIB: added.
- mibs/ietf/GMPLS-TC-STD-MIB (RFC 4801): added.
- mibs/ietf/GMPLS-TE-STD-MIB (RFC 4802): added.
- mibs/ietf/GMPLS-LSR-STD-MIB,GMPLS-LABEL-STD-MIB (RFC 4803): added.
- mibs/ietf/MSDP-MIB: added (RFC 4624).
- mibs/ietf/PKTC-IETF-MTA-MIB: added (RFC 4682).
- mibs/ietf/ADSL2-LINE-MIB,ADSL2-LINE-TC-MIB: added (RFC 4706).
- mibs/ietf/RAQMON-MIB: added (RFC 4711).
- mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB: added (RFC 4747).
- mibs/ietf/DOCS-CABLE-DEVICE-MIB: updated (RFC 4639).
- mibs/ietf/OSPF-MIB,OSPF-TRAP-MIB: updated (RFC 4750).
- lib/scanner-smi.l: accept also \r as end-of-line.
- mibs/ietf/T11-FC-ROUTE-MIB: added (RFC 4625).
- mibs/ietf/T11-FC-FSPF-MIB: added (RFC 4626).
- mibs/ietf/LMP-MIB: updated (RFC 4631).
- mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB: added (RFC 4672).
- mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB: added (RFC 4673).
- autogen.sh: Use glibtool instead of libtool on Darwin.
- mibs/ietf/RADIUS-AUTH-CLIENT-MIB: updated (RFC 4668).
- mibs/ietf/RADIUS-AUTH-SERVER-MIB: updated (RFC 4669).
- mibs/ietf/RADIUS-ACC-CLIENT-MIB: updated (RFC 4670).
- mibs/ietf/RADIUS-ACC-SERVER-MIB: updated (RFC 4671).
- mibs/ietf/DOCS-IF-MIB: updated (RFC 4546).
- mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB: added (RFC 4547).
- mibs/ietf/DISMAN-NSLOOKUP-MIB,DISMAN-PING-MIB,DISMAN-TRACEROUTE-MIB:
updated (RFC 4560).
- mibs/ietf/ISCSI-MIB: added (RFC 4544).
- mibs/ietf/IPS-AUTH-MIB: added (RFC 4545).
- mibs/ietf/SNMP-USM-AES-MIB: updated (RFC 3826).
|
|
|
|
Bug Fixes:
- Fixed a wildcard matching problem in the daemon when a module has
"use chroot" enabled.
- Fixed a crash bug in the hard-link code.
- Fixed the sending of xattr directory information when the code finds a
--link-dest or --copy-dest directory with unchanged xattrs -- the
destination directory now gets these unchanged xattrs properly applied.
- Fixed an xattr-sending glitch that could cause an "Internal abbrev"
error.
- Fixed the combination of --xattrs and --backup.
- The generator no longer allows a '.' dir to be excluded by a daemon-
exclude rule.
- Fixed deletion handling when copying a single, empty directory (with no
files) to a differently named, non-existent directory.
- Fixed the conversion of spaces into dashes in the %M log escape.
- Fixed several places in the code that were not returning the right
errno when a function failed.
- Fixed the backing up of a device or special file into a backup dir.
- Moved the setting of the socket options prior to the connect().
- If rsync exits in the middle of a --progress output, it now outputs a
newline to help prevent the progress line from being overwritten.
- Fixed a problem with how a destination path with a trailing slash or
a trailing dot-dir was compared against the daemon excludes.
- Fixed the sending of large (size > 16GB) files when talking to an older
rsync (protocols < 30): we now use a compatible block size limit.
- If a file's length is so huge that we overflow a checksum buffer count
(i.e. several hundred TB), warn the user and avoid sending an invalid
checksum struct over the wire.
- If a source arg is excluded, --relative no longer adds the excluded
arg's implied dirs to the transfer. This fix also made the exclude
check happen in the better place in the sending code.
- Use the overflow_exit() function for overflows, not out_of_memory().
- Improved the code to better handle a system that has only 32-bit file
offsets.
Enhancements:
- The rsyncd.conf manpage now consistently refers to the parameters in
the daemon config file as "parameters".
- The description of the --inplace option was improved.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
patch files. This makefile should probably be rearranged to work the
same way as the emacs22 nox11 package (or the nox11 packages should be
finally dropped), but not until after Q2 is branched.
|
|
Updated shells/zsh-current to 4.3.4nb2.
|
|
(CVE-2007-6209).
|
|
|
|
(CVE-2007-6209).
|
|
|
|
PKGREVISION -> 13.
|
|
Updated databases/pear-MDB2_Driver_pgsql to 1.4.1nb1.
Updated databases/pear-MDB2_Driver_mysql to 1.4.1nb1.
|
|
|