Commit graph

197024 commits

Author SHA1 Message Date
wiz
508223f2c8 Update to 0.9.12 based on PR 47558 by diro@nixsyspaus.org.
0.9.11 -> 0.9.12
 general:
  - Fixes to the dynamic recompiler (Ari64)
  - Added ARMv5 support to the dynarec (Ari64)
  - New OSD system (Guillaume)
  - Added "built-in" DDK to make it easier to compile on Windows (Guillaume)
 sound:
  - Improvements / Fixes in both SCSP and SCSP2 (Cwiiis)
 video:
  - Major improvements to the OpenGL renderer (Devmiyax)
  - Major improvements to the software renderer (Guillaume)
  - Some fixes to register emulation (Guillaume)
  - Improvements to line drawing functions in the software renderer (Cwiiis)
  - Fixed endianess bugs (Guillaume)
 cocoa port:
  - Added "load image" feature (BlueCrab)
  - Fixed the resize bug (BlueCrab)
 qt port:
  - Added shortcuts to toggle vdp2 layers (Benjamin Siskoo)
  - Fixed the "mute sound" feature (Guillaume)
  - It's now possible to compile the Qt port in "full software" mode (Guillaume)
  - Added an autostart option, disabled by default (Guillaume)
  - Now using a XDG compliant location for config file (Guillaume)
  - Added a debugger to the Qt port (CyberWarriorX)
  - DirectX cores can now be used in Qt port (CyberWarriorX)
  - Cheat search function (CyberWarriorX)
  - Option to show/hide menu and toolbar (Guillaume)
  - Close button in pad settings (guillaume)
2013-02-12 09:50:56 +00:00
adam
d1f433f4fd Updated devel/gmp to 5.1.1 2013-02-12 09:16:28 +00:00
adam
0093affc63 Changes 5.1.1:
BUGS FIXED
On Windows 64-bit, an error causing link errors about __gmp_binvert_limb_table has been fixed.
Aarch64 alias ARM64 support now works.
A possible buffer overrun in mpz_ior has been fixed.
A rare sign flip in mpz_remove has been fixed.
A bug causing problems with mpf numbers with absolute value ≥ 231 has been fixed.
Several bugs in mini-gmp have been fixed.
A bug caused by automake, related to the 'distcheck' target, has been fixed by upgrading the automake used for GMP release engineering.

FEATURES
Preliminary support for the x32 ABI under x86-64.

MISC
The mini-gmp testsuite now tests the entire set of functions.
Various improvements of the GMP testsuite.
2013-02-12 09:15:36 +00:00
minskim
aa4572e5fc Note update of emacs-snapshot. 2013-02-12 04:48:28 +00:00
minskim
638ff5681e Update emacs-snapshot to 24.3.50.20130207.
Patches provided by Makoto Fujiwara in PR 47552 and modified by me.

Notable changes since 24.3:
** `apropos-variable' is now `apropos-user-option'
** `eval-defun' on an already defined defcustom calls the :set function,
   if there is one.
** The option `set-mark-default-inactive' has been deleted.
   This unfinished feature was introduced by accident in Emacs 23.1;
   simply disabling Transient Mark mode does the same thing.
** `initial-buffer-choice' can now specify a function to set up the
   initial buffer.
** ACL support has been added.
** New option `scroll-bar-adjust-thumb-portion'.
** Improved fullscreen support for Nextstep (Mac OS X).
** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized',
   bound to <f11> and M-<f10>, respectively.
** Delphi mode is now called OPascal mode.
** jit-lock-debug-mode lets you use the debuggers on code run via jit-lock.
** completing-read-multiple's separator can now be a regexp.  The
   default separator is changed to allow surrounding spaces around the
   comma.

