notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine

Bot filter coming soon

To deter bots pegging the database CPU to 100%, a bot testing filter to be added to the website. This should not affect newsfeeds etc. Anubis seems light-weight - it is already in use within the FreeBSD Project. This notice is just a heads up in case you see something odd. This notice will be updated after Anubis is installed.

non port: emulators/virtualbox-ose/Makefile

Number of commits found: 299 (showing only 100 on this page)

«  1 | 2 | 3  »  

Tuesday, 29 Jan 2019
19:12 jkim search for other commits by this committer
Update to 5.2.26.

https://www.virtualbox.org/wiki/Changelog-5.2#v26
Original commitRevision:491591 
Monday, 28 Jan 2019
06:56 araujo search for other commits by this committer
- Bump PORTREVISION of ports that depends of net/libvncserver after it
  was updated to version 0.9.12

Submitted by:	dereks_lifeofadishwasher.com
Differential Revision:	https://reviews.freebsd.org/D18836
Original commitRevision:491457 
Wednesday, 16 Jan 2019
15:19 jkim search for other commits by this committer
Update to 5.2.24.

https://www.virtualbox.org/wiki/Changelog-5.2#v24
Original commitRevision:490486 
11:13 tijl search for other commits by this committer
Fix Qt5 symbol version scripts to put the catch-all clause first.  When
a symbol matches multiple clauses the last one takes precedence.  If the
catch-all is last it captures everything.  In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API.  This only affects lld because GNU ld always gives the
catch-all lowest priority.

Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium.  Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3]  The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one.  If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash.  Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.

Remove the weak wrappers (make them Linux specific).  This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.

[1]
https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4
[2]
https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5
[3]
https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5

Bump all ports that depend on Qt5.

PR:		234070
Exp-run by:	antoine
Approved by:	kde (adridg)
Original commitRevision:490472 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Thursday, 29 Nov 2018
21:09 jkim search for other commits by this committer
Fix a VNC regression since 5.2.20.

PR:		232528
Obtained from:	VirtualBox Ticket #18153
Original commitRevision:486206 
Friday, 9 Nov 2018
23:54 jkim search for other commits by this committer
Update to 5.2.22.

https://www.virtualbox.org/wiki/Changelog#22
Original commitRevision:484559 
Wednesday, 17 Oct 2018
06:49 jkim search for other commits by this committer
Update to 5.2.20.

https://www.virtualbox.org/wiki/Changelog#20
Original commitRevision:482272 
Tuesday, 11 Sep 2018
18:34 zeising search for other commits by this committer
Change x11/xorgproto to become a build dep

Change x11/xorgproto to become a build time dependency when added to
USE_XORG.  Change the dependency to be on the port, rather than a file the
port installs.
Fix fallout.
Bump portrevision on depending ports.

PR:		230909
Reviewed by:	eadler
Approved by:	portmgr (antoine)
Obtained
from:	https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto
exp-run:	antoine
Differential Revision:	https://reviews.freebsd.org/D16906
Original commitRevision:479538 
Wednesday, 15 Aug 2018
19:38 jkim search for other commits by this committer
Update to 5.2.18.

https://www.virtualbox.org/wiki/Changelog#18
Original commitRevision:477280 
Tuesday, 31 Jul 2018
18:41 zeising search for other commits by this committer
Switch to xorgproto instead of individual packages

Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto.  This update
tracks that change.

* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
  bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
  instead depend on xorgproto.  Bump portrevision.
* Delete the old *proto packages, update MOVED.

PR:		230023
Submitted by:	zeising
Approved by:	portmgr (antoine)
exp-run by:	antoine
Original commitRevision:476013 
Thursday, 26 Jul 2018
11:46 tobik search for other commits by this committer
emulators/virtualbox-ose: Fix build when using 3.? as default Python

When using DEFAULT_VERSIONS=python=3.6 or similar the build fails
with

