Re: aarch64 bulk build report

2019-11-15 Thread Jan Beich
phess...@openbsd.org writes: > bulk build on arm64.ports.openbsd.org > started on Wed Nov 13 00:40:30 MST 2019 > finished at Thu Nov 14 21:08:18 MST 2019 > lasted 1D20h27m > done with kern.version=OpenBSD 6.6-current (GENERIC.MP) #323: Tue Nov 12 > 22:50:47 MST 2019 > > built packages:10194 > No

Re: [-CURRENT] Microphone does not work in firefox anymore

2020-05-21 Thread Jan Beich
a...@abiscuola.com writes: > Hi all. > > I installed the latest snapshot and, suddenly, the microphone > stopped working in firefox. Does it happen since nss 3.52 update? If so ask landry@ to apply https://hg.mozilla.org/mozilla-central/rev/463069687b3d See https://bugzilla.mozilla.org/show_bug.

Re: NEW: x11/picom

2020-05-28 Thread Jan Beich
Omar Polo writes: > - the patch-src_meson_build is an hack to avoid a meson error I > cannot > understand Upstreaming as https://github.com/yshui/picom/pull/422

Re: Determinism in generated sourcehut tarballs

2020-07-02 Thread Jan Beich
"Drew DeVault" writes: > Hiya ports, just writing to let you know that tarballs generated by > git.sr.ht and hg.sr.ht are deterministic. We defer to git to generate > tars, and busybox to gzip them; git has tests enforcing determinism, and > we patched busybox to be deterministic as well. Wouldn

Re: print/poppler: use boost (also fixes possible build breakage)

2019-09-14 Thread Jan Beich
Matthias Kilian writes: > -BUILD_DEPENDS+= devel/gobject-introspection > +# devel/boost only as build dependency, because poppler uses > +# header-only classes (from boost/containers/small_vector.hpp). > +BUILD_DEPENDS+= devel/boost \ > + devel/gobject-introspection Don't you need to

Re: devel/git: cpu and memory tracking, LIB_DEPENDS

2019-11-05 Thread Jan Beich
Jeremie Courreges-Anglas writes: > ++#elif defined(HAVE_BSD_SYSCTL) && (defined(HW_MEMSIZE) || > defined(HW_PHYSMEM64)) > + int64_t physical_memory; HW_MEMSIZE and HW_PHYSMEM64 return uint64_t, not int64_t. > ++#elif defined(HAVE_BSD_SYSCTL) && defined(HW_PHYSMEM)) > ++int physical_mem

Re: devel/git: cpu and memory tracking, LIB_DEPENDS

2019-11-05 Thread Jan Beich
Kurt Miller writes: > On Tue, 2019-11-05 at 09:17 +0100, Jan Beich wrote: > >> Jeremie Courreges-Anglas writes: >> >> > >> > ++#elif defined(HAVE_BSD_SYSCTL) && (defined(HW_MEMSIZE) || >> > defined(HW_PHYSMEM64)) >> > +  int64_t p

Re: devel/git: cpu and memory tracking, LIB_DEPENDS

2019-11-05 Thread Jan Beich
Kurt Miller writes: > On Tue, 2019-11-05 at 14:44 +0100, Jan Beich wrote: > >> Kurt Miller writes: >> >> > >> > On Tue, 2019-11-05 at 09:17 +0100, Jan Beich wrote: >> > >> > > >> > > Jeremie Courreges-Anglas writes:

Re: www/mozilla-firefox: doesn't try to use SSE2 on i386

2017-11-28 Thread Jan Beich
Sebastien Marie writes: > Hi, > > The following diff makes i386 to be compiled without --enable-rust-simd. > simd is "Single instruction, multiple data" (aka MMX, SSE, SSE2...). [...] > +# bug 1261841 > +.if ${MACHINE_ARCH} == "amd64" > +CONFIGURE_ARGS += --enable-rust-simd > .endif Despit

Re: on clang-archs: watch out for '-e xport-dynamic' warnings

2017-12-25 Thread Jan Beich
Jeremie Courreges-Anglas writes: > +--- src/Makefile.am.orig > src/Makefile.am > +@@ -24,5 +24,6 @@ AM_CPPFLAGS = @PACKAGE_CFLAGS@ \ > + -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ > + -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" > + > +-AM_CFLAGS = -export-dynamic -Wall > +

Re: UPDATE: renpy 7.4.9

