Commit graph

182436 commits

Author SHA1 Message Date
hans
a40f727390 Add vdpau to the list of disabled plugins. 2012-02-16 19:27:47 +00:00
hans
c0b436a76f Fix build on SunOS. 2012-02-16 19:25:11 +00:00
hans
338cd9beb0 Remove check for fopencookie/funopen. They are not required to build
this package.
2012-02-16 19:15:12 +00:00
hans
e8c9386ce6 Make sure the correct install tool is used. 2012-02-16 19:06:52 +00:00
hans
d1ecc9f11a Uses a BSD makefile. 2012-02-16 19:04:52 +00:00
hans
7a3b55e356 Fix build on SunOS. 2012-02-16 18:57:49 +00:00
hans
94c0d65e3e Explicitly tell CPP that it should parse stdin as C-header when building glu.exports. 2012-02-16 18:56:23 +00:00
hans
d20d509a66 Uses nroff to build its manpage. 2012-02-16 18:53:22 +00:00
hans
37f16e86c6 Fix build on SunOS. 2012-02-16 18:48:52 +00:00
hans
95724a3276 Make sure this uses the correct install tool. 2012-02-16 18:48:05 +00:00
hans
cda6e06f24 Fix build on SunOS. 2012-02-16 18:45:59 +00:00
hans
a9321c60e1 Set CFLAGS for the benefit of packages ignoring CPPFLAGS. 2012-02-16 18:39:53 +00:00
hans
ddfeac2662 Don't use -Werror on SunOS. 2012-02-16 18:38:46 +00:00
hans
bcc88da3db Fix build on SunOS. 2012-02-16 18:36:34 +00:00
hans
bb5880c557 Fix build on SunOS (previous commit was incomplete). 2012-02-16 18:35:02 +00:00
hans
6c13e8d023 Fix build on SunOS. 2012-02-16 18:33:36 +00:00
hans
16728a73c8 Fix two problems observed on SunOS:
- don't try to find a python executable when running for pkgsrc
 - use g++ instead of gcc for linking c++ libraries, patch from
   http://public.kitware.com/pipermail/cmake/2011-July/045300.html
2012-02-16 18:32:25 +00:00
hans
b5b80fae20 Upstream build fix for https://svn.boost.org/trac/boost/ticket/6158 2012-02-16 18:24:12 +00:00
hans
1d289937f9 Uses nroff and USE_BSD_MAKEFILE. 2012-02-16 18:10:43 +00:00
hans
25e1487aff Fix build on SunOS. 2012-02-16 18:05:09 +00:00
hans
40067857c7 Remove set but unused variable. 2012-02-16 18:04:08 +00:00
hans
40819b4e65 Fix build on SunOS. 2012-02-16 18:00:20 +00:00
hans
3ca01df436 Fix build on SunOS. 2012-02-16 17:47:04 +00:00
hans
b691bd4994 Fix build on SunOS. 2012-02-16 17:35:30 +00:00
hans
ab724cef75 Fix build on SunOS. 2012-02-16 17:25:16 +00:00
hans
0e0c6a37db Buildlink textproc/wbxml2 in buildlink3.mk. 2012-02-16 17:22:39 +00:00
hans
35eb698529 Don't enable bluetooth on SunOS. 2012-02-16 17:21:15 +00:00
hans
bc19dd9cb6 Don't use -export-dynamic on SunOS. 2012-02-16 17:20:07 +00:00
hans
f628bdb621 Don't try to install SysV init scripts. That used to fix the build on
SunOS. Now it breaks because of tiff 4.0.
2012-02-16 17:18:50 +00:00
hans
dffea9e1f5 Fix build on SunOS. 2012-02-16 17:13:03 +00:00
taca
bf5c76114a Add version for Contao 2.11.0. 2012-02-16 16:48:06 +00:00
hans
04a87af153 Fix build on SunOS. 2012-02-16 16:47:57 +00:00
taca
a11ff34e1b Note update of Ruby 1.8.7 and 1.9.3 releated packages:
lang/ruby18-base	1.8.7.358
	lang/ruby18		1.8.7.358
	lang/ruby193-base	1.9.3p125
	lang/ruby193		1.9.3p125
	devel/ruby-mode		1.9.3p125
