Commit graph

13703 commits

Author SHA1 Message Date
uwe
fff098dd84 * ilisp-xfr.el (return-ilisp): Add GNU Emacs 22 (tested) and 23 (not
tested) to the list of emacs versions that need comint-input-ring-index
"hack".

Given that it's been almost 15 years since the date in the preceding
comment I wonder if there should be a better way to handle this, but
for now just use brute force.

Makes comint history navigation work as expected.
2009-08-19 00:45:33 +00:00
seb
f9193bcfc5 Add & enable p5-MooseX-Role-Parameterized 2009-08-18 22:01:34 +00:00
seb
4eb4a97787 Initial import of p5-MooseX-Role-Parameterized version 0.12 in the
NetBSD Packages Collection.

The Perl 5 module MooseX::Role::Parameterized empowers Moose roles
by allowing parameters to be specified when they are combined.
2009-08-18 22:01:03 +00:00
hasso
cca5c49bd3 Update to 1.17.0.
Changes in 1.17.0:

* bugfixes
* advanced load/store optimisation which hoists loads out of loops
* Internal restruturing: Alot of node structures are automatically generated
  from a specification file now.
* Add support for multiple calling conventions
* New experimental support for reading and writing programgraphs to disk
* Support and optimisations for trampolines
* fix PIC support

Changes in 1.16.0:

* bugfixes
2009-08-18 18:57:23 +00:00
drochner
4341555132 recognize builtin libevent-1.4 so that apps can build against it
This way we sidestep the mess introduced by conflicting libev/libevent,
at least on NetBSD>=5.
2009-08-18 17:14:55 +00:00
sno
aa852f3bb1 Updating package for devel/p5-Devel-Declare from 0.005008 to 0.005011
Upstream changes:
0.005011 - 14 Aug 2009
  - Add tests for not interpreting various things as barewords when they
    aren't.
  - Depend on a Test::More with done_testing support.
  - Don't invoke the const callback for a keyword followed by a fat comma.

0.005010 - 11 Aug 2009
  - Don't invoke the linestr callback if we found a keyword and the bufptr
    still contains an arrow at its beginning. This causes the linestr callback
    not to be fired on things like "->method" (if method is a declarator).
    While this might be useful, it mostly caused problems so far. It might be
    added again later as a separate feature.