See share/emacs/24.3.50/etc/NEWS for the complete list of changes.
2013-02-12 04:47:31 +00:00
hiramatsu
56f18ec1cd Updated databases/libpqxx and databases/libpqxx-doc to 4.0.1. 2013-02-12 04:36:48 +00:00
hiramatsu
f94f84ebf1 Update libpqxx from 2.5.5 to 4.0.1.
Changes from previous
=====================
4.0.1
 - Support for REPEATABLE READ isolation level.
 - Build fix for OS X.
 - Build fixes for clang++ 3.2.
 - Build fixes for clang++ 3.0.
 - Build fix for MinGW.
 - Build fix for BSD (and possibly other grep flavours).
 - Compatibility typedefs: pqxx::result::tuple & pqxx::result::field.
 - Supports C++11.
 - Fixed failure to detect some integer overflows during conversion.
4.0
 - API change: noticers are gone!  Use errorhandlers to capture error output.
 - API change: tablereaders and tablewriters are gone; they weren't safe.
 - API change: prepared statements are now weakly-typed, and much simpler.
 - API change: fields and tuples are now stand-alone classes in ::pqxx.
 - API change: thread-safety field have_strerror_r is now have_safe_strerror.
 - API change: notify_listener has been replaced with notification_receiver.
 - notification_receiver takes a payload parameter.
 - Easier Visual C++ setup.
 - Absolutely requires a libpq version with PQescapeStringConn.
 - Absolutely requires libpq 8.0 or better.
 - Changes for C++0x.
 - Supports clang++.
 - Visual C++ makefiles now support new-style unit tests.
 - Sample headers for more recent Visual Studio versions.
 - Fixes binary-data escaping problems with postgres 9.0.
 - Fixes problems with binary-string handling and escaping.
 - Fixes compatibility problems between 9.x libpq and 7.x backend.
 - quote_name to escape SQL identifiers for use in queries.
 - syntax_error reports error's approximate location in the query.
 - On Windows, now uses ws2_32 instead of wsock32.
 - Various Windows build fixes.
 - Updated for gcc 4.6.0.
 - configure script supports --enable-documentation/--disable-documentation.
 - Streamlined test/release toolchain.
3.1
 - Shared libraries are now versioned by ABI: 3.1 instead of 3.1.0 etc.
 - Threading behaviour is now documented, and can be queried.
 - Version information available at compile time.
 - Supports parameterized statements.
 - Result tuples now support slicing.
 - Configure with --with-tr1=boost to use BOOST shared_ptr.
 - String conversion now has its own header file.
 - Supports read-only transactions.
 - Fixed breakage with Solaris "make".
 - Uses shared_ptr if available.
 - binarystring::str() is no longer cached; no longer returns reference.
 - Fixed problems in Visual C++ Makefile for test suite.
 - Fixed problems with RPM packaging.
 - Fixed build problem on RedHat/CentOS 5.
 - Lets you check whether a prepared statement has been defined.
 - "Varargs" prepared statements.
 - Unnamed prepared statements now supported.
 - Results have iterator as well as const_iterator.
 - Rewrite of robusttransaction logic; may actually do its job now.
 - Connections support async query cancel from signal handler or thread.
 - More documentation for performance features.
3.0
 - Website is now at http://pqxx.org/ (no redirects)
 - Completely replaced cursor classes
 - More helpful error messages on failed connections
 - More detailed hierarchy of constraint-violation exception classes
 - trigger is now called notify_listener, trigger header is now notify-listen
 - New mixin base class pqxx_exception distinguishes libpqxx exception types
 - Quoting is back!  transaction_base::quote() & connection_base::quote()
 - Several build & documentation problems with Visual C++ fixed
 - Compile fixes for gcc 4.2, 4.3
 - Compile fixes for Sun Studio Express 5.9
 - Uses strlcpy() where available, instead of strncpy()
 - Keeps better track of applicable text encodings
 - Fixed bug with prepared statement parameters in separate C++ statements
 - robusttransaction now works for multiple users
 - Pipeline lets you cancel ongoing queries, e.g. because they run for too long
 - Fixed broken escaping of binary values in tablewriter
 - Floating-point types now represented with full precision
 - Proper unit tests for new functionality
 - New traits-based system for adding data types
 - Floating-point infinities now supported
 - Flushing/completing a pipeline now frees up the transaction for other use
 - Completely reworked test suite, builds and runs much faster
 - tablewriter supports writing of raw lines
