Re: NEW: security/qca-qt5

2017-07-13 Thread Vadim Zhukov
Sounds good. 13 июл. 2017 г. 11:13 ПП пользователь "Rafael Sadowski" < raf...@sizeofvoid.org> написал: > > > On Thu Jul 13, 2017 at 06:31:17PM +0300, Vadim Zhukov wrote: > > 2017-07-12 21:35 GMT+03:00 Rafael Sadowski : > > > Hi All. > > > > > > please find attached a new port security/qca-qt5 (QC

Re: cyrus-imapd build failure on sparc64

2017-07-13 Thread Jeremie Courreges-Anglas
Jeremie Courreges-Anglas writes: [...] > I plan to test this on sparc64 when cvs up completes... ok? With the diff, the build succeeds on sparc64. > Index: patches/patch-lib_crc32_c > === > RCS file: patches/patch-lib_crc32_c > d

UPDATE: games/openrct2 0.0.7 => 0.1.0

2017-07-13 Thread Brian Callahan
Hi ports -- Attached is a diff to update openrct2 to its latest version. Changelog is here: https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.1.0 Works well on my machine. OK? ~Brian Index: Makefile === RCS file: /cvs/ports/ga

Re: NEW: security/qca-qt5

2017-07-13 Thread Rafael Sadowski
On Thu Jul 13, 2017 at 06:31:17PM +0300, Vadim Zhukov wrote: > 2017-07-12 21:35 GMT+03:00 Rafael Sadowski : > > Hi All. > > > > please find attached a new port security/qca-qt5 (QCA for Qt5). This is > > separate port for Qt5 because it's too different from Qt4 case. Initial > > work from zhuk@ o

Re: NEW: security/qca-qt5

2017-07-13 Thread Vadim Zhukov
2017-07-12 21:35 GMT+03:00 Rafael Sadowski : > Hi All. > > please find attached a new port security/qca-qt5 (QCA for Qt5). This is > separate port for Qt5 because it's too different from Qt4 case. Initial > work from zhuk@ on openbsd-wip in 2016. This port is not very different > from current secur

Re: C++ library new plans

2017-07-13 Thread Marc Espie
On Thu, Jul 13, 2017 at 04:56:19PM +0300, Paul Irofti wrote: > On 13.07.2017 13:45, Marc Espie wrote: > >So, vlc gets too complicated. > > Would this fix the octave update defect where libstdc++ and libestdc++ would > get mixed up? > > http://marc.info/?l=openbsd-ports&m=148223004012762&w=2 No,

Re: C++ library new plans

2017-07-13 Thread Stuart Henderson
On 2017/07/13 16:56, Paul Irofti wrote: > On 13.07.2017 13:45, Marc Espie wrote: > > So, vlc gets too complicated. > > Would this fix the octave update defect where libstdc++ and libestdc++ would > get mixed up? > > http://marc.info/?l=openbsd-ports&m=148223004012762&w=2 > No, it doesn't affect

Re: UPDATE www/apache-httpd

2017-07-13 Thread Stuart Henderson
On 2017/06/24 16:29, David CARLIER wrote: > Oops I forgot the patch. > > On 24 June 2017 at 16:21, Stuart Henderson wrote: > > > On 2017/06/24 15:54, David CARLIER wrote: > > > Hi, > > > > > > Here a diff for apache-httpd to address these CVE > > > CVE-2017-3167

Re: C++ library new plans

2017-07-13 Thread Paul Irofti
On 13.07.2017 13:45, Marc Espie wrote: So, vlc gets too complicated. Would this fix the octave update defect where libstdc++ and libestdc++ would get mixed up? http://marc.info/?l=openbsd-ports&m=148223004012762&w=2

Re: C++ library new plans

2017-07-13 Thread Stuart Henderson
On 2017/07/13 12:45, Marc Espie wrote: > So, vlc gets too complicated. > > The LIBCXX / LIBECXX thingy predates new COMPILER choice. > > Now that it's there, after some thinking it's possible to do > things in a simpler way. > > The following patch creates a variable that's correctly set for the

C++ library new plans

2017-07-13 Thread Marc Espie
So, vlc gets too complicated. The LIBCXX / LIBECXX thingy predates new COMPILER choice. Now that it's there, after some thinking it's possible to do things in a simpler way. The following patch creates a variable that's correctly set for the current compiler in every case, unsurprisingly named

cyrus-imapd build failure on sparc64

2017-07-13 Thread Jeremie Courreges-Anglas
Hi, In 3.0.1, this endianness test was broken: --8<-- #ifndef LITTLE_ENDIAN /* swap endianness */ static uint32_t swap(uint32_t x) { #if defined(__GNUC__) || defined(__clang__) return __builtin_bswap32(x); #else return (x >> 24) | ((x >> 8) & 0xFF00) | ((x <<