kBuild: Generating python -
.../out/freebsd.amd64/release/obj/VBoxOGLgen/spu_dispatch_table.h
kmk_builtin_redirect: posix_spawnp(python-not-found) failed: No such file or
directory

Explicitly use Python 2.7 for the time being to fix the build.

PR:		225734
Submitted by:	Peter Wullinger <freebsd@dhke.de>
Approved by:	vbox (maintainer timeout, 5 months+)
Original commitRevision:475363 
Tuesday, 24 Jul 2018
23:22 bdrewery search for other commits by this committer
vboxheadless: Fix start of specific machine after base r291770.

The vboxheadless rc script has its own pid checking, so the rc.subr
version in run_rc_command is not needed.

PR:		212074
Original commitRevision:475282 
Tuesday, 17 Jul 2018
19:19 jkim search for other commits by this committer
Update to 5.2.16.

https://www.virtualbox.org/wiki/Changelog#16
Original commitRevision:474823 
Monday, 2 Jul 2018
22:13 jkim search for other commits by this committer
Update to 5.2.14.

https://www.virtualbox.org/wiki/ChangeLog#14
Original commitRevision:473773 
Thursday, 28 Jun 2018
17:39 tcberner search for other commits by this committer
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk

From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	-https://reviews.freebsd.org/D15540
Original commitRevision:473503 
Thursday, 10 May 2018
18:41 jkim search for other commits by this committer
Update to 5.2.12.

https://www.virtualbox.org/wiki/Changelog#12
Original commitRevision:469570 
Thursday, 3 May 2018
22:30 jkim search for other commits by this committer
Chase Guest Additions change.

Reported by:	Patrick Mackinlay (patrick at spacesurfer dot com)
Original commitRevision:468992 
Tuesday, 17 Apr 2018
21:17 jkim search for other commits by this committer
Update to 5.2.10.

https://www.virtualbox.org/wiki/Changelog#v10
Original commitRevision:467659 
Saturday, 10 Mar 2018
17:46 gerald search for other commits by this committer
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
Original commitRevision:464084 
Wednesday, 28 Feb 2018
23:36 jkim search for other commits by this committer
Update to 5.2.8.

https://www.virtualbox.org/wiki/Changelog#v8
Original commitRevision:463272 
Monday, 5 Feb 2018
21:06 eugen search for other commits by this committer
emulators/virtualbox-ose: remove extra dependency on cdrtools.

Dependency on cdrtools was introduced 6 years ago for sake of mkisofs:
https://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose/Makefile?revision=274444&view=markup

