Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Also use the .tar.gz distfile instead of the .zip one.
|
|
redundant, so drop them.
XXX: should one of the pkgs be renamed?
|
|
Release 7.7 07-May-08
---------------------
This is once again mainly a bug-fix release, but there are a couple of new
features.
|
|
Suggested by Hasso Tepper in PR 38626.
|
|
|
|
Bump the pkgrevision because if this change.
|
|
|
|
|
|
Replace first hunk of patch-af with CONFIGURE_ARGS.
Remove next two hunks of patch-af installing some private headers.
This shouldn't be necessary in the 7.x versions. If it is, the author
is willing to help fix the underlying problems.
patch-aa and -ab will be included in the next upstream release.
Bump PKGREVISION.
|
|
|
|
|
|
--
Sunifdef is a commandline tool for eliminating superfluous preprocessor
clutter from C and C++ source files. It is a more powerful successor to
the FreeBSD 'unifdef' tool.
Sunifdef is most useful to developers of constantly evolving products with
large code bases, where preprocessor conditionals are used to configure
the feature sets, APIs or implementations of different releases. In these
environments the code base steadily accumulates #ifdef pollution as
transient configuration options become obselete. Sunifdef can largely
automate the recurrent task of purging redundant #if logic from the code.
|
|
4.1.3
* Fixed incompatibility with older versions of Tcl/Tk ("-state disabled").
* Applied Warren Jones' subversion patch, which prevents the svn error that
occurs when you omit a revision number.
4.1.2
* Can now do "tkdiff OLD-URL[@OLDREV] NEW-URL[@NEWREV]" in Subversion
4.1.1
* Security patch for temp files (CVE-2005-4434)
4.1
* Clearcase support
* Better Subversion support
* -L command line option allows you to control the labels above the diff
file panes.
* tkdiff --help or -h print a usage message for command line without
invoking the GUI.
* The New Diff Dialog is expanded so you can specify all the options.
* The two panes can be resized relative to each other using a sash widget.
|
|
(Entschuldigung!)
|
|
a dependency on the external PCRE library.
|
|
* doc/gcinterface.html: Improve C++ interface documentation.
* allchblk.c (GC_allochblk): Check for overflow during size
rounding.
* malloc.c: (free replacement) Fix caller address space check.
* finalize.c (GC_grow_table): Dereference table in null-check.
* allchblk.c (add_to_fl): disable assertions with USE_MUNMAP,
and refine assertions to handle huge unmergable blocks.
* allchblk.c (GC_enough_large_bytes_left): No longer take
parameters; return free list index bound.
(GC_merge_unmapped): Don't access nexthdr until after null test.
(Fixes bug in 1/29/08 check-in.) (GC_allochblk): Calculate
when splitting is allowable only once here, not when considering each
block. (GC_allchblk_nth): Accept new may_split parameter.
Avoid some redundant tests for exact size matches.
* alloc.c (GC_should_collect): Cache min_bytes_allocd.
(GC_maybe_gc): Make locking assertion testable.
* mark_rts.c: Fix indentation.
* pthread_stop_world.c: Replace old GC_err_printf1 reference.
* misc.c (GC_init_inner): Assert !GC_need_to_lock only when
defined. (GC_call_with_stack_base): Add GC_API.
* os_dep.c (GC_get_stack_base): Add GC_API.
* win32_threads.c: (GC_register_my_thread, GC_unregister_my_thread):
Add GC_API.
* include/gc.h: Add GC_API annotations.
* include/private/gc_locks.h: Define UNCOND_LOCK etc. also for
PCR.
* include/private/gc_priv.h, mark_rts.c, typd_mlc.c:
Add GC_push_typed_structures() to push GC_ext_descriptors.
* allchblk.c (GC_merge_unmapped, GC_freehblk): Refuse to create
blocks large enough that their size, when interpreted as a signed
value, would be negative.
* include/private/gc_priv.h: Update MAX_ROOT_SETS
and LOG_PHT_ENTRIES to handle larger heaps.
* allchblk.c, alloc.c, include/private/gc_priv.h:
Track GC_bytes_dropped and use in GC triggering decisions.
* alloc.c (min_bytes_allocd): Weight atomic blocks less.
* alloc.c (GC_add_to_heap): Call GC_install_header(p) AFTER
adjusting p.
* alloc.c: Define GC_version instead of in version.h.
* version.h: Remove.
* include/gc_version.h: Move most of version.h here.
* include/gc.h, doc/README.macros: Add GC_NO_THREAD_REDIRECTS,
GC_NO_THREAD_DECLS, don't test explicitly for GC_SOLARIS_THREADS.
* alloc.c: Deal correctly with address wrapping for
GC_greatest_plausible_heap_addr and GC_least_plausible_heap_addr.
* finalize.c, include/gc.h (GC_register_disappearing_link,
GC_register_finalizer_inner): Improve out-of-memory handling.
* dyn_load.c (GC_dyld_image_add): Remove ifdef clause and use the macro
GC_GETSECTBYNAME instead.
* include/private/gc_priv.h: Define GC_GETSECTBYNAME according to the
architecture (Darwin).
* thread_local_alloc.c (GC_malloc_atomic, GC_gcj_malloc): Pass
granules, not bytes, to GC_FAST_MALLOC_GRANS.
* include/gc.h: Never include gc_local_alloc.h.
* malloc.c: Update GC_large_allocd_bytes on explicit deallocation.
* allchblk.c: Sanity check GC_max_large_allocd_bytes.
* include/extra/gc.h, include/extra/gc_cpp.h: New.
* include/include.am: Install gc.h and gc_cpp.h in $(prefix)/include
again.
* dbg_mlc.c: Use random() on all glibc systems.
* mach_dep.c (GC_with_callee_saves_pushed): Don't use getcontext() on
HURD. Add comment.
* pthread_stop_world.c (GC_suspend_handler, GC_stop_init): Accomodate
systems without SA_SIGINFO.
* alloc.c, backgraph.c, headers.c, include/private/gc_priv.h:
Maintain GC_our_memory and GC_n_memory.
* dbg_mlc.c (GC_print_smashed_obj): Improve message.
(GC_print_all_smashed_proc): Pass client object address instead of
base.
* dyn_load.c (sort_heap_sects): New. (GC_register_map_entries):
Register sections that are contiguous and merged with our heap.
* malloc.c, os_dep.c (GC_text_mapping): Check for just base name
of libraries.
* malloc.c (calloc): Check for special callers even with
USE_PROC_FOR_LIBRARIES. Move assertion. Add rudimentary
malloc/free tracing.
* misc.c: No longer call GC_init_lib_bounds explicitly.
* thread_local_alloc.c (GC_malloc, GC_malloc_atomic): Always
initialize on demand.
* alloc.c (GC_stopped_mark): Call GC_add_current_malloc_heap()
while world is still running.
* os_dep.c (GC_is_heap_base): Don't call GC_add_current_malloc_heap()
with world stopped.
* include/gc.h (GC_INIT for cygwin): Always call GC_add_roots.
* misc.c (GC_init/GC_init_inner): Perform all work in
GC_init_inner.
|
|
Reported in SF.net bug # 1899047
|
|
headers. Supposedly fixed already in upstream CVS.
This closes PR pkg/38400 from Hans Rosenfeld.
|
|
Don't segfault on invalid RCS files.
|
|
Remove now unneeded comment.
Make tohg work with current mercurial.
Only handle repocopy if we have data.
Implement complete repo file list, approximated by branch file lists.
Fix filelist for nonexisting branches.
|
|
|
|
scsi.c:1047: warning: pointer type mismatch in conditional expression
|
|
Uses internal version of strdup (my_strdup) rather than depending on
availability in all systems. Fixes Linux bulk build.
|
|
The gio/tests issue remains, but I couldn't reproduce it with GCC.
|
|
Noticed by Hasso Tepper in PR 38686.
|
|
|
|
changes:
-Port to gtk 2.12 tooltips API
-Now first toplevel in project automatically shows up in the workspace
-Project no longer allows duplicate widget names
-bugfixes
-translation updates
|
|
This is a maintenance release for the 1.1.x branch. It includes a fix for PHP 4 support (#8681 stripos), several fixes for SOAP API, a security fix, and other minor bug fixes.
Mantis 1.1.0 Released
After 4 alpha releases, 3 release candidates and over 400 features and bug fixes, Mantis 1.1.0 gold is finally released. The highlights of the Mantis 1.1.0 release include:
1. Inclusion of MantisConnect (SOAP API) out of the box
2. Wiki integration (dokuwiki, mediawiki, xwiki),
3. Email queuing,
4. Gravatar integration,
5. DB2 support,
6. Tagging,
7. Filtering perma links,
8. Time tracking,
9. Twitter integration,
10. UTF8 support,
11. Generic configuration page,
12. Show last visited issues,
13. XHTML compliance,
14. Authenticated RSS
|
|
code during the build (if at all - currently it is unused unless
someone patches xml metadata in compiz plugin sources)
-it needs bash and GNU getopt to work correctly
|
|
(and while here, enable quartz-image)
Then atsui support for pango again.
Bump pkgrevision.
|
|
adds these libraries explicitly. With X11_TYPE=modular, they are not
found. This fix does not seem entirely right, but does seem
necessary. It's not clear how this ever built with modular.
|
|
|
|
Compiz is a compositing window manager that uses 3D graphics acceleration
via OpenGL. It provides various new graphical effects and features on
any desktop environment, including Gnome and KDE.
This package contains the compiz option code generator.
|
|
|
|
Compiz is a compositing window manager that uses 3D graphics acceleration
via OpenGL. It provides various new graphical effects and features on
any desktop environment, including Gnome and KDE.
This package contains a gconf plugin for the compiz configuration backend.
|
|
|
|
Compiz is a compositing window manager that uses 3D graphics acceleration
via OpenGL. It provides various new graphical effects and features on
any desktop environment, including Gnome and KDE.
This package contains python bindings for libcompizconfig.
|
|
|
|
Compiz is a compositing window manager that uses 3D graphics acceleration
via OpenGL. It provides various new graphical effects and features on
any desktop environment, including Gnome and KDE.
This package contains a library for the compiz configuration backend.
|
|
detection with gvfs.
|
|
|
|
|
|
|
|
accesses the database directly: instead, it uses mtn annotate. Also,
some compile fixes for "various systems" (says the ChangeLog).
While here, change the distfile to the one without the included
lablgtk, as we don't use it. Also, install the style example
into ${EGDIR}.
|
|
* Bugzilla administrators were not being correctly notified about new releases. (Bug 414726)
* There could be extra whitespace in email subject lines. (Bug 411544)
* The priority, severity, OS, and platform fields were always required by the Bug.create WebService function, even if they had defaults specified. (Bug 384009)
* Better threading of bugmail in some email clients. (Bug 376453)
* There were many fixes to the Inbound Email Interface (email_in.pl). (Bug 92274, Bug 377025, Bug 412943, Bug 413672, and Bug 431721)
* checksetup.pl now handles UTF-8 conversion more reliably during upgrades. (Bug 374951)
* Comments written in CJK languages are now correctly word-wrapped. (Bug 388723)
* All emails will now be sent in the correct language, when the user has chosen a language for emails. (Bug 405946)
* On Windows, temporary files created when uploading attachments are now correctly deleted when the upload is complete. (Bug 414002)
* checksetup.pl now prints correct installation instructions for Windows users using Perl 5.10. (Bug 414430)
3.0.3
* mod_perl no longer compiles Bugzilla's code for each Apache process individually. It now compiles code only once and shares it among each Apache process. This greatly improves performance and highly decreases the memory footprint. (Bug 398241)
* You can now search for '---' (without quotes) in versions and milestones. (Bug 362436)
* Bugzilla should no longer break lines unnecessarily in email subjects. This was causing trouble with some email clients. (Bug 374424)
* If you had selected "I'm added to or removed from this capacity" option for the "CC" role in your email preferences, you wouldn't get mail when more than one person was added to the CC list at once. (Bug 394796)
* Deleting a user account no longer deletes whines from another user who has the deleted account as addressee. The schedule is simply removed, but the whine itself is left intact. (Bug 395924)
* contrib/merge-users.pl now correctly merges all required fields when merging two user accounts. (Bug 400160)
* Bugzilla no longer requires Apache::DBI to run under mod_perl. It caused troubles such as lost connections with the DB and didn't give any important performance gain. (Bug 408766)
Security Fixes:
Unauthorized Bug Change
Cross-Site Scripting
Account Impersonation (Minor)
|
|
Class: Cross-Site Scripting
Versions: 2.17.2 and higher
Description: When using the "Format for Printing" view of a bug (or
the "Long Format" of a bug list, which is the same thing),
there was a cross-site scripting hole--arbitrary text
from a particular URL parameter could be injected into the
page without filtering.
|
|
|
|
This release of Bazaar includes handy improvements to the speed of log and
status, new options for several commands, improved documentation, and better
hooks, including initial code for server-side hooks. A number of bugs have
been fixed, particularly in interoperability between different formats or
different releases of Bazaar over there network. There's been substantial
internal work in both the repository and network code to enable new features
and faster performance.
BUG FIXES:
* Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break
if the remote server was < version 1.2. This was due to a bug in the
RemoteRepository.get_parent_map() fallback code.
(John Arbash Meinel, Andrew Bennetts, #214894)
|
|
Added support for many new processors in all families.
Added support for CONFIG directive on 18F devices.
Support for new COFF format (MPASM default) in gpvo.
Fixed bugs.
|