0.005009 - 10 Aug 2009
  - Stop mixing declarations with code. (Closes: RT#48548) (Cosimo Streppone)
  - Move strip_attrs, which is a purely parsing method, from
    MethodInstaller::Simple to Context::Simple (nperez).
2009-08-18 17:11:20 +00:00
drochner
f6aa5eae5b That's all not true... SONAMEs didn't change since at least 1.4.3.
Relax ABI dependency and remove an outdated comment.
2009-08-18 16:53:14 +00:00
sno
32b03f2931 Updating package for devel/p5-Bit-Vector from 6.7 to 6.9
Upstream changes:
Version 6.9   12.08.2009
 +  Replaced Storable::freeze by Storable::nfreeze
 +  Added more test cases for Storable
 +  Added two example files showing how to freeze/thaw
    using Data::Dumper

Version 6.8   10.08.2009
 +  Fixed the bug of Storable not reconstructing nested data
    structures properly which contain several references to
    the same Bit::Vector object
 +  Fixed hard-coded table size MASKTABSIZE in BitVector.c
 +  Small cosmetic fixes to the documentation
2009-08-18 16:35:57 +00:00
sno
4a260dd411 Updating package for devel/p5-Test-Deep from 0.104 to 0.106
pkgsrc changes:
  - Add license (perl license)
  - Bump version dependency of Test::Tester (see Makefile.PL for details)

Upstream changes:
0.106

Release after dev.

0.105-dev

Fix for perl 5.010.1 - the code to check the version and act correctly
on regexp refs treated .1 as behaving like 5.011.
2009-08-18 16:32:39 +00:00
sno
50b83f2872 Updating package devel/p5-AnyEvent from 4.910 to 5.111
Upstream changes:
5.111 Sun Aug 16 18:44:36 CEST 2009
	- perl errornously requires sockaddr_un structures returned by the
          kernel to have a specific length. work around this bug by padding
          sockaddr_un structures (found to fail on OS X, as perl only uses
          the correct code for GNU/Linux, but likely to fail on other
          OSes as well).

5.11 Wed Aug 12 17:49:37 CEST 2009
        - fixed a bug in run_cmd with input from filename.
        - create a json coder object when none is given in write direction
          to reduce dependency on JSON.

5.1  Tue Aug 11 03:17:32 CEST 2009
        - tcp_connect now reports the correct error in $!, not an unrelated
          one (was broken since 4.91).
        - AE::Handle did not properly clear rtimeout/wtimeout watchers
          when retrying a tcp_connect.
        - new functions: AnyEvent::Util::run_cmd and close_all_fds_except.
        - fixed wrong documentation in AE::Socket.

5.01 Mon Aug 10 03:16:32 CEST 2009
	- last release broke EV child watchers :/.

5.0  Sun Aug  9 17:32:09 CEST 2009
	- officially introduce and document the AE API.
        - lowering the timeout at runtime did not have immediate effect
          in AnyEvent::Handle.
        - AE::Handle now has separate and independent read and write timeout
          settings.
        - probe for Guard module when AnyEvent::Util is loaded, not at
          runtime (Event doesn't like eval "use" from callbacks, and it avoids
          exporting the probe function).
        - Impl::IOAsync's io watchers did not use the filehandle emulation
          code to work around it's watcher limits.
        - work around IO::Async's problems with overloaded objects.
        - try to disable wearnings inside IO::Async, it's just too buggy.
        - do no longer use Event by default, only EV or Perl, Event is too buggy.
	- hackishly provide fast AE:: interface when EV or Perl is the backend.
        - inherit VERSION from AnyEvent::VERSION in most modules.
2009-08-18 14:18:33 +00:00
sno
1558801a61 Updating package for devel/p5-EV from 3.7 to 3.8
Upstream changes:
3.8  Sun Aug  9 15:30:10 CEST 2009
	- implement $loop->signal/signal_ns.
        - (libev) incompatible change: do not necessarily reset signal
          handler to SIG_DFL when a sighandler is stopped.
        - (libev) ev_default_destroy did not properly free or zero some
          members, potentially causing crashes and memory corruption on
          repated ev_default_destroy/ev_default_loop calls.
	- (libev) take advantage of signalfd on GNU/Linux systems.
        - (libev) document that the signal mask might be in an unspecified
          state when using libev's signal handling.
        - (libev) take advantage of some GNU/Linux calls to set
          cloexec/nonblock on fd creation, to avoid race conditions.
        - implement internal glue code to interface more efficiently
          with AnyEvent.
2009-08-18 14:12:06 +00:00
sno
0b9285c614 Updating package for devel/libev from 3.7nb1 to 3.8
- bumping API/ABI-depends, because upstream change says nothing about
  ABI/API incompatible change

Upstream changes:
3.8  Sun Aug  9 14:30:45 CEST 2009
	- incompatible change: do not necessarily reset signal handler
          to SIG_DFL when a sighandler is stopped.
        - ev_default_destroy did not properly free or zero some members,
          potentially causing crashes and memory corruption on repated
          ev_default_destroy/ev_default_loop calls.
	- take advantage of signalfd on GNU/Linux systems.
	- document that the signal mask might be in an unspecified
          state when using libev's signal handling.
        - take advantage of some GNU/Linux calls to set cloexec/nonblock
          on fd creation, to avoid race conditions.
2009-08-18 14:10:53 +00:00
seb
6842da374a Update p5-Moose from version 0.88 to version 0.89.
Pkgsrc changes:
- Adjust dependency on devel/p5-Class-MOP

Upstream changes:
0.89 Thu Aug 13, 2009
    * Moose::Manual::Attributes
      - Clarify "is", include discussion of "bare". (Sartak)

    * Moose::Meta::Role::Method::Conflicting
    * Moose::Meta::Role::Application::ToClass
      - For the first set of roles involved in a conflict, report all
        unresolved method conflicts, not just the first method. Fixes #47210
        reported by Ovid. (Sartak)

    * Moose::Meta::TypeConstraint
      - Add assert_valid method to use a TypeConstraint for assertion (rjbs)

    * Moose::Exporter
      - Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
        does. (doy)
      - Allow specifying role options (alias, excludes, MXRP stuff) in the
        arrayref passed to "use Moose -traits" (doy)

    * Moose::Util
      - Add functions meta_class_alias and meta_attribute_alias for creating
        aliases for class and attribute metaclasses and metatraits. (doy)

    * Moose::Meta::Attribute
    * Moose::Meta::Method::Accessor
      - A trigger now receives the old value as a second argument, if the
        attribute had one. (Dave Rolsky)

    * Moose::Meta::Method::Constructor
      - Fix a bug with $obj->new when $obj has stringify overloading.
        Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
        - However, we will probably deprecate $obj->new, so please don't start
          using it for new code!
2009-08-18 12:13:23 +00:00
seb
4248cbde91 Update p5-Class-MOP from version 0.91 to version 0.92.
Upstream changes:
0.92 Thu Aug 13, 2009
    * Class::MOP::Class
    * Class::MOP::Package
      - Move get_method_map and its various scaffolding into Package. (hdp)

    * Class::MOP::Method
      - Allow Class::MOP::Method->wrap to take a Class::MOP::Method object as
        the first argument, rather than just a coderef. (doy)

    * Class::MOP::Attribute
    * Class::MOP::Class
      - Allow attribute names to be false (while still requiring them to be
        defined). (rafl)
2009-08-18 12:12:45 +00:00
hasso
186f0b45fa More portable fix for upper bound for signals problem pulled out from
upstream git repo. Should fix build on Solaris, FreeBSD and DragonFly.

If there is still need for Darwin specific fix with __DARWIN_NSIG (there is
no NSIG or it's semantically different like NSIG and _NSIG in Linux), please
add it back.
2009-08-18 05:40:44 +00:00
agc
e835f30db1 Update tre to version 0.7.6:
A huge thankyou to Ville Laurikari for changing the license on tre to
be a two clause BSD license:

        Version 0.7.6
          - The license is changed from LGPL to a BSD-style license.  The new
            license is essentially the same as the "2 clause" BSD-style
            license used in NetBSD.  See the file LICENSE for details.

          - No longer using gnulib due to potential license conflicts.

          - Bug fixes.

Take maintainership of this package.
2009-08-17 21:00:01 +00:00
agc
d0e6a9be34 Update tre to version 0.7.6:
A huge thankyou to Ville Laurikari for changing the license on tre to
be a two clause BSD license:

	Version 0.7.6
	  - The license is changed from LGPL to a BSD-style license.  The new
	    license is essentially the same as the "2 clause" BSD-style
	    license used in NetBSD.  See the file LICENSE for details.

	  - No longer using gnulib due to potential license conflicts.

	  - Bug fixes.

Take maintainership of this package.
2009-08-17 20:58:26 +00:00
hasso
983c2d6a08 Needs msgfmt. 2009-08-17 18:33:22 +00:00
drochner
9e5727c1ae mark as conflicting with libevent, bump PKGREVISION 2009-08-17 11:08:30 +00:00
drochner
b876faceba this conflicts with libev, ride on recent update 2009-08-17 11:07:55 +00:00
tron
0f61c94e6b Fix build problem under Mac OS X (Leopard?). 2009-08-17 10:26:17 +00:00
wiz
fcf9685ace pkglint fixes. Merge in maintainer from wip. 2009-08-16 15:38:01 +00:00
wiz
124c14e18b Bump PKGREVISION for libevent ABI bump. 2009-08-16 15:35:43 +00:00
wiz
2edc3ff98e Bump ABI depends, like Makefile suggests. 2009-08-16 15:35:35 +00:00
wiz
a2b1e2cfb1 Update to 1.4.12:
Changes in 1.4.12-stable:
Try to contain degree of failure when running on a win32 version so heavily firewalled that we can't fake a socketpair.
Fix an obscure timing-dependent, allocator-dependent crash in the evdns code.
Use __VA_ARGS__ syntax for varargs macros in event_rpcgen when compiler is not GCC.
Activate fd events in a pseudorandom order with O(N) backends, so that we don't systematically favor low fds (select) or earlier-added fds (poll, win32).
Fix another pair of fencepost bugs in epoll.c.  [Patch from Adam Langley.]
Do not break evdns connections to nameservers when our IP changes.
Set truncated flag correctly in evdns server replies.
Disable strict aliasing with GCC: our code is not compliant with it.

Changes in 1.4.11-stable:
Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen]
Remove the limit on size of HTTP headers by removing static buffers.
Fix a nasty dangling pointer bug in epoll.c that could occur after epoll_recalc(). [Patch from Kevin Springborn]
Distribute Win32-Code/event-config.h, not ./event-config.h

Changes in 1.4.10-stable:
clean up buffered http connection data on reset; reported by Brian O'Kelley
bug fix and potential race condition in signal handling; from Alexander Drozdov
rename the Solaris event ports backend to evport
support compilation on Haiku
fix signal processing when a signal callback delivers a signal; from Alexander Drozdov
const-ify some arguments to evdns functions.
off-by-one error in epoll_recalc; reported by Victor Goya
include Doxyfile in tar ball; from Jeff Garzik
correctly parse queries with encoded \r, \n or + characters
2009-08-16 15:35:03 +00:00
wiz
d232f469ca Update to 0.8.12. Set LICENSE.
Tue Jul  7 19:45:12 CEST 2009, Michael Riepe <libelf@mr511.de>

	* README:
	* VERSION:
		update for 0.8.12 release.

	* lib/libelf.h:
	* lib/x.elfext.c:
		add new and deprecate old functions.

Fri May 22 19:17:14 CEST 2009, Michael Riepe <libelf@mr511.de>

	* README:
	* VERSION:
		update for 0.8.11 release.

	* lib/libelf.h:
		add ELF_F_LAYOUT_OVERLAP flag.

	* lib/rawfile.c:
		fix re-read zero size bug.

	* lib/update.c:
		honor ELF_F_LAYOUT_OVERLAP flag.
2009-08-16 14:27:30 +00:00
wiz
b3a5990bd9 Fix HOMEPAGE and MASTER_SITES (they were swapped). 2009-08-16 14:25:26 +00:00
wiz
62d538ffa6 Update to 0.13, set LICENSE.
Add daemon_reset_sigs() and daemon_unblock_sigs() calls for resetting
signal handlers to sensible states; improve error handling.
2009-08-16 14:24:01 +00:00
wiz
33883fdc79 Update to 2.1.1. Make libXt a run-time dependency, because a program
is linked against it. Set LICENSE. Convert to user-destdir.

KDbg 2.1.1.  kdbg-2.1.1
Fix 'make dist' when srcdir != builddir.
Merge branch 'admin' into maint
Code cleanup of the treatment of display expressions.
Remove the one %s limitation in type table expressions.
Update installation instructions again.
Update the admin/ directory.
Specify the encoding of .po files and the Russian ...
Remove $Id$.
Insert a license note at the top of source files.
Make the desktop entry standard compliant.
Fix crash when trying to disassemble source without...
Update my email address.
Update messages.
Extend the copyright to 2008.
Update README with current installation instructions.
A Simplified Chinese translation.
Don't crash on Del in the Watches window while no progr...
Update Spanish translations.
KDbg-2.1.0. kdbg-2.1.0
Update German translation.
Merge new message strings.
Fix a typo in What's This help.
kdbg does not work with core files on FreeBSD
KDbg 2.1.0-rc1. kdbg-2.1.0-rc1
Document that \r is handled by the output window.
Implement text search in terms of QTextEdit::find().
Speed up display of disassembly.
Add a new type table that recognizes the basic_strings...
Merge branch 'maint'
Extend the copyright to 2007.
Some items of the TODO list have been completed.
Merge branch 'syntax-highlight'
Fix build on some 64bit platforms.
Syntax highlighter: Highlight keywords.
Syntax highlighter: Highlight preprocessor lines.
Syntax highlighter: Highlight strings.
Syntax highlighter: Highlight C and C++ comments.
Add a basic syntax highlighter.
Clean up context menu handling in the files window.
Accept text dropped onto the watches window.
Restore the source window's context menu.
Re-add keyboard cursor navigation in the source code...
Remove the now unused classes TextView and TableView.
Maintain and highlight the current line.
Rewrite SourceWindow to be derived from a QTextEdit.
Prepare for QTextEdit transition: Bring KTextView close...
Fix signed/unsigned comparisions.
Prepare for QTextEdit transition: Do not use m_texts...
Prepare for QTextEdit transition: Add KTextEdit::charAt...
Remove line terminators in disassembled code.
commit | commitdiff | tree | snapshot (tar.gz zip)
Teach the output window about '\r' and '\n'.
Derie the output window from QTextEdit.
Remember the width of column 1 of Locals and Watch...
Merge w
Fix a crash when a value is edited in a floating variab...
Fix stack trace of local functions. iff | tree | snapshot (tar.gz zip)
Merge with 2.0.
Do not add the artificial name of anonymous structs...
Recognize struct values that are anonymous structs...
2009-08-16 14:11:30 +00:00
wiz
43d2718fad Update to 4.13, set LICENSE.
4.13 (18 September 2008)

* A reference card for Texinfo is now available, in doc/refcard.  For
  convenience, preformatted PDF's for letter-size and A4 paper are included.

* makeinfo:
  . new option --internal-links for HTML output, to write a tsv file
    mapping indexed/toc terms to links, for easy reference from external
    documents.
  . - as an input file name reads standard input.

* info:
  . support for multibyte encodings such as UTF-8.
  . new option --show-malformed-multibytes, to display malformed multibyte
  sequences.
  . new environment variable INFO_MAN_COMMAND sets the name of man binary
  (use it if you a need to override PATH settings).

* install-info:
  . bug fix: support names with embedded periods (e.g., config.status) again.

* Distribution:
  . autoconf 2.63.
2009-08-16 13:57:43 +00:00
wiz
aefffb5ad9 Update to 4.3.1. Add gnu-gpl-v3 to LICENSE, since README claims it
also affects some files.

Changes between GMP version 4.3.0 and 4.3.1

  Bugs:
  * Fixed bug in mpn_gcdext, affecting also mpz_gcdext and mpz_invert.
    The bug could cause a cofactor to have a leading zero limb, which
    could lead to crashes or miscomputation later on.
  * Fixed some minor documentation issues.

  Features:
  * Workarounds for various issues with Mac OS X's build tools.
  * Recognise more IBM "POWER" processor variants.


Changes between GMP version 4.2.X and 4.3.0

  Bugs:
  * Fixed bug in mpz_perfect_power_p with recognition of negative perfect
    powers that can be written both as an even and odd power.
  * We might accidentally have added bugs since there is a large amount of
    new code in this release.

  Speedups:
  * Vastly improved assembly code for x86-64 processors from AMD and Intel.
  * Major improvements also for many other processor families, such as
    Alpha, PowerPC, and Itanium.
  * New sub-quadratic mpn_gcd and mpn_gcdext, as well as improved basecase
    gcd code.
  * The multiply FFT code has been slightly improved.
  * Balanced multiplication now uses 4-way Toom in addition to schoolbook,
    Karatsuba, 3-way Toom, and FFT.
  * Unbalanced multiplication has been vastly improved.
  * Improved schoolbook division by means of faster quotient approximation.
  * Several new algorithms for division and mod by single limbs, giving
    many-fold speedups.
  * Improved nth root computations.
  * The mpz_nextprime function uses sieving and is much faster.
  * Countless minor tweaks.

  Features:
  * Updated support for fat binaries for x86_32 include current processors
  * Lots of new mpn internal interfaces.  Some of them will become public
    in a future GMP release.
  * Support for the 32-bit ABI under x86-apple-darwin.
  * x86 CPU recognition code should now default better for future
    processors.
  * The experimental nails feature does not work in this release, but
    it might be re-enabled in the future.

  Misc:
  * The gmp_version variable now always contains three parts.  For this
    release, it is "4.3.0".
2009-08-16 13:42:33 +00:00
wiz
0596502db7 Update to 1.2.2:
Eet 1.2.2 has been released with several bugfixes and improvements.
It is considered stable.
2009-08-16 13:32:52 +00:00
wiz
ab701bf51a Update to 1.5.9. Set LICENSE.
This release primarily focuses on bugfixes. The main new feature
is the ability to include source code in the LaTeX/PDF output.
2009-08-16 13:28:30 +00:00
wiz
23ae7d0b85 Update to 3.5.5:
2009-02-26 21:01 +0000 [r932530-932534] Amilcar do Carmo Lucas <amilcar kdevelop.org>
languages/cpp/debugger/framestackwidget.cpp,
languages/cpp/debugger/framestackwidget.h
languages/cpp/debugger/framestackwidget.cpp,
languages/cpp/debugger/framestackwidget.h
Add a verification so the contents of the frame stack window is updated only
when it is visible. Patch by Anderson Luiz da Silva. BUG 147607
adds a verification so the contents of the frame stack window is

2009-02-25 12:50 +0000 [r931535] Andrew Coles <andrew_coles yahoo.co.uk>
buildtools/autotools/autoprojectpart.cpp
Corrected typos: exclamation marks and abbreviative apostrophes are a no-no.

2009-02-23 13:47 +0000 [r930440] Andrew Coles <andrew_coles yahoo.co.uk>
languages/cpp/pcsimporter/qt4importer/settingsdialog.cpp,
languages/cpp/includepathresolver.cpp,
languages/cpp/pcsimporter/qtimporter/settingsdialogbase.ui,
parts/astyle/astyleconfig.ui,
languages/cpp/debugger/gdbcontroller.cpp,
languages/cpp/pcsimporter/kdelibsimporter/settingsdialog.cpp,
(...)
Fixed various typos.

2009-02-15 19:48 +0000 [r926595] Andreas Pakulat <apaku gmx.de>
lib/cppparser/lexer.cpp
Fix endless loop by checking for null-character explicitly instead of relying
on a QChar->bool auto-conversion. Patch by Albert Zeyer - thanks.
BUG:184420
2009-08-15 21:28:12 +00:00
wiz
498af3f052 Fix getline breakage on current by renaming getline to get_line. 2009-08-15 17:15:32 +00:00
wiz
345716d115 Update to 3.5.4. Set LICENSE. Fix getline breakage.
Over 30 bugs fixed.

(3.5.5 is out, but I'm still looking for the source tarball.)
2009-08-15 17:04:51 +00:00
obache
5b2ba9108f Fixes PLIST for arm and sparc with jit option. 2009-08-15 05:03:30 +00:00
wiz
0109aee1fb Update to 3.6.4, set LICENSE to mpl-1.0.
Opal-3.6.4:
2009-07-05 05:39  rjongbloed

	* [r23075] src/sip/sippdu.cxx:
	  Fixed unnecessary attempt abort a transaction that has completed
	  causing some confusing logs.

Opal-3.6.2:
2009-03-18 03:47  rjongbloed

	* [r22213] version.h:
	  Update version number for beta v3.6.2

2009-03-18 22:01  rjongbloed

	* [r22216] plugins/video/MPEG4-ffmpeg/ReadMe.txt:
	  Removed reference to compatibility issues with old H.263 codec as
	  that is now deprecated, thanks Eugen Dedu

2009-03-18 22:51  rjongbloed

	* [r22220] ., src/codec/rfc2833.cxx:
	  Stopped transmission of CED/CNG continually retrying when there
	  is no payload type to use, should not even try and start as this
	  indicates that the remote did not negotiate the ability to
	  receive this signals.

2009-03-19 00:07  rjongbloed

	* [r22224] ., src/sip/sipcon.cxx:
	  A SIP 488 response may also indicate a codec mismatch, not just a
	  415 response.

2009-03-19 03:16  rjongbloed

	* [r22228] ., src/opal/call.cxx:
	  Fixed filtering of media formats so is done by both connections
	  in call.

2009-03-19 03:48  rjongbloed

	* [r22229] ., samples/faxopal/main.cxx, samples/faxopal/main.h:
	  Fixed issue with waiting for registration to complete in faxopal
	  before starting an outgoing call.

	  Added command line argument to disable in band tone detection in
	  faxopal.

2009-03-19 04:12  rjongbloed

	* [r22230] include/t38/t38proto.h, src/t38/t38proto.cxx:
	  Back patched some changes from Sirius branch to help in detecting
	  end of fax call.

2009-03-23 03:39  rjongbloed

	* [r22247] ., src/opal/rtpconn.cxx:
	  Applied patch ID: 2686504
	  fix compilation when disabling statistics
	  thanks Mounir Lamouri

2009-03-23 05:54  rjongbloed

	* [r22251] src/sip/sdp.cxx:
	  Fixed order of b= line in SDP output, order is apparently
	  important! Thanks Yuri Valentini for the report.

2009-03-24 00:37  rjongbloed

	* [r22253] samples/ivropal/main.cxx, samples/ivropal/main.h:
	  Fixed ivropal sometimes making outgoing call before finished
	  registration.

2009-03-24 00:51  rjongbloed

	* [r22255] include/sip/sipep.h, src/sip/sipcon.cxx,
	  src/sip/sipep.cxx, src/sip/sippdu.cxx:
	  Fix issue with having multiple registrations with the same SIP
	  registrar. This assures the "Contact" field is for the correct
	  registration, previously always ended up being the first
	  registration.

2009-03-24 01:26  rjongbloed

	* [r22258] src/sip/sipcon.cxx:
	  Fixed problem with not waiting till ACK arrives before destroying
	  connection object when sending a terminating response (300 and
	  up), some implementations get offended if the ACK gets a
	  transaction does not exist error. Thanks hongsion for the report.

2009-03-24 02:19  rjongbloed

	* [r22260] src/sip/sippdu.cxx:
	  Fixed bug where if a non-INVITE transaction gets a 1xx response,
	  but then the 2xx (or above) response is lost, the command is not
	  retransmitted. Thanks Dan Julius for the report.

2009-03-24 04:36  rjongbloed

	* [r22265] ., plugins/video/common/dyna.cxx:
	  Added fix for video plug in shared library loading, current code
	  would not look anywhere but default path. Thanks various people
	  at http://bugzilla.gnome.org/show_bug.cgi?id=573882#c24

2009-03-25 00:58  rjongbloed

	* [r22272] ., src/rtp/jitter.cxx:
	  Remove hole in locking logic

2009-03-25 09:53  rjongbloed

	* [r22285] ., plugins/audio/G722/Makefile.in:
	  Applied patch for compiling G722 plug in on SUN, thanks elaine

2009-03-25 22:55  rjongbloed

	* [r22291] src/sip/sipcon.cxx:
	  Fixed correct value for remote party address, this is not
	  supposed to include the scheme (sip:) as that is in the remote
	  party URL.

2009-03-26 00:36  rjongbloed

	* [r22296] plugins/video/H.264/Makefile.in,
	  plugins/video/H.264/gpl/Makefile.in:
	  Applied patch ID: 2712513 "NetBSD patches for opal", supplied by
	  Jared
	  D. McNeill

2009-03-26 03:40  rjongbloed

	* [r22300] include/opal/connection.h, samples/openphone/main.cxx,
	  samples/sipim/main.cxx, src/h323/h323.cxx, src/h323/h323ep.cxx,
	  src/h323/h323pdu.cxx, src/opal/connection.cxx, src/opal/ivr.cxx,
	  src/opal/opal_c.cxx, src/sip/sipcon.cxx, src/sip/sipep.cxx,
	  src/t38/t38proto.cxx:
	  Fixed INVITE sent in response to a REFER command using a
	  different local user name to the original call.

	  In process moved all "standard" string option names to #defines
	  in connection.h so can be documented.

2009-03-27 05:08  rjongbloed

	* [r22306] Makefile.in:
	  Fixed bug ID: 2715354 "opal try to install plugins even if they
	  have
	  been disabled", patch supplied by Mounir Lamouri

2009-03-27 05:39  rjongbloed

	* [r22308] configure, configure.ac, opal.m4:
	  Added abort of configure if compulsory options in PTLib are
	  disabled.

2009-03-27 23:28  rjongbloed

	* [r22313] plugins/audio/G726/Makefile.in,
	  plugins/audio/GSM0610/Makefile.in,
	  plugins/audio/IMA_ADPCM/Makefile.in,
	  plugins/audio/LPC_10/Makefile.in, plugins/audio/SBC/Makefile.in,
	  plugins/audio/Speex/Makefile.in, plugins/audio/celt/Makefile.in,
	  plugins/audio/gsm-amr/Makefile.in,
	  plugins/audio/iLBC/Makefile.in:
	  Fixed bug ID: 2027650 "$(CFLAGS) include path overrides package
	  include
	  path", reported by Stefano Sabatini

2009-03-29 23:54  rjongbloed

	* [r22319] configure, configure.ac:
	  Fixed bug ID: 2721404 "opal depends on ptlib stun option",
	  reported by
	  Mounir Lamouri

2009-03-30 11:04  rjongbloed

	* [r22330] ., src/sip/sipep.cxx:
	  Fixed search for connection matching replaces header dialog info,
	  broken during changes to make calls back into the same stack.

2009-03-31 00:40  rjongbloed

	* [r22336] configure, configure.ac:
	  Fixed bug ID: 2721707 "h323 support needs ptlib to be compiled
	  with asn
	  support", reported by Mounir Lamouri

2009-03-31 04:42  rjongbloed

	* [r22342] ., src/opal/opal_c.cxx:
	  Fixed from/to fields reversed in call dialog identifier
	  information, needed for a INVITE with replaces header.

2009-03-31 07:03  csoutheren

	* [r22347] include/sip/sdp.h, src/sip/sdp.cxx:
	  Fix compiler warning

2009-03-31 07:06  csoutheren

	* [r22348] src/codec/opalpluginmgr.cxx:
	  Backport logging changes and video I-frame detection changes from
	  head

2009-03-31 07:10  csoutheren

	* [r22351] include/codec/ratectl.h, include/codec/vidcodec.h,
	  include/opal/mediafmt.h, include/opal/patch.h,
	  src/codec/ratectl.cxx, src/codec/vidcodec.cxx,
	  src/opal/mediafmt.cxx, src/opal/patch.cxx:
	  Backport media format matching option additions
	  Backport advanced rate controller support
	  Backport fix for popping frames when rate controller
	  skips input frames

2009-03-31 07:14  rjongbloed

	* [r22352] ., src/rtp/jitter.cxx:
	  Fixed missing re-lock of mutex on jitter buffer shut down, so
	  when unlocked a little bit later it does not assert.

2009-03-31 23:16  rjongbloed

	* [r22353] src/opal/pcss.cxx:
	  Fixed support for WAV files etc in PCSS endpoint.

2009-03-31 23:21  rjongbloed

	* [r22355] samples/codectest/main.cxx, samples/codectest/main.h:
	  Backported codectest application enhancements from trunk which
	  became necessary due to backport of video rate controller
	  changes.

2009-04-01 01:11  rjongbloed

	* [r22358] include/sip/sipep.h, src/sip/sipcon.cxx,
	  src/sip/sipep.cxx:
	  Another fix for replaces header in INVITE.

2009-04-01 07:06  rjongbloed

	* [r22361] ., include/h323/h323ep.h, src/h323/h323ep.cxx:
	  Added "*" for gatekeeper address to indicate should do gatekeeper
	  discovery (IP broadcast) in UseGatekeeper().

2009-04-02 05:13  rjongbloed

	* [r22364] ., src/sip/sipep.cxx:
	  Fixed stupid typo causing crash.

2009-04-06 03:04  rjongbloed

	* [r22366] ., include/opal.h,
	  src/java/OpalLineAppearanceStates.java, src/java/exampleJNI.java,
	  src/java/java_swig_wrapper.c:
	  Changed Line Appearance status code enum name to better reflect
	  reality, line does not necessarily become "idle" when a call ends
	  as an individual "line" name may be a trunk and have multiple
	  calls on it. So changed OpalLineIdle to be OpalLineTerminated.

2009-04-07 04:32  rjongbloed

	* [r22390] ., plugins/audio/G722/Makefile.in,
	  plugins/audio/G722/g722codec.c:
	  Applied patch ID: 2728003 "Win32 g722codec.c can not be
	  compiled", thanks Michael Rickmann

2009-04-07 06:09  rjongbloed

	* [r22398] ., src/sip/sipcon.cxx:
	  If SIP answer to our offer contains only media formats we never
	  offered then abort the call as this is SO not to specification!

2009-04-07 23:52  rjongbloed

	* [r22405] ., src/opal/mediastrm.cxx:
	  Close raw media stream (in particular sound card) before waiting
	  for thread to exit. It is possible under some weird circumstances
	  for the channel Read() function to block indefinitely on a sound
	  card, then the patch thread does not exit causing an assert. So,
	  we close it before waiting instead of relying on the sound card
	  read never blocking for long.

2009-04-09 05:02  rjongbloed

	* [r22416] ., src/opal/connection.cxx:
	  Restored old code that was changed (accidentally?) in an
	  apparently unrelated patch #21934.

2009-04-14 03:00  rjongbloed

	* [r22421] ., src/sip/handlers.cxx:
	  Fixed possible path through unsubscribe/unregister code that
	  could lead to a NULL pointer being used. Not sure how it can
	  happen, but got bug reports it is happening.

2009-04-14 03:19  rjongbloed

	* [r22423] ., src/opal/patch.cxx:
	  Added mutex to media patch "push" mode.

2009-04-14 09:24  rjongbloed

	* [r22426] ., src/opal/transports.cxx:
	  Fix problem with case significant tarnsport prefix in Contact tag

2009-04-15 02:34  rjongbloed

	* [r22428] ., src/sip/handlers.cxx:
	  Fixed issue in SIP registering, if both a full AOR and a
	  registrar host name is provided then we would normally disable
	  all registrar searches (e.g. SRV record lookup) and just use the
	  host name specified.

	  However, a common thing for people to do is to make the registrar
	  address identical to the registrar domain in the AOR, so we had a
	  special case that this would NOT disable registrar discovery, but
	  this bit was broken, now fixed.

2009-04-16 06:41  csoutheren

	* [r22435] plugins/video/H.263-1998/h263-1998.cxx:
	  Change default TSTO to give better quality, and add extra logging

2009-04-16 09:08  rjongbloed

	* [r22436] src/sip/sipep.cxx:
	  Fixed issue with SIP call hairpinning back into the same stack,
	  the ACK is sent to the wrong internal connection, as the from/to
	  fields are around the other way every other command. ACK truly is
	  special.

2009-04-21 05:26  rjongbloed

	* [r22447] src/opal/mediastrm.cxx:
	  Fixed possibility of closing a channel twice, should be OK, but
	  you can;t c=guarantee all writers of channels do it, so easier
	  just to fix it here.

2009-04-21 06:39  rjongbloed

	* [r22449] src/opal/connection.cxx, src/sip/sipcon.cxx:
	  Fixed intermittent problem with losing an audio channel when
	  using INVITE with replace, e.g. attended transfer.

2009-04-24 07:33  rjongbloed

	* [r22462] ., include/rtp/rtp.h, src/rtp/rtp.cxx:
	  Fixed being able to switch off jitter buffer while still a thread
	  reading from it, extra mutex needed.

	  make sure jitter buffer (and it's thread) are stopped when you
	  close the read side of the RTp session.

2009-04-24 08:25  rjongbloed

	* [r22463] ., include/rtp/rtp.h, src/rtp/rtp.cxx:
	  Reversed out previous check in for jitter buffer mutex as causes
	  deadlock under load, can't win!

2009-04-24 18:24  csoutheren

	* [r22465] src/opal/call.cxx:
	  Change locking for OpenSourceMediaStreams to be read/write

2009-04-25 05:35  rjongbloed

	* [r22468] ., include/opal/mediafmt.h:
	  Fixed a bunch of != comparisons for OpalMediaFormat

2009-04-30 05:23  rjongbloed

	* [r22497] src/sip/sipcon.cxx, src/sip/sipep.cxx:
	  Fixed bug with "hairpin" SIP calls, subsequent commands to INVITE
	  are not routed to the correct connection instance.

2009-05-01 14:30  csoutheren

	* [r22503] plugins/video/H.263-1998/h263-1998.cxx,
	  plugins/video/H.263-1998/rfc2190.cxx:
	  Add extra bulletproofing for receiving bad packets

2009-05-02 12:26  dsandras

	* [r22506] configure, configure.ac, plugins/plugin-config.h.in:
	  H.224 should not be enabled when H.323 is disabled.

2009-05-03 13:39  csoutheren

	* [r22508] plugins/video/H.263-1998/h263-1998.cxx:
	  Fix bug introduced in previous checkin

2009-05-05 05:02  rjongbloed

	* [r22511] include/rtp/rtp.h, include/t38/t38proto.h,
	  plugins/fax/fax_spandsp/spandsp_util,
	  plugins/fax/fax_spandsp/spandsp_util/README,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.h,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.cpp,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.sln,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.vcproj,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_util_2008.sln,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_util_2008.vcproj,
	  samples/faxopal/main.cxx, samples/faxopal/main.h,
	  samples/openphone/main.cxx, samples/openphone/openphone.wxg,
	  samples/openphone/openphone.xrc, src/rtp/rtp.cxx,
	  src/sip/sipcon.cxx, src/t38/t38proto.cxx:
	  Added fax statistics from SpanDSP, in process fixes major failing
	  that the system gave no indication of if the fax was successfully
	  and completely sent to the remote.

	  Also updated spandsp_util to be built against spandsp-0.0.6pre10

2009-05-05 05:25  rjongbloed

	* [r22512] plugins/fax/fax_spandsp/spandsp_util,
	  plugins/fax/fax_spandsp/spandsp_util/README:
	  Fixed output path in readme file.

2009-05-05 05:41  rjongbloed

	* [r22513] plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp:
	  Fixed flush of debug output from spandsp library.

2009-05-05 05:57  rjongbloed

	* [r22514] src/t38/t38proto.cxx:
	  Fixed race condition where if remote disconnects really quickly
	  after fax is sent, the local side kills sub-process and we don't
	  get the final statistics.

	  Also changed verbose logging from spandsp_util to only be enabled
	  when have level 5 tracing.

2009-05-06 00:06  rjongbloed

	* [r22517] include/opal/mediastrm.h, include/opal/patch.h,
	  include/t38/t38proto.h,
	  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp,
	  samples/openphone/main.cxx, samples/openphone/main.h,
	  src/opal/mediastrm.cxx, src/opal/patch.cxx, src/t38/t38proto.cxx:
	  Fixed display of progress fax statistics so can get page count
	  received/sent so far.

2009-05-06 05:04  rjongbloed

	* [r22519] src/sip/handlers.cxx:
	  Added std:: to map<> calls for Solaris build compatibility,
	  thanks Bruce McAlister.

2009-05-06 06:11  rjongbloed

	* [r22520] include/opal/patch.h, src/opal/patch.cxx:
	  Fixed video statistics broken in previous check in.

2009-05-06 06:31  rjongbloed

	* [r22521] include/codec/opalplugin.h, include/opal/mediafmt.h,
	  include/sip/sdp.h, src/opal/mediafmt.cxx, src/sip/sdp.cxx:
	  Fixed SIP bandwidth (RFC3890 TIAS) support.

2009-05-06 08:19  csoutheren

	* [r22526] plugins/video/H.263-1998/h263-1998.cxx:
	  Make sure Max Bit Rate is not altered

2009-05-06 08:58  rjongbloed

	* [r22527] include/opal/mediafmt.h, src/h323/h323caps.cxx,
	  src/opal/mediafmt.cxx, src/sip/sdp.cxx:
	  Added media format option indicating the protocol (e.g. "H.323"
	  or "SIP") the media format is being used in. This can be a "get
	  out of gaol" card for various compatibility issues.

2009-05-06 10:41  csoutheren

	* [r22529] plugins/video/H.263-1998/h263-1998.cxx,
	  plugins/video/H.263-1998/h263-1998.h:
	  Use dynamically allocated frame buffer instead of enormous
	  statically sized array

2009-05-06 13:12  csoutheren

	* [r22531] include/opal/rtpconn.h:
	  Don't stop a call from clearing due to lack of media just because
	  a session has not received any packets

2009-05-06 13:13  csoutheren

	* [r22532] src/codec/opalpluginmgr.cxx:
	  Fix rare memory leak and add extra checking

2009-05-07 00:29  rjongbloed

	* [r22536] src/codec/opalpluginmgr.cxx:
	  Fixed MSVC warning

2009-05-07 03:43  rjongbloed

	* [r22538] include/sip/sdp.h, src/sip/sdp.cxx:
	  Added ability to set SDP bandwidth parameters from media format
	  options.

2009-05-07 08:56  csoutheren

	* [r22553] ., include/opal.h, include/opal/mediastrm.h,
	  include/rtp/jitter.h, include/rtp/rtp.h, include/sip/sipep.h,
	  plugins/video/H.263-1998/rfc2190.cxx,
	  plugins/video/H.263-1998/rfc2190.h,
	  samples/openphone/unknown16.ico, samples/openphone/unknown16.xpm,
	  src/opal/localep.cxx, src/opal/mediastrm.cxx,
	  src/opal/opal_c.cxx, src/opal/patch.cxx, src/rtp/rtp.cxx,
	  src/sip/sipcon.cxx, src/sip/sipep.cxx:
	  Bulk backport of patches from trunk including RTP SafePtr and
	  thread pooling

2009-05-07 09:02  rjongbloed

	* [r22556] ., src/opal/localep.cxx:
	  Fixed local EP auto-starting media under some circumstances (e.g.
	  H.323 slow start)

2009-05-07 10:05  csoutheren

	* [r22562] ., samples/openphone/unknown16.ico,
	  samples/openphone/unknown16.xpm, src/codec/opalpluginmgr.cxx:
	  Backport 22542 - set payload type for encoded video from plugins

2009-05-07 17:34  csoutheren

	* [r22563] src/opal/mediafmt.cxx:
	  Fixed adding/subtracting media formats from a list should break
	  references and
	  make list unique as adding to one instance changing a whole bunch
	  of others is
	  really confusing.

2009-05-11 12:29  csoutheren

	* [r22580] samples/codectest/main.cxx:
	  Backport of 22574 from head
	  Fix problem with duplicate S option

2009-05-12 00:59  rjongbloed

	* [r22581] src/java/OpalParamSetUpCall.java,
	  src/java/OpalStatusIncomingCall.java, src/java/exampleJNI.java,
	  src/java/java_swig_wrapper.c:
	  Added protocol ID to "C" API

2009-05-12 10:18  rjongbloed

	* [r22589] ., src/sip/sipcon.cxx, src/sip/sippdu.cxx:
	  Fixed issue with outgoing re-INVITE that gets a 401/407
	  authentication required error, the re-transmitted INVITE was not
	  a re-INVITE but another normal INVITE, so "hold" doesn't work.

	  Fixed issue with incoming re-INVITE that has no SDp in the
	  INVITE, if the eventual ACK has the same streams but only changed
	  the IP address/port for RTP, then we did not change our RTP send
	  addresss/port.

	  Added more logging for determining Product Info from
	  User-Agent/Server mime field.

2009-05-12 13:50  rjongbloed

	* [r22593] src/win32/opal_2008.dtf, src/win32/opald_2008.dtf,
	  src/win32/opaln_2008.dtf:
	  UUpdate symbols

2009-05-12 23:08  rjongbloed

	* [r22594] src/win32/opal_2005.dtf, src/win32/opal_2005_wm.dtf,
	  src/win32/opal_2005_wm6.dtf, src/win32/opald_2005.dtf,
	  src/win32/opald_2005_wm.dtf, src/win32/opald_2005_wm6.dtf,
	  src/win32/opaln_2005.dtf, src/win32/opaln_2005_wm.dtf,
	  src/win32/opaln_2005_wm6.dtf:


2009-05-13 00:03  rjongbloed

	* [r22595] samples/openphone/OpenPhoneInstaller_2005.vdproj,
	  samples/openphone/OpenPhone_2005.sln:
	  Removed deprecated ffmpeg H.263 code3c plug in.

2009-05-13 02:27  rjongbloed

	* [r22596] include/t38/h323t38.h, samples/openphone/main.cxx,
	  samples/openphone/main.h, src/h323/h323caps.cxx,
	  src/t38/h323t38.cxx:
	  Fixed inclusion of T.38 fax capability in H.323, got lost
	  somewhere along the way.

2009-05-13 04:47  rjongbloed

	* [r22599] src/codec/opalpluginmgr.cxx:
	  Added sanity checking of video plug in decoder output.

2009-05-13 14:23  csoutheren

	* [r22604] plugins/video/H.263-1998/h263-1998.cxx,
	  plugins/video/H.263-1998/rfc2190.cxx,
	  plugins/video/H.263-1998/rfc2190.h:
	  Add numerous boundary checks
	  Add extra logging
	  Ensure use of aligned memory for ffmpeg
	  Discard out of order packets, mode A frames that don't begin
	  with a start code, and frames that don't begin with a start code

2009-05-13 14:24  csoutheren

	* [r22605] samples/codectest, samples/codectest/main.cxx,
	  samples/codectest/main.h:
	  Backport code from trunk - put mutex around console output.

2009-05-13 14:36  csoutheren

	* [r22607] src/opal/mediastrm.cxx:
	  Ensure destructors of OpalMediaStream descendants call
	  Close because the overrides won't work from the ancestor
	  destructor

2009-05-13 14:42  csoutheren

	* [r22608] src/sip/sipep.cxx:
	  Add #define to allow easy enable/disable of SIP thread pooling
	  Add log message to display active connections/transactions

2009-05-14 02:02  rjongbloed

	* [r22616] ., src/sip/sipep.cxx:
	  Reduced level of new trace log in SIP garbage collection. Too
	  noisy!

2009-05-14 03:59  csoutheren

	* [r22617] samples/codectest/main.cxx, samples/codectest/main.h:
	  Add option to drop n% of encoded packets

2009-05-15 00:20  rjongbloed

	* [r22619] ., src/rtp/rtp.cxx:
	  Added log message for when RTP expected sequence number is
	  changed automatically. Code added due to various remote system
	  bugs.

2009-05-15 01:08  rjongbloed

	* [r22620] src/h323/h323.cxx:
	  Fixed initial H.323 call set up honouring the auto-start
	  configuration for "don't offer". In particular the extraneous
	  attempt to start fax when it shouldn't.

2009-05-15 03:53  rjongbloed

	* [r22622] samples/openphone/main.cxx:
	  Fixed OpenPhone play button for ring WAV file.

2009-05-15 07:10  csoutheren

	* [r22624] plugins/video/H.263-1998/h263-1998.cxx:
	  Disable OBMC because it makes ffmpeg non-threadsafe

2009-05-18 05:39  csoutheren

	* [r22628] plugins/video/H.263-1998/h263-1998.cxx:
	  Remove use of posix_memalign, as it's not needed and not
	  supported in all environments

2009-05-18 06:12  rjongbloed

	* [r22630] include/opal/ivr.h, src/opal/ivr.cxx:
	  Cannot mix VXML and simplified commands. So now check once at the
	  start for a .vxml file URL, processing only that if so. If not
	  then assume all file URL's in the command string are playable
	  (typically WAV) files.

2009-05-19 03:19  rjongbloed

	* [r22640] include/h323/h323con.h, include/t38/h323t38.h,
	  samples/faxopal/main.cxx, src/h323/h323.cxx,
	  src/h323/h323neg.cxx, src/opal/mediastrm.cxx,
	  src/opal/rtpconn.cxx, src/t38/h323t38.cxx, src/t38/t38proto.cxx:
	  Fixed crash on ending fax, race condition on terminating SpanDSP
	  reading thread.

	  Fixed faxopal displaying correct status at end of call.

	  Fixed H.323 T.38 support requiring:
	  T.38 capability no longer uses custom H323Channel
	  Mode request badly broken, need to deal with having media stream
	  before logical channel
	  Internal/External session number handling interferes with fax
	  re-opening session ID 1
	  Need to close tx channels media stream immediately on sending
	  CLC, don;t wait for CLCAck
	  Not opening reverse T.38 channel

2009-05-19 04:14  rjongbloed

	* [r22647] src/codec/ratectl.cxx, src/opal/manager.cxx:
	  Fixed no trace warnings.

2009-05-19 05:23  rjongbloed

	* [r22649] src/win32/opal_2003.dtf, src/win32/opal_2005.dtf,
	  src/win32/opal_2005_wm.dtf, src/win32/opal_2005_wm6.dtf,
	  src/win32/opal_2008.dtf, src/win32/opald_2003.dtf,
	  src/win32/opald_2005.dtf, src/win32/opald_2005_wm.dtf,
	  src/win32/opald_2005_wm6.dtf, src/win32/opald_2008.dtf,
	  src/win32/opaln_2003.dtf, src/win32/opaln_2005.dtf,
	  src/win32/opaln_2005_wm.dtf, src/win32/opaln_2005_wm6.dtf,
	  src/win32/opaln_2008.dtf:
	  Update DLL symbols

2009-05-19 06:04  csoutheren

	* [r22652] plugins/configure.ac, plugins/plugin-config.h.in,
	  plugins/video/H.263-1998/h263-1998.cxx,
	  plugins/video/H.263-1998/h263-1998.h,
	  plugins/video/common/dyna.cxx:
	  Add check for posix_memalign and other misc stuff

2009-05-19 06:06  csoutheren

	* [r22653] plugins/video/H.263-1998/h263-1998.h,
	  plugins/video/common/dyna.h:
	  Fix for gcc 4.4.0

2009-05-19 06:06  csoutheren

	* [r22654] plugins/configure:
	  Update configure

2009-05-19 07:10  rjongbloed

	* [r22655] include/codec/ratectl.h, include/h224/h323h224.h,
	  include/im/sipim.h, include/opal/buildopts.h.in,
	  src/codec/ratectl.cxx, src/im/sipim.cxx:
	  Fixed compilation with video, h.323 or sip disabled.

2009-05-19 09:34  rjongbloed

	* [r22657] src/win32/opal_2005_wm.dtf, src/win32/opal_2005_wm6.dtf,
	  src/win32/opald_2005_wm.dtf, src/win32/opald_2005_wm6.dtf,
	  src/win32/opaln_2005_wm.dtf, src/win32/opaln_2005_wm6.dtf:
	  Update DLL symbols
2009-08-14 16:05:05 +00:00
minskim
ac55a07852 Update lua-stdlib and lua-stdlib-doc to 11.
Changes since 8:
    - Updates the object module to be the same as that published in "Lua
      Gems", and fixes a bug in the utility mk1file which makes a one-file
      version of the library, to stop it permanently redefining require.
    - Fixes table.deepclone to copy metatables, as it should.
    - Fixes a bug in string.format, removes the redundant string.join
      (it's the same as table.concat), and adds to table.clone and
      table.deepclone the ability to copy without metatables.
2009-08-12 17:17:42 +00:00
obache
31dd1ca45f Update ruby-gnome2 to 0.19.1.
This release is a bug fix release of 0.19.0.

=== Changes

==== Ruby/GTK2

  * use RUBYARCHDIR
    [OBATA Akio]
  * #2814953: install missing headers
    [Mamoru Tasaka]

==== Ruby/GLib2

  * Bug fixes:
    * avoid object allocation while GC
      [OBATA Akio, Kouhei Sutou]
  * use RUBYARCHDIR
    [OBATA Akio]
  * mkmf-gnome2.rb add "-I$(vendorarchdir)" to $CPPFLAGS.
    [OBATA Akio, Kouhei Sutou]

==== Ruby/ATK

  * use RUBYARCHDIR
    [OBATA Akio]

==== Ruby/Pango

  * use RUBYARCHDIR
    [OBATA Akio]
  * use gem version rcairo as fallback
    [OBATA Akio]

==== Ruby/Libart

  * use RUBYARCHDIR
    [OBATA Akio]

==== Ruby/GdkPixbuf

  * use gem version rcairo as fallback
    [OBATA Akio]

==== Ruby/GnomePrint

  * install rblibgnomeprintversion.h
    [OBATA Akio, Kouhei Sutou]

==== Ruby/GtkMozEmbeded

  * fix header generation error caused by missing file
    [OBATA Akio]

==== Ruby/VTE

  * support VTE 0.20
    [Kouhei Sutou]

==== Ruby/PanelApplet

  * #2815036: re-support Ruby 1.8.6.
    [Mamoru Tasaka, Kouhei Sutou]

==== Ruby/Libglade2

  * Debian#519786: fix GC related SEGV when a widget in
    glade is removed by hand.
    [Arnaud Cornet, Kouhei Sutou]

=== Thanks

  * OBATA Akio
  * Mamoru Tasaka
  * Arnaud Cornet
2009-08-12 12:43:08 +00:00
taca
2d4386c360 Fix security problem of CVE-2009-2412 adding patches described in it.
Bump PKGREVISION.
2009-08-12 03:37:28 +00:00
obache
3b11655430 recursive bump for icu shlib version change except already done. 2009-08-12 02:31:18 +00:00
minskim
bea100784c Add an option to enable thread support in boehm-gc. 2009-08-11 18:04:48 +00:00
taca
c20ad6435d Apply md.patch in config/makedepend directory to avoid conflict
with getline(3).
2009-08-11 15:10:14 +00:00
drochner
8504876c66 turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
compiles against its libraries
2009-08-11 12:31:29 +00:00
drochner
776a4445a4 recursive PKGREVISION bump for icu shlib version change,
suggested by OBATA Akio
2009-08-11 11:55:28 +00:00
tnn
902e1e802b Fix GRE registration. Should fix PR pkg/41866. PKGREVISION++ 2009-08-10 13:13:42 +00:00
tnn
41f4c4568c revision bump for PLIST fix 2009-08-10 00:27:49 +00:00
wiz
1d69dd27d0 Update to 2.7:
New in 2.7:

* Support for platforms that follow POSIX:2008, not POSIX:2001.
* Support for MirBSD 10.
* Support for IRIX 5.3. Contributed by Eric Blake.
* On Linux platforms, libsigsegv now prefers the POSIX way of defining the
  signal handler over than the traditional one, when both are supported.
  As a consequence, on Linux/i386 and other Linux platforms, the type
  'stackoverflow_context_t' is now typedefed to 'ucontext_t *' rather than
  'struct sigcontext *'.
2009-08-09 23:04:31 +00:00
sno
80b2d02797 Fix dependency cycle to Module::Install 2009-08-09 22:36:10 +00:00