In fact, VirtualBox build system does not use makeisofs
while building for FreeBSD because it does not even try to buid
VirtualBox Additions ISO image as its documentation says
in the Prerequisites section:

	mkisofs (required only for additions which aren't supported yet)
	=> /usr/ports/sysutils/cdrtools

	https://www.virtualbox.org/wiki/FreeBSD%20build%20instructions

And it never really used mkisofs.
Drop the dependency and bump PORTREVISION.

PR:		225376
Approved by:	vbox (maintainer timeout, 2 weeks)
Original commitRevision:461020 
Thursday, 25 Jan 2018
21:20 jbeich search for other commits by this committer
multimedia/libvpx: update 1.7.0

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI:		https://abi-laboratory.pro/tracker/timeline/libvpx/
Original commitRevision:459963 
Tuesday, 23 Jan 2018
17:30 jkim search for other commits by this committer
Re-enable AVX/AVX2 support for guest.

This patch is no longer necessary according to the original reporter.

PR:		211651
Original commitRevision:459789 
Wednesday, 17 Jan 2018
01:59 jkim search for other commits by this committer
Update to 5.2.6.
Original commitRevision:459217 
Wednesday, 27 Dec 2017
21:01 jkim search for other commits by this committer
Update to 5.2.4.

https://www.virtualbox.org/wiki/Changelog#v4
Original commitRevision:457424 
Thursday, 30 Nov 2017
23:53 jkim search for other commits by this committer
Reduce build dependency.

PR:		223709
Original commitRevision:455238 
23:45 jkim search for other commits by this committer
Update to 5.2.2.
Original commitRevision:455237 
15:50 mat search for other commits by this committer
Convert Python ports to FLAVORS.

  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Original commitRevision:455210 
Monday, 30 Oct 2017
15:41 mat search for other commits by this committer
Fix stage-qa warnings.

Sponsored by:	Absolight
Original commitRevision:453192 
Wednesday, 25 Oct 2017
00:15 jkim search for other commits by this committer
- Work around build failures with Clang 3.4.
- Fix build without WEBSERVICE option. [1]

PR:		223201 [1]
Original commitRevision:452823 
Monday, 23 Oct 2017
16:49 jkim search for other commits by this committer
Update to 5.2.0.
Original commitRevision:452715 
Tuesday, 17 Oct 2017
00:53 jkim search for other commits by this committer
Update to 5.1.30.
Original commitRevision:452255 
Thursday, 28 Sep 2017
23:46 jkim search for other commits by this committer
Revert r450636.  It did not work as we expected.
Original commitRevision:450880 
Monday, 25 Sep 2017
21:39 jkim search for other commits by this committer
Build recompiler with Clang if global register variable is supported.

Note support for global register variable was proposed in the following
upstream code reviews:

https://reviews.llvm.org/D3261
https://reviews.llvm.org/D3797

and commits:

http://llvm.org/viewvc/llvm-project?view=revision&revision=208104
http://llvm.org/viewvc/llvm-project?view=revision&revision=209149

However, it has very limited support as described in the following upstream
PR in the gory details:

https://bugs.llvm.org/show_bug.cgi?id=31005

Although it is incomplete, I *believe* Clang 3.5 and later has just enough
code to support (ancient) QEMU-based recompiler.  If you experience any VM
crash related to recompiler, e.g., "fatal error in recompiler cpu" in its
VBox.log, please let me know.

FYI, QEMU was rewritten not to use this GCC-specific feature long time ago:

http://lists.gnu.org/archive/html/qemu-devel/2011-05/msg00855.html
https://www.mail-archive.com/qemu-devel@nongnu.org/msg63834.html

Unfortunately, VirtualBox stopped merging code from QEMU for some time now.

Tested by:	soralx@cydem.org
Original commitRevision:450636 
Friday, 15 Sep 2017
06:34 jkim search for other commits by this committer
Update to 5.1.28.
Original commitRevision:449889 
Friday, 8 Sep 2017
01:12 jkim search for other commits by this committer
- Fix overflow in host memory size calculation.
- Catch up with PG_CACHE removal on head.

PR:		211432
Original commitRevision:449436 
Tuesday, 1 Aug 2017
20:46 jkim search for other commits by this committer
Revert r446286.  ar(1) on head should be fixed with r321674.
Original commitRevision:447077 
Friday, 28 Jul 2017
17:08 jkim search for other commits by this committer
Update to 5.1.26.
Original commitRevision:446841 
Thursday, 20 Jul 2017
19:05 jkim search for other commits by this committer
Apply a bandaid to fix sporadic build failures on head.
Original commitRevision:446286 
Wednesday, 19 Jul 2017
00:03 jkim search for other commits by this committer
Update to 5.1.24.
Original commitRevision:446181 
Wednesday, 12 Jul 2017
02:39 araujo search for other commits by this committer
Bump PORTREVISION of several ports that depends of net/libvncserver to
reflect the changes made on r445054.

PR:			ports/220565 (based on)
Submitted by:		Martin Birgmeier <la5lbtyi@aon.at>
Sponsored by:		iXsystems, Inc.
Original commitRevision:445565 
Tuesday, 23 May 2017
05:03 rezny search for other commits by this committer
Revision bump of all ports with USE_GL after consolidation of mesa-libs

Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D10845
Original commitRevision:441503 
Monday, 1 May 2017
18:49 jkim search for other commits by this committer
Update to 5.1.22.
Original commitRevision:439904 
Wednesday, 26 Apr 2017
19:04 ak search for other commits by this committer
- Remove checks for .PARSEDIR and vestiges of pmake support

PR:	218832
Approved by:	portmgr (antoine)
Original commitRevision:439485 
Friday, 21 Apr 2017
16:43 jkim search for other commits by this committer
Add a forgotten Qt4 patch in the previous commit.

Pointyhat to:	jkim
PR:		218795
Original commitRevision:439099 
Wednesday, 19 Apr 2017
18:10 jkim search for other commits by this committer
- Fix build with option QT4.
- Warn users Qt4 support may be removed in the future.

PR:		218748
Submitted by:	w dot schwarzenfeld at utanet dot at (initial)
Original commitRevision:438899 
Tuesday, 18 Apr 2017
20:56 jkim search for other commits by this committer
Update to 5.1.20.
Original commitRevision:438815 
Wednesday, 15 Mar 2017
22:22 jkim search for other commits by this committer
Update to 5.1.18.
Original commitRevision:436259 
Thursday, 9 Mar 2017
21:50 jkim search for other commits by this committer
Improve D-Bus support.
Original commitRevision:435803 
19:21 jkim search for other commits by this committer
Fix build with option QT4.

Submitted by:	Walter Schwarzenfeld (w dot schwarzenfeld at utanet dot at)
Original commitRevision:435797 
00:25 jkim search for other commits by this committer
Update to 5.1.16.
Original commitRevision:435738 
Tuesday, 21 Feb 2017
22:02 jkim search for other commits by this committer
Update the hints to use service(8).
Original commitRevision:434556 
21:56 jkim search for other commits by this committer
Warn and stop build if the kernel cannot execute a 32-bit binary.

PR:		193946
Original commitRevision:434555 
20:12 jkim search for other commits by this committer
Fix build with option QT4.

PR:		217240
Original commitRevision:434552 
Wednesday, 25 Jan 2017
21:01 jkim search for other commits by this committer
Fix USB support.

PR:		212845
Submitted by:	hselasky
Tested by:	Graham Menhennitt (graham at menhennitt dot com dot au)
Original commitRevision:432460 
Saturday, 21 Jan 2017
21:47 matthew search for other commits by this committer
Update to 0.9.11

This includes a	security fix for CVE-2016-9941 and CVE-2016-9942

  * Drop files/patch-libvncclient_h264.c -- upstream has dropped h264 support
  * Switch from USE_OPENSSL to USES+=ssl
  * PORTREVISION bump in ports that link against libvncserver.so (with
    their default OPTIONS settings) due to change in ABI version of
    libvncserver.so

PR:		215802
Submitted by:	vlad-fbsd@acheronmedia.com
MFH:		2017Q1
Security:	64be967a-d379-11e6-a071-001e67f15f5a
Original commitRevision:432083 
Thursday, 19 Jan 2017
06:36 jkim search for other commits by this committer
Fix build with QT4.

Reported by:	ler
Tested by:	ler
Original commitRevision:431852 
Wednesday, 18 Jan 2017
19:09 jkim search for other commits by this committer
Update to 5.1.14.
Original commitRevision:431821 
Wednesday, 21 Dec 2016
14:01 jkim search for other commits by this committer
Update to 5.1.12.
Original commitRevision:429084 
Thursday, 24 Nov 2016
20:37 jkim search for other commits by this committer
Update to 5.1.10.
Original commitRevision:427059 
Sunday, 23 Oct 2016
19:37 jkim search for other commits by this committer
Update to 5.1.8.

PR:		213683
Differential Revision:	https://reviews.freebsd.org/D8292
Original commitRevision:424538 
Wednesday, 5 Oct 2016
20:57 jkim search for other commits by this committer
Fix the previous commit.  It was incomplete.

Pointy hat:	jkim
Original commitRevision:423390 
20:49 jkim search for other commits by this committer
Add newly added slave ports to CONFLICTS_INSTALL.
Original commitRevision:423389 
20:13 jkim search for other commits by this committer
Add the newly added emulators/virtualbox-ose-nox11 to CONFLICTS_INSTALL.
Original commitRevision:423384 
19:55 jkim search for other commits by this committer
- Rename emulators/virtualbox-ose-lite to emulators/virtualbox-ose-nox11 and
assign its maintainership to vbox@. [1]
- Use OPTIONS_EXCLUDE to simplify its master port.

Approved by:	alfred (maintainer) [1]
Original commitRevision:423381 
Friday, 30 Sep 2016
01:15 jbeich search for other commits by this committer
multimedia/libvpx: update 1.6.0

ABI is incompatible... or not? SONAME has changed but the removed vp10
symbols weren't actually exposed (and still aren't).