2.6.9
 - Removed old 1.x API (that means all identifiers with capital letters!)
 - Tested with all current libpq versions and oldest/newest supported backends
 - No longer have old OnCommit()/OnAbort()/OnDoubt() callbacks in transactor!
 - Fixes failure when closing cursors with upper-case letters in their names
 - Fixes bug when adding triggers to connections that aren't open yet
 - Fixes bug when removing triggers
 - Fixes small memory leak when preparing statements
 - Fixes many problems with older backends
 - Fixes bug in result::swap(): protocol versions were not swapped
 - Some errors went undetected when using certain libpq versions
 - Fixes prepared statements on new libpq versions talking to old backends
 - Can estimate server version if libpq does not know how to obtain it
 - Greatly reduced memory usage while escaping strings
 - With Visual C++, creates lib/ directory if not already present
 - Useful error messages when preparing statements
 - Allows prepared statements to be registered explicitly
 - Support for "long long" types; enable with PQXX_ALLOW_LONG_LONG macro
 - Compilation errors for older libpq versions fixed
 - Some new small utility classes for disabling notice processing etc.
 - Result sets remember the queries that yielded them
 - New test script, pqxx-fulltest, tests against all current postgres versions
 - Connections can simulate failure
 - Adds password encryption function
2.6.8
 - Fixes bug: binary parameters to prepared statements truncated at nul bytes
 - New, more specific exception types to distinguish errors from server
 - Resolved serious problems with generated reference documentation
 - Automatically detect Windows socket library with MinGW
 - Windows "make" fixed to run from main directory, not win32
 - Fixes "mktemp" problems on some BSD-based platforms
 - pqxx-config is deprecated; use pkg-config instead
 - On GNU/Linux, uses poll() instead of select() to avoid file descriptor limit
 - Will provide server and protocol version information where available
 - New cursor class, absolute_cursor
2.6.7
 - New escape functions for binary data: transaction_base::esc_raw()
 - Improved detection of socket libraries, especially for MinGW
 - Works around bug in some versions of GNU grep 2.5.1
 - Fixes problem with configuration headers
 - Fixes PQprepare() detection
 - Fixes incomplete Visual C++ Makefile
 - Fixes compile error in workaround for older libpq versions
 - Removes "rpath" link option
2.6.6
 - New, encoding-safe string-escaping functions
 - Upper-case letters now allowed in prepared-statement names
 - Fixes crash in test005
 - More Visual C++ improvements
 - Removed collaboration diagrams from reference docs
 - New templating system for generating Windows Makefiles etc.
2.6.5
 - Visual C++ users: copy win32/common-sample to win32/common before editing it
 - Should fix problems finding socket library on MinGW
 - Even more work on Visual C++ problems
 - Updated documentation for Visual C++ users
 - Fixed bug in prepared statements (mostly visible on Visual C++)
 - Nested transactions work harder to detect backend support
2.6.4
 - Massively improved compatibility with Windows and Visual C++
 - Fixed late initialization of "direct" connection state
 - Fixed problem with initialization of connection capabilities
 - Fixed configuration bug for libpq in nonstandard locations
 - Sample configuration header for libpq found in PostgreSQL 8.1
2.6.3
 - Radical rework of prepared statements; INCOMPATIBLE INTERFACE CHANGE!
 - Dropped support for g++ 2.95
 - Emulate prepared statements support on old libpq or old backend
 - Bug fix: missing tutorial (release script now tests for this)
 - Automatically links in socket library on Windows or Solaris, if needed
 - Bug fix: check for std namespace didn't work
 - Fixes for Cygwin/MSYS/MinGW
2.6.2
 - Bug fix: connection state was not set up properly in some common cases
 - Bug fix: headers were installed in "include" instead of "include/pqxx"
 - Bug fix: sqlesc(string) broke with multibyte or multiple encodings
 - namedclass is now used as a virtual base; affects all subclass constructors
 - Initial implementation of subtransactions
 - Detect more connection capabilities
 - Standard library namespace can be set from configure script's command line
 - Completely reworked connection hierarchy, with separate policy objects
 - Clients can now define their own connection policies
 - Paved the way for client-defined thread synchronization
 - Now lives at http://thaiopensource.org/development/libpqxx/