2012-02-16 16:47:04 +00:00
taca
439eaac1f1 Reset PKGREVISION with update. 2012-02-16 16:46:24 +00:00
taca
6f85b19f05 Update ruby193-base package to 1.9.3p125 (Ruby 1.9.3 patchlevel 125).
Implictly update lang/ruby193 and devel/ruby-mode (nothing change).

== Fixes

* Fix for Ruby OpenSSL module: Allow "0/n splitting" as a prevention
  for the TLS BEAST attack
* Fixed: LLVM/clang support [Bug #5076]
* Fixed: GCC 4.7 support [Bug #5851]
* other bug fixes

For more detail, please refer:
	http://svn.ruby-lang.org/repos/ruby/tags/v1_9_3_125/ChangeLog
2012-02-16 16:43:38 +00:00
hans
a488553a3c Fix build on SunOS. 2012-02-16 16:40:34 +00:00
taca
eada6519d2 Update ruby18-base package to 1.8.7-pl357 (Ruby 1.8.7 patchlevel 357).
Wed Feb  8 14:06:59 2012  Hiroshi Nakamura  <nahi@ruby-lang.org>

	* ext/openssl/ossl_ssl.c: Add SSL constants and allow to unset SSL
	  option to prevent BEAST attack. See [Bug #5353].

	  In OpenSSL, OP_DONT_INSERT_EMPTY_FRAGMENTS is used to prevent
	  TLS-CBC-IV vulunerability described at
	  http://www.openssl.org/~bodo/tls-cbc.txt
	  It's known issue of TLSv1/SSLv3 but it attracts lots of attention
	  these days as BEAST attack. (CVE-2011-3389)

	  Until now ossl sets OP_ALL at SSLContext allocation and call
	  SSL_CTX_set_options at connection.  SSL_CTX_set_options updates the
	  value by using |= so bits set by OP_ALL cannot be unset afterwards.

	  This commit changes to call SSL_CTX_set_options only 1 time for each
	  SSLContext. It sets the specified value if SSLContext#options= are
	  called and sets OP_ALL if not.

	  To help users to unset bits in OP_ALL, this commit also adds several
	  constant to SSL such as
	  OpenSSL::SSL::OP_DONT_INSERT_EMPTY_FRAGMENTS.  These constants were
	  not exposed in Ruby because there's no way to unset bits in OP_ALL
	  before.

	  Following is an example to enable 0/n split for BEAST prevention.

	    ctx.options = OP_ALL & ~OP_DONT_INSERT_EMPTY_FRAGMENTS

	* test/openssl/test_ssl.rb: Test above option exists.
2012-02-16 16:36:07 +00:00
hans
c0dfa2c444 Fix build on SunOS. 2012-02-16 16:30:03 +00:00
hans
54c8799333 Fix build on SunOS. 2012-02-16 16:13:51 +00:00
hans
cc8229d99d Include strings.h for rindex(), fixes build on SunOS. 2012-02-16 16:11:24 +00:00
hans
3853ba4d1f Fix build on SunOS. 2012-02-16 16:04:52 +00:00
hans
b3f11ce974 Fix build on SunOS. Also fix a few things that gcc46 complains about. 2012-02-16 15:50:15 +00:00
hans
ed19eb9970 Fix build on SunOS. 2012-02-16 15:37:55 +00:00
hans
8948fa317c Fix destdir build. 2012-02-16 15:36:31 +00:00
hans
2303554286 Fix build on SunOS. 2012-02-16 15:28:19 +00:00
hans
ca21c23fbb Build locales, buildlink against libiconv. 2012-02-16 15:26:41 +00:00
hans
3c2357aace Fix build on SunOS. 2012-02-16 15:12:49 +00:00
drochner
56b16eaba9 open(2) is variadic (at least in Posix and NetBSD), g_open is not,
don't mix them, the ABIs are incompatible at least on amd64
bump PKGREV
2012-02-16 15:09:54 +00:00
hans
32a83d8064 Fix build on SunOS. 2012-02-16 15:00:58 +00:00
taca
ababb617c9 Sort PLIST. 2012-02-16 14:47:01 +00:00