Note, FreeBSD 9.x now builds with Clang 3.4 because GCC 4.2 fails:

  vp9/encoder/x86/vp9_frame_scale_ssse3.c: In function 'eight_tap_row_ssse3':
  vp9/encoder/x86/vp9_frame_scale_ssse3.c:93: internal compiler error: in
simplify_binary_operation_1, at simplify-rtx.c:2563
  Please submit a full bug report,
  with preprocessed source if appropriate.
  See <URL:http://gcc.gnu.org/bugs.html> for instructions.

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/v1.5.0..v1.6.0
ACC
report:	https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.5.0_to_1.6.0/compat_report.html
Original commitRevision:422956 
Friday, 16 Sep 2016
19:47 jkim search for other commits by this committer
Remove a redundant PLIST_SUB.
Original commitRevision:422267 
18:48 jkim search for other commits by this committer
Add support for Python 3.x.

PR:		212691
Original commitRevision:422262 
Monday, 12 Sep 2016
22:52 jkim search for other commits by this committer
Update to 5.1.6.
Original commitRevision:421965 
Wednesday, 7 Sep 2016
21:35 jkim search for other commits by this committer
Update to 5.1.4.
Original commitRevision:421521 
Saturday, 13 Aug 2016
04:05 jkim search for other commits by this committer
Temporarily disable AVX support for guest.  It is unstable for FreeBSD.

