| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=490472
|
|
|
|
|
|
|
|
| |
Reported by: pi@
MFH: 2019Q1
Notes:
svn path=/head/; revision=489994
|
|
|
|
| |
Notes:
svn path=/head/; revision=488651
|
|
|
|
| |
Notes:
svn path=/head/; revision=488534
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
QT4 support is deprecated and will be removed in March 2019.
fwbuilder upline is no longer supported.
Solution:
Use the fwbuilder fork on github. This:
- updates fwbuilder from 5.1.0 to 5.3.7.
- uses QT5.
- is supported.
Notes:
svn path=/head/; revision=488503
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.
Submitted by: tcberner
Reviewed by: adridg, jhale, rene, tcberner
Approved by: portmgr (implicit, flavor hook)
Differential Revision: https://reviews.freebsd.org/D17741
Notes:
svn path=/head/; revision=486467
|
|
|
|
|
|
|
|
|
|
|
| |
Also various fixes related to said option.
PR: 230864
Submitted by: mat
exp-runs by: antoine
Notes:
svn path=/head/; revision=479406
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=473503
|
|
|
|
|
|
|
|
|
| |
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=471976
|
|
|
|
| |
Notes:
svn path=/head/; revision=459218
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There are two cases:
- The upstream versionning is compatible with our versionning, or using
DISTVERSION's magic leads to a compatible PORTVERSION, use
DISTVERSION. If it is possible to use DISTVERSIONPREFIX and
DISTVERSIONSUFFIX to make it compatible, use them.
- The upstream versionning is not compatible with our versionning, and
DISTVERSION's magic does not lead to a correct PORTVERSION, then set
PORTVERSION to the equivalent of our versionning, and set DISTNAME.
It is possible to use a third variable where you store upstream's
version and use it to compute PORTVERSION and/or DISTNAME, like the
dns/bind9* ports do.
Sponsored by: Absolight
Notes:
svn path=/head/; revision=438272
|
|
|
|
|
|
|
| |
Sponsored by: Absolight
Notes:
svn path=/head/; revision=436247
|
|
|
|
|
|
|
|
|
|
|
| |
QT_PREFIX was a remnant of a bygone time.
Reviewed by: rakuco
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8825
Notes:
svn path=/head/; revision=428889
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The fwbuilder makefile specifies devel/rcs as a run dependency for
FreeBSD 10 and later, but the specification is ignored on a stock
FreeBSD 10.3 installed from an ISO. At some point rcs was removed
before FreeBSD-10 release, but it seems to have been put back and
controlled with a build knob, so it may or may not be present on
FreeBSD 10 or later.
Change the test from checking OSVERSION to checking for the existence
of /usr/bin/rcs. It's a better chek and it fixes a potential dependency
mismatch issue between the port and the built package.
While here, change RUN_DEPENDS= to RUN_DEPENDS+= to avoid a potential
overwrite of existing values.
Approved by: infrastructure blanket (redundant deps work)
Notes:
svn path=/head/; revision=419652
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=415500
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412349
|
|
|
|
|
|
|
|
|
| |
config.sub and config.guess
Reported by: antoine
Notes:
svn path=/head/; revision=384364
|
|
|
|
|
|
|
| |
Reported by: antoine
Notes:
svn path=/head/; revision=384321
|
|
|
|
| |
Notes:
svn path=/head/; revision=384225
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).
Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.
Differential Revision: https://reviews.freebsd.org/D2209
Notes:
svn path=/head/; revision=383107
|
|
|
|
| |
Notes:
svn path=/head/; revision=372514
|
|
|
|
| |
Notes:
svn path=/head/; revision=363328
|
|
|
|
| |
Notes:
svn path=/head/; revision=360671
|
|
|
|
| |
Notes:
svn path=/head/; revision=356012
|
|
|
|
| |
Notes:
svn path=/head/; revision=355762
|
|
|
|
|
|
|
| |
Approved by: portmgr
Notes:
svn path=/head/; revision=355321
|
|
|
|
|
|
|
|
|
| |
the mtree (categories starting with [st])
Approved by: portmgr (bdrewery)
Notes:
svn path=/head/; revision=331274
|
|
|
|
| |
Notes:
svn path=/head/; revision=329561
|
|
|
|
|
|
|
|
|
| |
which is compatible with the soon to be removed rcs (5.7) in base/ and make
security/fwbuilder (which will not work with any rcs newer than 5.7)
depend on it.
Notes:
svn path=/head/; revision=329531
|
|
|
|
|
|
|
| |
security)
Notes:
svn path=/head/; revision=327769
|
|
|
|
|
|
|
|
|
| |
to check in udates to its .fwb files (they are saved but not checked into its
RCS database). This patch prefers rcs in base (/usr/bin/rcs) over GNU rcs
(/usr/local/bin/rcs).
Notes:
svn path=/head/; revision=326938
|
|
|
|
|
|
|
| |
Review by: bapt, David Naylor (kde team)
Notes:
svn path=/head/; revision=298557
|
|
|
|
| |
Notes:
svn path=/head/; revision=297915
|
|
|
|
| |
Notes:
svn path=/head/; revision=295429
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=288297
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=286033
|
|
|
|
|
|
|
|
|
|
|
| |
Add version 4 to conflicts.
Adjust version 5 nightly builds URL for devel version of this Makefile.
Feature safe: yes
Notes:
svn path=/head/; revision=285822
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=285789
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav
Notes:
svn path=/head/; revision=282282
|
|
|
|
| |
Notes:
svn path=/head/; revision=281645
|
|
|
|
| |
Notes:
svn path=/head/; revision=278482
|
|
|
|
|
|
|
| |
Notified by: Vadim Kurland <vadim@netcitadel.com> (Fwbuilder upline)
Notes:
svn path=/head/; revision=273987
|
|
|
|
|
|
|
| |
Notified by: Vadim Kurland <vadim@netcitadel.com> (Fwbuilder upline)
Notes:
svn path=/head/; revision=273929
|
|
|
|
|
|
|
|
|
|
| |
to ulimit. Rremoval of debugging information reduces the size of a static
library file by 80%.
Discovered by: pointyhat on amd64 8
Notes:
svn path=/head/; revision=273876
|
|
|
|
|
|
|
| |
Libfwbuilder has been merged into fwbuilder.
Notes:
svn path=/head/; revision=273526
|
|
|
|
| |
Notes:
svn path=/head/; revision=268806
|
|
|
|
| |
Notes:
svn path=/head/; revision=265663
|
|
|
|
| |
Notes:
svn path=/head/; revision=263089
|
|
|
|
| |
Notes:
svn path=/head/; revision=262776
|
|
|
|
| |
Notes:
svn path=/head/; revision=262460
|