2.6.1
 - Hugely improved recognition of different strerror_r() versions
 - Resolved link problems with gcc 4.0 and shared library
2.6.0
 - New macro PQXX_SHARED defines whether to use/build libpqxx as shared library
 - Robusttransaction compatible with PostgreSQL 8.1
 - Infrastructure for querying connection/backend capabilities at runtime
 - Greatly improved cursor support
 - Connection reactivation can be inhibited explicitly
 - Tries even harder to make sense of conflicting strerror_r() definitions
 - Detects connection failures that libpq glosses over
 - Reference documentation grouped into more coherent sections
 - Assumes strerror() is threadsafe on systems that have no strerror_r()
 - Now allows connection's socket number to be queried
 - New internal_error class for libpqxx-internal errors
 - With Visual C++, doesn't redefine NOMINMAX if it is defined already
 - Several compatibility improvements for Visual C++
 - Fixes and workarounds for HP-UX and HP aCC compiler
 - Phased old cursor interface out of test suite; tests ported to new interface
 - Added documentation on thread safety
 - New thread safety model
 - Large objects have functions to tell current position
 - Minor updates to tutorial (somebody pay me and I'll do more :)
 - No longer needs libpq-fs.h header
 - Meaningful error messages for ambiguous string conversions fixed
2.5.6
 - Support null parameters to prepared statements (use C-style char pointers)
2013-02-12 04:35:24 +00:00
adam
d7e654082c Updated mail/dovecot2 to 2.1.15 2013-02-11 21:30:55 +00:00
adam
d56f94a7ff Changes 2.1.15:
v2.1.14's dovecot.index.cache fixes caused Dovecot to use more disk I/O
and memory than was necessary.
2013-02-11 21:30:00 +00:00
jperkin
30754dda47 Previous commit changed PKGNAME and broke dependencies. Revert back to
original PKGNAME.
2013-02-11 17:39:32 +00:00
taca
569d42da13 Note update of www/ruby-sass-rails32 package to 3.2.6. 2013-02-11 14:52:23 +00:00
taca
f7b78997df Update ruby-sass-rails32 to 3.2.6.
* Allowing railtie and compressor to honor config settings for sass.style and
  assets.css_compressor with default values if not otherwise set. This allows
  assets.css_compressor = :yui to actually work!
2013-02-11 14:51:28 +00:00
taca
74163e1b66 Note update of www/ruby-sass package to 3.2.5. 2013-02-11 14:47:27 +00:00
taca
1a3fb6bc36 Update ruby-sass to 3.2.5.
3.2.5

* Fix a bug where bogus @extend warnings were being generated.
* Fix an @import bug on Windows. Thanks to Darryl Miles.
* Ruby 2.0.0-preview compatibility. Thanks to Eric Saxby.
* Fix incorrect line numbering when using DOS line endings with the indented
  syntax.

3.2.4

* Fix imports from .jar files in JRuby. Thanks to Alex Hvostov.
*  Allow comments within @import statements in SCSS.
*  Fix a parsing performance bug where long decimals would occasionally take
   many minutes to parse.
2013-02-11 14:47:00 +00:00
taca
3534c9d71b Note update of www/ruby-jquery-rails package to 2.2.1. 2013-02-11 14:43:59 +00:00
taca
5f56a02434 Update ruby-jquery-rails to 2.2.1.
## 2.2.1 (08 February 2013)

  - Updated to jQuery 1.9.1
  - Updated to latest jquery-ujs

## 2.2.0 (19 January 2012)

  - Updated to jQuery 1.9.0
  - Updated to latest jquery-ujs
2013-02-11 14:43:36 +00:00
taca
3b2b90c3de Note addition of www/ruby-padrino-helpers package version 0.10.7. 2013-02-11 14:40:10 +00:00
taca
b2a8ccb253 Add and enable ruby-padrino-helpers. 2013-02-11 14:39:48 +00:00
taca
4d382e7057 Add ruby-padrino-helpers package version 0.10.7.
= Application Extensions and Helpers (padrino-helpers)

=== Overview

This component provides a great deal of view helpers related to html markup
generation.

There are helpers for generating tags, forms, links, images, and more. Most of
the basic methods should be very familiar to anyone who has used rails view
helpers.
2013-02-11 14:39:08 +00:00
taca
f85b05b211 Note addtion ot ruby-padrino packages:
www/ruby-padrino-core		0.10.7
	www/ruby-padrino-cache		0.10.7
	www/ruby-padrino-gen		0.10.7
	www/ruby-padrino-admin		0.10.7
	www/ruby-padrino-mailer		0.10.7
	www/ruby-padrino		0.10.7
2013-02-11 14:37:29 +00:00
taca
73c638b90f Add and enable ruby-padrino related packages:
ruby-padrino
	ruby-padrino-admin
	ruby-padrino-cache
	ruby-padrino-core
	ruby-padrino-gen
	ruby-padrino-mailer
2013-02-11 14:36:06 +00:00
taca
362b08e2c0 Add ruby-padrino package version 0.10.7.
Ruby-padrino is a set of Padrino Ruby Web Framework meta-packages.
2013-02-11 14:34:53 +00:00
taca
b805096a3d Add ruby-padrino-mailer package version 0.10.7.
= Simple Mailer Support (padrino-mailer)

=== Overview

This component creates an easy and intuitive interface for delivering email
within a Sinatra application. The mail library is utilized to do the bulk of
the work. There is full support for rendering email templates, using an html
content type and for file attachments.

The Padrino Mailer uses a familiar Sinatra syntax similar to that of defining
routes for a controller.
2013-02-11 14:33:57 +00:00
taca
1206177cff Add ruby-padrino-admin package version 0.10.7.
= Admin Dashboard and Authentication (padrino-admin)

=== Overview

Padrino has a beautiful Admin management dashboard with these features:

Orm Agnostic::Data Adapters for Datamapper, Activerecord, Sequel, Mongomapper,
Mongoid, Couchrest.

Template Agnostic:: Erb, Erubis and Haml Renderer.

Authentication:: Support for Account authentication, Account Permission
managment.

Scaffold:: You can simply create a new "admin interface" by providing a Model.

Access Control:: Supports authentication and role permissions for your
application.
2013-02-11 14:32:42 +00:00
taca
894721d80a Add ruby-padrino-gen package version 0.10.7.
= Agnostic Application Generators (padrino-gen)

=== Overview

Padrino comes preloaded with flexible code generators powered in part by the
excellent Thor gem (incidentally also used in the Rails 3 generators).

These generators are intended to allow for easy code generation both in
creating new applications and building on existing ones.

The generators have been built to be as library agnostic as possible,
supporting a myriad of test frameworks, js libraries, mocking libraries, etc.
2013-02-11 14:31:55 +00:00
taca
1838c4ffc1 Add ruby-padrino-cache package version 0.10.7.
= Painless Page and Fragment Caching (padrino-cache)

== Overview

This component enables caching of an application's response contents on
both page- and fragment-levels. Output cached in this manner is persisted,
until it expires or is actively expired, in a configurable store of your
choosing. Several common caching stores are supported out of the box.
2013-02-11 14:30:57 +00:00
taca
ef07a86a9b Add ruby-padrino-core package version 0.10.7.
= Padrino (padrino-core)

Padrino is the godfather of Sinatra.

== Preface

Padrino is a ruby framework built upon the excellent Sinatra Microframework
[http://www.sinatrarb.com].

Sinatra is a DSL for creating simple web applications in Ruby with speed and
minimal effort.

This framework tries hard to make it as fun and easy as possible to code much
more advanced web applications by building upon the Sinatra philosophies and
foundation.
2013-02-11 14:29:37 +00:00
taca
bc8ed4f2db Note addition of www/ruby-url_mount package version 0.2.1. 2013-02-11 14:07:24 +00:00
taca
f426bc9557 Add and enable ruby-url_mount. 2013-02-11 14:06:57 +00:00
taca
68e53d3518 Add ruby-url_mount package version 0.2.1.
UrlMount is a universal mount point designed for use in rack applications.

It provides a simple way to pass a url mounting point to the mounted
application.

This means that when you mount an application in the url space, it's a simple
call to url to get the mount point of where the application is.
2013-02-11 14:06:00 +00:00
taca
c631c82772 Note addtion of www/ruby-rack-contrib package version 1.1.0 and
www/ruby-rack-rewrite package version 1.3.3.
2013-02-11 13:32:39 +00:00
taca
5c69ae9b15 Add and enable ruby-rack-contrib and ruby-rack-rewrite. 2013-02-11 13:32:05 +00:00
taca
7a12423bfa Add ruby-rack-rewrite package version 1.3.3.
# rack-rewrite

A rack middleware for defining and applying rewrite rules. In many cases you
can get away with rack-rewrite instead of writing Apache mod_rewrite rules.
2013-02-11 13:31:27 +00:00
taca
13099fa3d8 Add ruby-rack-contrib package version 1.1.0.
Contributed Rack Middleware and Utilities

This package includes a variety of add-on components for Rack, a Ruby
web server interfaces.
2013-02-11 13:30:07 +00:00
taca
3257d2b568 Note addition of www/ruby-sinatra-contrib package version 1.3.2. 2013-02-11 13:18:18 +00:00
taca
9084cfa289 Add and enable ruby-sinatra-contrib. 2013-02-11 13:17:55 +00:00
taca
46e237e1b4 Add ruby-sinatra-contrib package version 1.3.2.
Collection of common Sinatra extensions, semi-officially supported.

# Goals

* For every future Sinatra release, have at least one fully compatible release
* High code quality, high test coverage
* Include plugins people usually ask for a lot
2013-02-11 13:17:18 +00:00
taca
062ddf63f4 Note update of www/ruby-sinatra package to 1.3.4. 2013-02-11 13:01:40 +00:00
taca
dd61ac35ec Update ruby-sinatra to 1.3.4.
= 1.3.4 / 2012-01-26

 * Improve documentation. (Kashyap, Stanislav Chistenko, Konstantin Haase,
   ymmtmsys, Anurag Priyam)

 * Adjustments to template system to work with Tilt edge. (Konstantin Haase)

 * Fix streaming with latest Rack release. (Konstantin Haase)

 * Fix default content type for Sinatra::Response with latest Rack release.
   (Konstantin Haase)

 * Fix regression where + was no longer treated like space. (Ross Boucher)

* Status, headers and body will be set correctly in an after filter when using
  halt in a before filter or route. (Konstantin Haase)
2013-02-11 13:01:12 +00:00
wiz
522a691d65 Updated devel/mercurial to 2.5.1 2013-02-11 12:45:30 +00:00
wiz
b24b09d098 Update to 2.5.1:
This is a non-scheduled bugfix release.
    hgk: support the old way of getting the current Ttk theme (issue3808)
    hgweb.cgi: fix internal WSGI emulation (issue3804)
    hgweb: make 'summary' work with hidden changesets (issue3810)
    incoming: fix incoming when a local head is remotely filtered (issue3805)
    largefiles: don't crash when trying to find default dest for url without path
    rebase: derive node from target rev (issue3802)
2013-02-11 12:45:20 +00:00
taca
f34372f377 Note addition of www/ruby-http_router package version 0.10.2. 2013-02-11 12:45:01 +00:00
wiz
0dc4205dde Updated multimedia/ffplay to 1.1.2 2013-02-11 12:43:57 +00:00
taca
a2371c81fe Add and enable ruby-http_router. 2013-02-11 12:43:52 +00:00
taca
907bf851ae Add ruby-http_router package version 0.10.2.
# HTTP Router

## What is it?

This is an HTTP router for use in either a web framework, or on it's own using
Rack. It takes a set of routes and attempts to find the best match for
it. Take a look at the examples directory for how you'd use it in the Rack
context.

## Features

* Ordered route resolution.
* Supports variables, and globbing, both named and unnamed.
* Regex support for variables.
* Request condition support.
* Partial matches.
* Supports interstitial variables (e.g.
  /my-:variable-brings.all.the.boys/yard) and unnamed variable /one/:/two
* Very fast and small code base (~1,000 loc).
* Sinatra via https://github.com/joshbuddy/http_router_sinatra
2013-02-11 12:43:13 +00:00
wiz
f6c94c72b3 Updated multimedia/ffmpeg to 20130602.1.1.2 2013-02-11 12:33:41 +00:00
wiz
3faf671d38 Update to 20130602.1.1.2:
1.1.2 was released on 2013-02-06. It is the latest stable FFmpeg
release from the 1.1 release branch, which was cut from master on
2013-01-06. Amongst lots of other changes, it includes all changes
from ffmpeg-mt, libav master of 2013-01-06, libav 9.1 as of
2013-02-05.
2013-02-11 12:33:31 +00:00
wiz
1d8732a76f Updated www/curl to 7.29.0 2013-02-11 12:20:52 +00:00
wiz
9454f91f42 Update to 7.29.0:
Fixed in 7.29.0 - February 6 2013

Release contains security-related bug fix
(already fixed in pkgsrc)

Changes:

    test: offer "automake" output and check for perl better
    always-multi: always use non-blocking internals
    imap: Added support for sasl digest-md5 authentication
    imap: Added support for sasl cram-md5 authentication
    imap: Added support for sasl ntlm authentication
    imap: Added support for sasl login authentication
    imap: Added support for sasl plain text authentication
    imap: Added support for login disabled server capability
    mk-ca-bundle: add -f, support passing to stdout and more
    writeout: -w now supports remote_ip/port and local_ip/port

Bugfixes:

    SECURITY ADVISORY: SASL buffer overflow vulnerability
    nss: prevent NSS from crashing on client auth hook failure
    darwinssl: Fixed inability to disable peer verification on Snow Leopard and Lion
    curl_multi_remove_handle: fix memory leak triggered with CURLOPT_RESOLVE
    SCP: relative path didn't work as documented
    setup_once.h: HP-UX issue workaround
    configure: fix cross pkg-config detection
    runtests: Do not add undefined values to @INC
    build: fix compilation with CURL_DISABLE_CRYPTO_AUTH flag
    multi: fix re-sending request on early connection close
    HTTP: remove stray CRLF in chunk-encoded content-free request bodies
    build: fix AIX compilation and usage of events/revents
    VC Makefiles: add missing hostcheck
    nss: clear session cache if a client certificate from file is used
    nss: fix error messages for CURLE_SSL_{CACERT,CRL}_BADFILE
    fix HTTP CONNECT tunnel establishment upon delayed response
    --libcurl: fix for non-zero default options
    FTP: reject illegal port numbers in EPSV 229 responses
    build: use per-target '_CPPFLAGS' for those currently using default
    configure: fix automake 1.13 compatibility
    curl: ignore SIGPIPE
    pop3: Added support for non-blocking SSL upgrade
    pop3: Fixed default authentication detection
    imap: Fixed usernames and passwords that contain escape characters
    packages/DOS/common.dj: remove COFF debug info generation
    imap/pop3/smtp: Fixed failure detection during TLS upgrade
    pop3: Fixed no known authentication mechanism when fallback is required
    formadd: reject trying to read a directory where a file is expected
    formpost: support quotes, commas and semicolon in file names
    docs: update the comments about loading CA certs with NSS
    docs: fix typos in man pages
    darwinssl: Fix bug where packets were sometimes transmitted twice
    winbuild: include version info for .dll .exe
    schannel: Removed extended error connection setup flag
    VMS: fix and generate the VMS build config
2013-02-11 12:20:43 +00:00
wiz
77c5b06e8e Updated x11/xterm to 289 2013-02-11 12:01:36 +00:00