PR:		211651
Original commitRevision:420152 
Tuesday, 2 Aug 2016
20:43 jkim search for other commits by this committer
Fix build with non-base OpenSSL without MD2 support.

PR:		211524
Original commitRevision:419492 
Friday, 22 Jul 2016
20:28 jkim search for other commits by this committer
Update to 5.0.26.
Original commitRevision:418931 
Wednesday, 20 Jul 2016
15:33 mat search for other commits by this committer
Cleanup $() variables in ports Makefiles.

Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)

Sponsored by:	Absolight
Original commitRevision:418840 
Tuesday, 12 Jul 2016
18:55 jkim search for other commits by this committer
Allow overriding MAINTAINER from slave ports.
Original commitRevision:418435 
Tuesday, 5 Jul 2016
08:06 alfred search for other commits by this committer
virtualbox-ose-lite minimal deps for packaging

This package has minimal deps, only udp server and
vncserver are required.

This works really nicely for someone who just wants
to run headless vms or the VBoxManage tools without
bloat.
Original commitRevision:418067 
Thursday, 16 Jun 2016
13:23 mat search for other commits by this committer
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.

WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo

PR:		210149
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	The FreeBSD Foundation, Absolight
Differential Revision:	https://reviews.freebsd.org/D6577
Original commitRevision:416966 
Tuesday, 10 May 2016
05:29 pi search for other commits by this committer
emulators/virtualbox-ose: fix VirtualBox hang on file dialog in KDE

PR:		199364
Submitted by:	yuri@rawbw.com
Approved by:	maintainer timeout
Original commitRevision:414919 
Thursday, 21 Apr 2016
17:11 jkim search for other commits by this committer
Update to 4.3.38.

MFH:		2016Q2
Original commitRevision:413748 
Tuesday, 19 Apr 2016
16:20 jkim search for other commits by this committer
Install NAT helper.

