<ChangeLog>
*) Change: now nginx takes into account the "Vary" header line in a
backend response while caching.
*) Feature: the "proxy_force_ranges", "fastcgi_force_ranges",
"scgi_force_ranges", and "uwsgi_force_ranges" directives.
*) Feature: the "proxy_limit_rate", "fastcgi_limit_rate",
"scgi_limit_rate", and "uwsgi_limit_rate" directives.
*) Feature: the "Vary" parameter of the "proxy_ignore_headers",
"fastcgi_ignore_headers", "scgi_ignore_headers", and
"uwsgi_ignore_headers" directives.
*) Bugfix: the last part of a response received from a backend with
unbufferred proxy might not be sent to a client if "gzip" or "gunzip"
directives were used.
*) Bugfix: in the "proxy_cache_revalidate" directive.
Thanks to Piotr Sikora.
*) Bugfix: in error handling.
Thanks to Yichun Zhang and Daniil Bondarev.
*) Bugfix: in the "proxy_next_upstream_tries" and
"proxy_next_upstream_timeout" directives.
Thanks to Feng Gu.
*) Bugfix: nginx/Windows could not be built with MinGW-w64 gcc.
Thanks to Kouhei Sutou.
</ChangeLog>
and actually breaks badly if the port is being built in a chroot
where the host triplet won't match the jail triplet.
The solution I've provided here is clean. Using the pre-configure
target, the build directory (with a fixed name) is created and the
needed configure script and header are copied over, just like the top
configure script does. Then the port makefile just configures with
that. It's much better, more robust, and fixes the triplet mismatch.
PR: 194679
Submitted by: marino
Pioneer is a space adventure game set in the Milky Way galaxy at the turn of
the 31st century.
The game is open-ended, and you are free to explore the millions of star
systems in the game. You can land on planets, slingshot past gas giants, and
burn yourself to a crisp flying between binary star systems. You can try your
hand at piracy, make your fortune trading between systems, or do missions for
the various factions fighting for power, freedom or self-determination.
WWW: http://pioneerspacesim.net
WWW: http://github.com/pioneerspacesim/pioneer
PR: 193213
Submitted by: lightside@gmx.com
- Upstream released 3.9.0.6 with SSLv3 disabled in response to the
POODLE vulnerability.
- Submitter becomes maintainer
PR: 194597
Submitted by: matthew@reztek.cz
- Clarify LICENSE
- Add LICENSE_FILE
- Optionize DOCS
- Turn configure warnings into errors to notice problems faster (such as failure of previous version to properly detect protobuf-c)
When passing timeout values to ssh_option_set of security/libssh, an int type
pointer is used instead of a long int one required by the ssh_option_set
documentation, which causes platform specific (or undefined) behaviour on
architectures where sizeof (long int) is different to sizeof (int).
Fix this by "promoting" the referenced locals to long integer type.
This commit merges r10452 of area51 and is based on a report by Dwayne
MacKinnon via kde@ mailing list.
References:
https://mail.kde.org/pipermail/kde-freebsd/2014-October/018330.htmlhttps://bugs.kde.org/show_bug.cgi?id=331674
Approved by: rakuco (mentor)
This program provides for an alternate pkg upgrade procedure.
Usage: pkg-compare [options] new_path old_path
This program reads local.sqlite in new_path and compares list of installed
packages in local.sqlite in old_path. If a package is found in old_path which
is not in new_path then the name of the port is printed, one per line.
Command line switches:
-p prefix uninstalled packages with 'pkg install -Rf'
-m show manually installed packages only, no deps
WWW: https://github.com/waitman/pkg-compare
PR: 186484
Submitted by: waitman@waitman.net