2022-04-18 Thread Jan Beich
Omar Polo writes: > Brad Smith wrote: >> On Fri, Feb 25, 2022 at 02:50:01PM -0500, Brad Smith wrote: >> > Here is an attempt at an update to renpy 7.4.9. >> > >> > Looking for any testing and feedback. >> >> I noticed there was a slightly newer version available with 7.4.11. > > builds fine bu

Re: graphics/libavif hidden dep?

2023-07-16 Thread Jan Beich
Antoine Jacoutot writes: > -- Checking for module 'libyuv' > -- > -- Could NOT find libyuv (missing: LIBYUV_LIBRARY LIBYUV_LIBRARIES > LIBYUV_INCLUDE_DIR) (found version "") > -- libavif: libyuv not found; libyuv-based fast paths disabled. > -- Checking for module 'libsharpyuv' > -- Found libs

Re: UPDATE: emulators/ppsspp

2018-06-08 Thread Jan Beich
> Here's an update to ppsspp-1.6.2. Do you plan to add libretro flavor a la mgba/nestopia? https://github.com/hrydgard/ppsspp/pull/10780 > LIB_DEPENDS =archivers/snappy \ > - archivers/libzip \ Have you tried the following? CONFIGURE_ARGS += -DUSE_SYSTEM_

Re: UPDATE: emulators/ppsspp

2018-06-13 Thread Jan Beich
"Anthony J. Bentley" writes: > GH_ACCOUNT = hrydgard > GH_PROJECT = ppsspp > -GH_TAGNAME = v1.5.4 > +GH_TAGNAME = v1.6.2 v1.6.3 was released some time ago, a day after you've started the thread. Is there a reason OpenBSD port cannot update to it? https://github.com/hrydgard/ppsspp/releases.at

Re: NEW: emulation/ppsspp-1.3

2017-06-21 Thread Jan Beich
Jakub Skrzypnik writes: > Build system is pretty messy, I wasted few hours for non-defining > BSD_VISIBLE definition (added it to C{,XX}FLAGS finally), Have you tried to remove -D_XOPEN_SOURCE* lines in CMakeLists.txt? Each BSD seems to have slightly different way to hide namespace pollution to

Re: NEW: emulation/ppsspp-1.3

2017-06-21 Thread Jan Beich
Jakub Skrzypnik writes: > USE_WXNEEDED = Yes JIT supports W^X, see https://github.com/hrydgard/ppsspp/issues/8943 Maybe try the following instead --- Common/MemoryUtil.cpp~ +++ Common/MemoryUtil.cpp @@ -281,7 +281,7 @@ void FreeAlignedMemory(void* ptr) { bool PlatformIsWXExclusive() {

Re: clang FFmpeg segfaults on i386 [st...@openbsd.org: CVS: cvs.openbsd.org: ports]

2017-09-06 Thread Jan Beich
Stuart Henderson writes: [...] > So this works around the recently-reported hangs seen on amd64 but we > still have a segfault issue on i386 (I've only seen this so far when > decoding H264, though given the function other things may use it too). Probably same as https://bugs.freebsd.org/bugzill

Re: [NEW] alsa-lib-1.2.11

2024-02-20 Thread Jan Beich
SASANO Takayoshi writes: > And, alsa-lib/alsa-utils(aplay)/alsa-plugin(Pulse) combination is working > on OpenBSD-7.4/amd64. Did you also test without pulseaudio e.g., via sndio plugin? https://github.com/Duncaen/alsa-sndio https://repology.org/project/alsa-sndio/versions

Re: UPDATE: aom 3.8.1

2024-02-28 Thread Jan Beich
Brad Smith writes: > GH_ACCOUNT= jbeich > GH_PROJECT= aom > -GH_TAGNAME= v3.6.1 > +GH_TAGNAME= v3.8.1 If you don't use snapshots or RCs better migrate off my GitHub mirror. According to Repology the download link would be https://storage.googleapis.com/aom-releases/libaom-3.8.1.tar.gz

Re: UPDATE: aom 3.8.1

2024-03-03 Thread Jan Beich
Stuart Henderson writes: > On 2024/03/03 16:26, Peter Hessler wrote: >> --- aom_configure: Detected CPU: arm64 >> -- The ASM compiler identification is unknown >> -- Found assembler: as >> CMake Error at build/cmake/aom_configure.cmake:212 (enable_language): >> The CMAKE_ASM_COMPILER: >> >>