PR:		208893
Original commitRevision:413655 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Friday, 5 Feb 2016
04:24 jkim search for other commits by this committer
Update to 4.3.36.
Original commitRevision:408130 
Friday, 22 Jan 2016
12:46 lwhsu search for other commits by this committer
Add "Enable R0 logging" option and set BUILD_TYPE=debug while DEBUG option set

PR:		206470
Submitted by:	lwhsu
Approved by:	decke
Original commitRevision:406926 
Saturday, 14 Nov 2015
19:34 jbeich search for other commits by this committer
multimedia/libvpx: update 1.5.0

ABI isn't compatible, so bump PORTREVISION in consumers.

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/e67d45d..v1.5.0
ACC
report:	https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0.488_1_to_1.5.0/compat_report.html
PR:		204478
Exp-run by:	antoine
Approved by:	ashish (maintainer)
Original commitRevision:401587 
Thursday, 12 Nov 2015
22:15 jkim search for other commits by this committer
Update to 4.3.34.

MFH:		2015Q4
Original commitRevision:401462 
Tuesday, 20 Oct 2015
20:09 jkim search for other commits by this committer
Update to 4.3.32.

MFH:		2015Q4
Original commitRevision:399877 
Thursday, 15 Oct 2015
14:55 mat search for other commits by this committer
Drop 8 support.

With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3694
Original commitRevision:399346 
Friday, 10 Jul 2015
20:42 jkim search for other commits by this committer
Update to 4.3.30.

MFH:		2015Q3
Original commitRevision:391720 
Tuesday, 9 Jun 2015
14:25 jbeich search for other commits by this committer
multimedia/libvpx: update to 1.4.0

ABI isn't compatible, so bump PORTREVISION in consumers.

Changes:	https://chromium.googlesource.com/webm/libvpx/+/v1.4.0
Differential Revision:	https://reviews.freebsd.org/D2570
Exp-run by:	antoine
Approved by:	ashish, multimedia (kwm)
Approved by:	maintainer timeout (ale, dinoex; 2 weeks)
Original commitRevision:388940 
Friday, 15 May 2015
19:29 jkim search for other commits by this committer
Fix build without OpenSSL in the base.

PR:		199377
Original commitRevision:386475 
Wednesday, 13 May 2015
22:20 jkim search for other commits by this committer
Update to 4.3.28.
Original commitRevision:386272 
Monday, 16 Mar 2015
23:04 jkim search for other commits by this committer
Update to 4.3.26.
Original commitRevision:381456 
17:57 jkim search for other commits by this committer
Fix the fix.  My patch was actually wrong and upstream properly fixed it.

Pointy hat to:	jkim
Original commitRevision:381429 
Friday, 13 Mar 2015
21:21 jkim search for other commits by this committer
Fix several bugs found by Clang.  Note few patches were obtained from
upstream.  Other patches were submitted to upstream.
Original commitRevision:381235 
00:39 jkim search for other commits by this committer
VBoxSDL does not support drag and drop feature.  Make it depend upon QT4.
Original commitRevision:381155 
Thursday, 12 Mar 2015
06:52 jkim search for other commits by this committer
- Enable drag and drop from host to guest.
- Make UDPTUNNEL option actually work.
Original commitRevision:381061 
Tuesday, 3 Mar 2015
05:43 jkim search for other commits by this committer
Update to 4.3.24.
Original commitRevision:380340 
Tuesday, 17 Feb 2015
07:07 jkim search for other commits by this committer
Let rc(8) scripts directly execute binaries.  This makes them stop properly.

Submitted by:	vvd@unislabs.com (initial patch)
Original commitRevision:379144 
Monday, 16 Feb 2015
21:49 jkim search for other commits by this committer
Fix the executable wrapper to properly check its installation directory when
QT4 option is disabled.

Reported by:	raul@b2n.org, abi@abinet.ru
Submitted by:	gpalmer (initial patch)
Original commitRevision:379121 

Number of commits found: 299 (showing only 100 on this page)

«  1 | 2 | 3  »