Re: [blind-gamers] manamon2 solfier cave?

2024-03-25 Thread mattias
fighting > 25 mars 2024 kl. 21:37 skrev Chris Shook via groups.io > : > > A Manya? Which Manamon is that? > > On Monday, March 25, 2024 at 03:50:12 PM EDT, mattias <mailto:mjonsson1...@gmail.com>> wrote: > > > I found a manya in that cave > But i to

[blind-gamers] manamon2 solfier cave?

2024-03-25 Thread mattias
I found a manya in that caveBut i totaly forgot where that Cave was locatedCan anyone remind me? Skickades från E-post för Windows  _._,_._,_ Groups.io Links: You receive all messages sent to this group. View/Reply Online (#127236) | Reply To Group | Mute This

Re: [fpc-devel] Failing Lazarus Codetools Pas2JS-related tests - again

2024-03-19 Thread Mattias Gaertner via fpc-devel
ppu files of fpc 3.3.1 and 3.2.2 tough, but not with the sources ... Mattias ___ fpc-devel maillist - fpc-devel@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel

Re: [fpc-devel] Failing Lazarus Codetools Pas2JS-related tests - again

2024-03-19 Thread Mattias Gaertner via fpc-devel
On 18.03.24 20:29, Michael Van Canneyt via fpc-devel wrote: [...] #7 1429.0 -Fu$CfgDir/../lib/fpc/3.3.1/pas2js/*/*/namespaced || #7 1429.0 -Fi$CfgDir/../lib/fpc/3.3.1/pas2js/*/*/src This seems wrong to me, but Mattias will need to look at this. I changed the fpmake.pp. Please test

Re: [fpc-devel] Failing Lazarus Codetools Pas2JS-related tests - again

2024-03-18 Thread Mattias Gaertner via fpc-devel
This should be enough -Fu$CfgDir/../lib/fpc/3.3.1/pas2js/packages/*/src [...] Can you compile a simple Helloworld? begin writeln('Hi'); end. ? If this works, you might try removing the components/codetools/tests/codetools.config, so codetools rebuild the cache. Mattias

Re: [dev] [ubase] compile using musl

2024-03-15 Thread Mattias Andrée
On Fri, 15 Mar 2024 16:22:19 -0300 Brian Mayer wrote: > Hi, I'm Brian, I'm trying to compile ubase using musl as libc on > buildroot. I use a Pinebook Pro, so aarch64 is my arch. > > By just running make I get this error: > >

Re: [dev] [sbase] Defining scope of sbase and ubase

2024-03-09 Thread Mattias Andrée
d true and false are defined only as shell built-in in POSIX), but they are defined in LSB which a propular, but it's a Linux specific standard. Most of POSIX but not all of POSIX is also defined by LSB. > Mattias said, pure POSIX is quite cumbersome, and not very descriptive > as of what you

Re: [dev] [sbase] Defining scope of sbase and ubase

2024-03-09 Thread Mattias Andrée
On Sat, 9 Mar 2024 14:53:07 +0100 Страхиња Радић wrote: > On 24/03/09 12:59AM, Mattias Andrée wrote: > > I agree, a single repo (or alternatively making libutil it's own repo) is > > necessary if we want one binary, and I think we do. > > Compiling all programs into on

Re: [dev] [sbase] Defining scope of sbase and ubase

2024-03-09 Thread Mattias Andrée
On Sat, 09 Mar 2024 12:10:28 +0100 Eolien55 wrote: > Mattias Andrée wrote: > > I think there should be one directory called "portable" containing only > > tools > > from sbase, and one directory called "linux" containing the tools from ubase

Re: [dev] [sbase] Defining scope of sbase and ubase

2024-03-08 Thread Mattias Andrée
ot sure this is preferable over a single Makefile in the root directory. As mentioned in an other branch of this conversation, I think we should have a base with only the POSIX tools but than have additional optional tools, which could be group into overlapping categories, as you can select what you want on your system. Best regards, Mattias Andrée

Re: [dev] [sbase] Defining scope of sbase and ubase

2024-03-08 Thread Mattias Andrée
setting BIN when running make(1) or by saying "yes" or "no" to each category (of course each category would have a default option), e.g. POSIX=yes INTERACTIVE=no. Best regards, Mattias Andrée On Fri, 08 Mar 2024 11:36:27 +0100 Elie Le Vaillant wrote: > Hi, > > I th

[PATCH v8 1/5] softmmu: Per-AddressSpace bounce buffering

2024-03-04 Thread Mattias Nissler
configured per AddressSpace. Reviewed-by: Peter Xu Tested-by: Jonathan Cameron Signed-off-by: Mattias Nissler --- include/exec/cpu-common.h | 2 - include/exec/memory.h | 45 - system/dma-helpers.c | 4 +- system/memory.c | 7 +++ system/physmem.c

[PATCH v8 2/5] softmmu: Support concurrent bounce buffers

2024-03-04 Thread Mattias Nissler
-by: Peter Xu Tested-by: Jonathan Cameron Signed-off-by: Mattias Nissler --- hw/pci/pci.c| 8 include/exec/memory.h | 14 +++ include/hw/pci/pci_device.h | 3 ++ system/memory.c | 5 ++- system/physmem.c| 80

[PATCH v8 4/5] vfio-user: Message-based DMA support

2024-03-04 Thread Mattias Nissler
-by: Jagannathan Raman Signed-off-by: Mattias Nissler --- hw/remote/trace-events| 2 + hw/remote/vfio-user-obj.c | 100 -- 2 files changed, 87 insertions(+), 15 deletions(-) diff --git a/hw/remote/trace-events b/hw/remote/trace-events index 0d1b7d56a5..358a68fb34

[PATCH v8 3/5] Update subprojects/libvfio-user

2024-03-04 Thread Mattias Nissler
ocket pair" Adds support for separate sockets for either command direction, addressing a bug where libvfio-user gets confused if both client and server send commands concurrently. Reviewed-by: Jagannathan Raman Signed-off-by: Mattias Nissler --- subprojects/libvfio-user.wrap | 2 +- 1 fi

[PATCH v8 5/5] vfio-user: Fix config space access byte order

2024-03-04 Thread Mattias Nissler
-by: Mattias Nissler --- hw/remote/vfio-user-obj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/remote/vfio-user-obj.c b/hw/remote/vfio-user-obj.c index a15e291c9a..0e93d7a7b4 100644 --- a/hw/remote/vfio-user-obj.c +++ b/hw/remote/vfio-user-obj.c @@ -281,7 +281,7

[PATCH v8 0/5] Support message-based DMA in vfio-user server

2024-03-04 Thread Mattias Nissler
conflict in system/dma-helpers.c Changes from v7: * Rebase (applied cleanly) * Restore various Reviewed-by and Tested-by tags that I failed to carry forward (I double-checked that the patches haven't changed since the reviewed version) Mattias Nissler (5): softmmu: Per-AddressSpace bounce

Re: tdsr

2024-03-03 Thread mattias jonsson
yes i run a m1 macbook with mac os sonoma > 3 mars 2024 kl. 11:30 skrev mattias jonsson : > > have anyone get tdsr working this days? > i follow all instructions but allways fail with the python module foundation -- The following information is important for all members of the Mac

tdsr

2024-03-03 Thread mattias jonsson
have anyone get tdsr working this days? i follow all instructions but allways fail with the python module foundation -- The following information is important for all members of the Mac Visionaries list. If you have any questions or concerns about the running of this list, or if you feel that

Re: [fpc-pascal] fpc-pascal Digest, Vol 236, Issue 35

2024-03-01 Thread Mattias Gaertner via fpc-pascal
On 29.02.24 19:21, Jos Wegman via fpc-pascal wrote: The packages for the Lazarus mac OS x86-64 Lazarus 3.2 on sourceforge are not correct. There is no compiler package. Instead there are two fpc src packages. Just a heads-up. Thanks for the hint. I uploaded the package. Mattias Op do

Re: [PATCH, v2] physmem: avoid bounce buffer too small

2024-02-29 Thread Mattias Nissler
On Thu, Feb 29, 2024 at 1:35 PM Peter Maydell wrote: > > On Thu, 29 Feb 2024 at 11:17, Heinrich Schuchardt > wrote: > > > But yes, I'm not surprised that CXL runs into this. Heinrich, > > > are you doing CXL testing, or is this some other workload? > > > > I am running the UEFI

Re: [PATCH, v2] physmem: avoid bounce buffer too small

2024-02-29 Thread Mattias Nissler
On Thu, Feb 29, 2024 at 12:12 PM Peter Maydell wrote: > > On Thu, 29 Feb 2024 at 10:59, Jonathan Cameron > wrote: > > > > On Thu, 29 Feb 2024 09:38:29 + > > Peter Maydell wrote: > > > > > On Wed, 28 Feb 2024 at 19:07, Heinrich Schuchardt > > > wrote: > > > > > > > > On 28.02.24 19:39,

Re: [PATCH v7 0/5] Support message-based DMA in vfio-user server

2024-02-29 Thread Mattias Nissler
up if you disagree. Thanks, Mattias On Tue, Feb 20, 2024 at 6:06 AM Peter Xu wrote: > > On Mon, Feb 12, 2024 at 12:06:12AM -0800, Mattias Nissler wrote: > > Changes from v6: > > > > * Rebase, resolve straightforward merge conflict in system/dma-helpers.c > >

Re: [PATCH, v2] physmem: avoid bounce buffer too small

2024-02-29 Thread Mattias Nissler
On Thu, Feb 29, 2024 at 11:22 AM Heinrich Schuchardt wrote: > > On 29.02.24 02:11, Peter Xu wrote: > > On Wed, Feb 28, 2024 at 08:07:47PM +0100, Heinrich Schuchardt wrote: > >> On 28.02.24 19:39, Peter Maydell wrote: > >>> On Wed, 28 Feb 2024 at 18:28, Heinrich Schuchardt > >>> wrote: > >

[fpc-pascal] Lazarus Bugfix Release 3.2

2024-02-28 Thread Mattias Gaertner via fpc-pascal
bon (32bit) 10.5 to 10.14, Qt and Qt5 (32 or 64bit), Qt6 (64bit only). Note: Since Macos Sonoma 14 debugging takes some time to start the application, especially on first start. Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal

[fpc-other] Lazarus Bugfix Release 3.2

2024-02-28 Thread Mattias Gaertner via fpc-other
bon (32bit) 10.5 to 10.14, Qt and Qt5 (32 or 64bit), Qt6 (64bit only). Note: Since Macos Sonoma 14 debugging takes some time to start the application, especially on first start. Mattias ___ fpc-other maillist - fpc-other@lists.freepascal

[Lazarus] Lazarus Bugfix Release 3.2

2024-02-28 Thread Mattias Gaertner via lazarus
bon (32bit) 10.5 to 10.14, Qt and Qt5 (32 or 64bit), Qt6 (64bit only). Note: Since Macos Sonoma 14 debugging takes some time to start the application, especially on first start. Mattias -- ___ lazarus mailing list lazarus@lists.lazarus-ide

[blind-gamers] manamon 2

2024-02-28 Thread mattias
Near the modernt iland (Spelling)You can dive down if you have a lucishWhats the Point there?Or are it a postgame  Skickades från E-post för Windows  _._,_._,_ Groups.io Links: You receive all messages sent to this group. View/Reply Online (#127213) | Reply To Group

[Kernel-packages] [Bug 2044657] Re: Multiple data corruption issues in zfs

2024-02-22 Thread Mattias Heimlich
I don't get it. The latest ZFS version in Jammy seem to be 2.1.5 and not 2.1.14 nor 2.2.2. When will the committed version with the fix be available to the general public? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to zfs-linux in

Re: [blink-dev] Intent to Prototype and Ship: Streams API: ReadableStream async iteration

2024-02-21 Thread Mattias Buelens
e: Screenshot 2024-02-21 9.08.57 AM.png] > > > On Wed, Feb 21, 2024 at 8:03 AM Yoav Weiss (@Shopify) < > yoav...@chromium.org> wrote: > >> LGTM1 >> >> Thanks for catching us up here!! >> >> On Wed, Feb 21, 2024 at 4:57 PM Mattias Buelens >>

[blink-dev] Intent to Prototype and Ship: Streams API: ReadableStream async iteration

2024-02-21 Thread Mattias Buelens
Contact emails mattias.buel...@gmail.com Explainer https://github.com/whatwg/streams/blob/main/readable-stream-async-iteration-explainer.md Specification https://streams.spec.whatwg.org/#rs-asynciterator Summary The streams APIs provide ubiquitous, interoperable primitives for creating,

Re: VMware Fusion/Player

2024-02-20 Thread mattias jonsson
i wonder if narrator are removed from newer windows arm builds setup > 19 feb. 2024 kl. 21:17 skrev 'Janina Sajka' via MacVisionaries > : > > There's an available license that's free of charge. It's available to > students and to other categories they name. I have had one based on my > W3C

Re: Crash with CXL + TCG on 8.2: Was Re: qemu cxl memory expander shows numa_node -1

2024-02-18 Thread Mattias Nissler
pushing that out) > > Main set of fixes (x86 'works' under my light testing after this one) > > https://lore.kernel.org/qemu-devel/20240215150133.2088-1-jonathan.came...@huawei.com/ > > ARM FEAT_HADFS (access and dirty it updating in PTW) workaround for > missing atomic CAS > >

attapoll

2024-02-17 Thread mattias jonsson
have anyone tryed attapoll with vo? the app itself works but how to accept the agreement? -- The following information is important for all members of the Mac Visionaries list. If you have any questions or concerns about the running of this list, or if you feel that a member's post is

[FFmpeg-cvslog] avcodec/h2645_parse: Don't treat 0x000002 as a start code and truncate

2024-02-17 Thread Mattias Wadman
ffmpeg | branch: master | Mattias Wadman | Tue Feb 13 11:17:46 2024 +0100| [78812cd147fa2ab1f0aa3019886c0abe00b7c63a] | committer: Anton Khirnov avcodec/h2645_parse: Don't treat 0x02 as a start code and truncate According to ITU-T H.265 7.4.2.1 this byte sequence should not appear

[FFmpeg-devel] [PATCH v2] avcodec/h2645_parse: Don't treat 0x000002 as a start code and truncate

2024-02-13 Thread Mattias Wadman
According to ITU-T H.265 7.4.2.1 this byte sequence should not appear in a NAL unit but in practice in rare cases it seems it does, possibly due to buggy encoders. Other players like VLC and Quicktime seem to be fine with it. Currently when this sequence is found it is treated as if the next

[FFmpeg-devel] [PATCH v1] avcodec/h2645_parse: Don't treat 0x000002 as a start code and truncate

2024-02-12 Thread Mattias Wadman
According to ITU-T H.265 7.4.2.1 this byte sequence should not appear in a NAL unit but in practice in rare cases it seems it does, possibly due to buggy encoders. Other players like VLC and Quicktime seem to be fine with it. Currently when this sequence is found it is treated as if the next

Bug#1063457: nordugrid-arc and arcstat

2024-02-12 Thread Mattias Ellert
arcresume arcsync arcclean arcls arcrename arcrm arctest arccp arched arcmkdir arcrenew arcstat arcctl arcinfoarcplugin arcresub arcsub Mattias Ellert signature.asc Description: This is a digitally signed message part

Bug#1063457: nordugrid-arc and arcstat

2024-02-12 Thread Mattias Ellert
arcresume arcsync arcclean arcls arcrename arcrm arctest arccp arched arcmkdir arcrenew arcstat arcctl arcinfoarcplugin arcresub arcsub Mattias Ellert signature.asc Description: This is a digitally signed message part

[PATCH v7 5/5] vfio-user: Fix config space access byte order

2024-02-12 Thread Mattias Nissler
PCI config space is little-endian, so on a big-endian host we need to perform byte swaps for values as they are passed to and received from the generic PCI config space access machinery. Signed-off-by: Mattias Nissler --- hw/remote/vfio-user-obj.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH v7 3/5] Update subprojects/libvfio-user

2024-02-12 Thread Mattias Nissler
ocket pair" Adds support for separate sockets for either command direction, addressing a bug where libvfio-user gets confused if both client and server send commands concurrently. Signed-off-by: Mattias Nissler --- subprojects/libvfio-user.wrap | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH v6 0/5] Support message-based DMA in vfio-user server

2024-02-12 Thread Mattias Nissler
to master due to a minor merge conflict. I've just sent a rebased version to address that. Stefan, are you OK to pick this up for merging at your next convenience? Thanks, Mattias On Fri, Feb 9, 2024 at 6:39 PM Jonathan Cameron wrote: > On Wed, 1 Nov 2023 06:16:06 -0700 > Mattias N

[PATCH v7 1/5] softmmu: Per-AddressSpace bounce buffering

2024-02-12 Thread Mattias Nissler
configured per AddressSpace. Signed-off-by: Mattias Nissler --- include/exec/cpu-common.h | 2 - include/exec/memory.h | 45 - system/dma-helpers.c | 4 +- system/memory.c | 7 +++ system/physmem.c | 101 -- 5

[PATCH v7 2/5] softmmu: Support concurrent bounce buffers

2024-02-12 Thread Mattias Nissler
-off-by: Mattias Nissler --- hw/pci/pci.c| 8 include/exec/memory.h | 14 +++ include/hw/pci/pci_device.h | 3 ++ system/memory.c | 5 ++- system/physmem.c| 80 + 5 files changed, 74 insertions(+), 36

[PATCH v7 4/5] vfio-user: Message-based DMA support

2024-02-12 Thread Mattias Nissler
-by: Mattias Nissler --- hw/remote/trace-events| 2 + hw/remote/vfio-user-obj.c | 100 -- 2 files changed, 87 insertions(+), 15 deletions(-) diff --git a/hw/remote/trace-events b/hw/remote/trace-events index 0d1b7d56a5..358a68fb34 100644 --- a/hw/remote/trace

[PATCH v7 0/5] Support message-based DMA in vfio-user server

2024-02-12 Thread Mattias Nissler
conflict in system/dma-helpers.c Mattias Nissler (5): softmmu: Per-AddressSpace bounce buffering softmmu: Support concurrent bounce buffers Update subprojects/libvfio-user vfio-user: Message-based DMA support vfio-user: Fix config space access byte order hw/pci/pci.c |

Bug#1062167: globus-rsl: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 14:32:37 +0100 Source: globus-rsl Architecture: source Version: 11.4-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1063156: myproxy: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 14:44:42 +0100 Source: myproxy Architecture: source Version: 6.2.16-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062157: globus-gsi-credential: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 14:19:40 +0100 Source: globus-gsi-credential Architecture: source Version: 8.4-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062156: globus-gsi-cert-utils: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 14:04:34 +0100 Source: globus-gsi-cert-utils Architecture: source Version: 10.11-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062160: globus-gsi-sysconfig: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 15:12:34 +0100 Source: globus-gsi-sysconfig Architecture: source Version: 9.6-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062153: globus-gridftp-server: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 13:48:21 +0100 Source: globus-gridftp-server Architecture: source Version: 13.25-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062145: globus-gass-copy: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 12:34:54 +0100 Source: globus-gass-copy Architecture: source Version: 10.13-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1062141: globus-common: NMU diff for 64-bit time_t transition

2024-02-09 Thread Mattias Ellert
Package updated in unstable: Date: Fri, 09 Feb 2024 11:13:35 +0100 Source: globus-common Architecture: source Version: 18.14-1 Distribution: unstable signature.asc Description: This is a digitally signed message part

Bug#1063298: xrootd: NMU diff for 64-bit time_t transition

2024-02-08 Thread Mattias Ellert
The package was updated in unstable xrootd 5.6.7-1 If/when you update the package in experimental for the transition, please include the missing change in debian/rules mentioned in a previous comment to this bug. signature.asc Description: This is a digitally signed message part

Bug#1063204: nordugrid-arc: NMU diff for 64-bit time_t transition

2024-02-08 Thread Mattias Ellert
The package was updated in unstable. nordugrid-arc 6.18.0-2 signature.asc Description: This is a digitally signed message part

Bug#1036884: Schedule

2024-02-06 Thread Mattias Ellert
with minor or normal severity (since they are simply informational at this stage) and then upgrade them to serious when the transition starts (at which point they become RC). Do you have an estimate when the uploads to unstable will start? Mattias signature.asc Description

Bug#1036884: Schedule

2024-02-06 Thread Mattias Ellert
with minor or normal severity (since they are simply informational at this stage) and then upgrade them to serious when the transition starts (at which point they become RC). Do you have an estimate when the uploads to unstable will start? Mattias signature.asc Description

Bug#1063298: xrootd: NMU diff for 64-bit time_t transition

2024-02-06 Thread Mattias Ellert
Hi! The proposed change is incomplete, and the build failed on some architectures. You need to update debian/rules due to the changes package names: Line 31 must change from N = -Nlibxrdec1 to N = -Nlibxrdec1t64 Regards, Mattias (package maintainer) signature.asc Description

Bug#1063298: xrootd: NMU diff for 64-bit time_t transition

2024-02-06 Thread Mattias Ellert
Hi! The proposed change is incomplete, and the build failed on some architectures. You need to update debian/rules due to the changes package names: Line 31 must change from N = -Nlibxrdec1 to N = -Nlibxrdec1t64 Regards, Mattias (package maintainer) signature.asc Description

Give-back request davix 0.8.5-1+b1 gnu-hurd

2024-01-29 Thread Mattias Ellert
Hi! The build of davix 0.8.5-1+b1 failed on hurd-i386 due to bug 1061610, which is a bug in debhelper 13.12. Could you retry the build with debhelper 13.13? https://buildd.debian.org/status/package.php?p=davix https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1061610 Mattias

Re: How to add images to a search ad group?

2024-01-22 Thread Mattias Nyman
Hi everyone and especially the Google Reps. Any news on this topic? Is it still not possible to add Image extensions to Search Ads using the Google Ads API? Any insight in when this will become available? tisdag 12 juli 2022 kl. 15:13:20 UTC+2 skrev Google Ads API Forum Advisor: > Hi Jan, > >

[blind-gamers] manamon 2

2024-01-20 Thread mattias
Will dragetul get the spell drago brako or What the name isI meen the spell ruben uses to kill sangoras boyfrendSkickades från E-post för Windows  _._,_._,_ Groups.io Links: You receive all messages sent to this group. View/Reply Online (#127096) | Reply To Group |

Re: [Lazarus] How to restore package anchordocking to default values

2024-01-17 Thread Mattias Gaertner via lazarus
ult Values for objectinspector, codeexplorer ... Tipps are needed ... thank you! Lazarus config directory "environmentoptions.xml" search for tag "Desktops" Close the IDE and delete the tag. Mattias -- ___ lazarus mailing list lazar

Re: [Lazarus] Issue compiling under MacOS

2024-01-07 Thread Mattias Gaertner via lazarus
t;ld: framework not found Cocoa" error. You must install XCode and do sudo xcode-select --install sudo xcodebuild -license accept Does your fpc.cfg contain -XR/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/ ? Mattias Cheers Mike On Sun, 7 Jan 2024 at 17:47, Michael Thompson wrote:

Re: [blind-gamers] idle iktah

2024-01-04 Thread mattias
tarren i solved it > 4 jan. 2024 kl. 19:21 skrev Tarren van Ettinger : > > The journal entry you get the carpentry skill from isn't actually called > carpentry; I think it's either A Nice Wide Deck or something else wood > related. > > Tarren > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links:

Re: [blind-gamers] idle iktah

2024-01-04 Thread mattias
wich skill should i level? > 4 jan. 2024 kl. 19:21 skrev Tarren van Ettinger : > > The journal entry you get the carpentry skill from isn't actually called > carpentry; I think it's either A Nice Wide Deck or something else wood > related. > > Tarren > -=-=-=-=-=-=-=-=-=-=-=- Groups.io

Re: [blind-gamers] idle iktah

2024-01-03 Thread mattias
://www.soundcloud.com/terrencevane > Mastadon: @tarrenvane@dragonscave.space <mailto:tarrenvane@dragonscave.space> > Discord: tarrenvane > Facebook: https://www.facebook.com/anguslaren > > On Wed, Jan 3, 2024, 22:20 mattias <mailto:mjonsson1...@gmail.com&g

[blind-gamers] idle iktah

2024-01-03 Thread mattias
how in the word i build houses etc? -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#127018): https://groups.io/g/blind-gamers/message/127018 Mute This Topic: https://groups.io/mt/103517216/21656 Group Owner: blind-gamers+ow...@groups.io

Re: [blind-gamers] idle iktah

2023-12-29 Thread mattias
i love the game runs fine on my m1 macbook air > 30 dec. 2023 kl. 00:38 skrev Jude DaShiell : > > Horrible luck with this game on a referb iphone 12! > I have to shake the phone to get the change crafting type to come up and > when it comes up it's on containers. > Unfortunately the items to be

Re: [blind-gamers] the gate

2023-12-28 Thread mattias
yes but a frend says he buyed the game 2014 > 28 dec. 2023 kl. 22:45 skrev Sly : > > October 2015 > All you need to know is at the link below! > HTH! Sly > https://audiogames.net/db.php?id=The+Gate > > On 12/28/23, mattias wrote: >&

[blind-gamers] the gate

2023-12-28 Thread mattias
when was the gate released -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#126948): https://groups.io/g/blind-gamers/message/126948 Mute This Topic: https://groups.io/mt/103407460/21656 Group Owner: blind-gamers+ow...@groups.io

[DFRI-listan] Registrering öppen för SamNet #2 - torsdag 18 jan 2024

2023-12-22 Thread Mattias Axell
Internetstiftelsen. Välkommen att kontakta föreningarna för att föreslå talare för framtida SamNet-konferenser! Välkommen till SamNet #2 2024! Önskar god jul och gott nytt år till alla! Mvh, Mattias :DFRI https://dfri.se/ ___ Listan mailing list

[fpc-other] Lazarus Release 3.0

2023-12-21 Thread Mattias Gaertner via fpc-other
is found I will upload a new Lazarus pkg for Macos. Mattias ___ fpc-other maillist - fpc-other@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-other

[fpc-pascal] Lazarus Release 3.0

2023-12-21 Thread Mattias Gaertner via fpc-pascal
is found I will upload a new Lazarus pkg for Macos. Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[Lazarus] Lazarus Release 3.0

2023-12-21 Thread Mattias Gaertner via lazarus
is found I will upload a new Lazarus pkg for Macos. Mattias -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [fpc-devel] Failing Lazarus Codetools Pas2JS-related tests

2023-12-20 Thread Mattias Gaertner via fpc-devel
of the package directories, to support namespaced files. Yes. I was not aware that there were tests for pas2js in the lazarus codebase, so yes, probably some tests or the underlying code in the IDE need to be adapted. utils/createconfig.pas needs to be adapted... Mattias Mattias

Bug#1058957: RM: libxrdcephposix0, xrootd-ceph-plugins [armel, armhf] -- RoM; ANAIS

2023-12-18 Thread Mattias Ellert
. The packages seem to have been removed from unstable for all relevant architectures, except armel and armhf where there still are present old packages from before this change (version 5.6.2-2). Mattias Ellert Maintainer signature.asc Description: This is a digitally signed message part

[DFRI-listan] Re: Finansieringstips

2023-12-18 Thread Mattias Axell
Hej Marcin, Tack för tips och grattis till jobb på bra och viktigt ställe! Jag ser gärna att DFRI söker projektmedel här. Idéer finns det gott om och jag ser gärna att volontärer, medlemmar och fler här på listan spelar in med idéer på projektförslag. Mvh, Mattias On 2023-12-18 11:17

[DFRI-listan] Re: pulsklocka

2023-12-18 Thread Mattias Axell
Tips: https://www.pine64.org/pinetime/ On 2023-12-17 19:30, Mikael Odhage wrote: Hej listan! Är det nån som känner till om det finns nån pulsklocka med fri källkod? ___ Listan mailing list -- listan@lists.dfri.se To unsubscribe send an email to

Re: Groovy 3.0.20 Release Date

2023-12-16 Thread Mattias Reichel
I did actually run into something when going over the Grails repos with 3.0.20-SNAPSHOT. https://issues.apache.org/jira/browse/GROOVY-11250 Den mån 11 dec. 2023 kl 22:35 skrev Mattias Reichel < mattias.reic...@gmail.com>: > Excellent! > I'll make sure to test with the snapshot ve

[jira] [Created] (GROOVY-11250) Compilation fails when accessing getter with shortcut notation on Java class

2023-12-16 Thread Mattias Reichel (Jira)
Mattias Reichel created GROOVY-11250: Summary: Compilation fails when accessing getter with shortcut notation on Java class Key: GROOVY-11250 URL: https://issues.apache.org/jira/browse/GROOVY-11250

Re: [fpc-pascal] method-definition

2023-12-15 Thread Mattias Gaertner via fpc-pascal
sense? Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: Groovy 3.0.20 Release Date

2023-12-11 Thread Mattias Reichel
ssions with the team. We'll make sure 3_0_X is included. It > would be great if you can use a 3_0_X snapshot version and ensure that > works with Grails. > > On Tue, Dec 12, 2023 at 2:00 AM Mattias Reichel > wrote: > > > > Hello groovy-users! > > I'm new on the mailing list

Groovy 3.0.20 Release Date

2023-12-11 Thread Mattias Reichel
ch release, and the resolution of this particular issue is essential to overcoming a current roadblock in our efforts. I understand the complexities involved in the release process and appreciate your hard work in maintaining the quality of the Groovy language project. Many thanks Mattias Reichel

Bug#1057785: Don't expect EINTR when sleep is interrupted on GNU/Hurd

2023-12-08 Thread Mattias Ellert
://gitlab.kitware.com/cmake/cmake/-/merge_requests/9052 Patch: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9052.patch Mattias signature.asc Description: This is a digitally signed message part

[jira] [Created] (GROOVY-11242) Stackoverflow error when calling super from overridden method

2023-12-07 Thread Mattias Reichel (Jira)
Mattias Reichel created GROOVY-11242: Summary: Stackoverflow error when calling super from overridden method Key: GROOVY-11242 URL: https://issues.apache.org/jira/browse/GROOVY-11242 Project

Re: [Lazarus] Can I rebuild Lazarus installed via apt on an RPi4B?

2023-12-07 Thread Mattias Gaertner via lazarus
ptions / Env / Files. And what about day-to-day project compiles if I want to use the new compiler? Is it as simple as changing the symlink of $HOME/bin/ppcarm to point to the new compiler? It would affect all user installs utilizing the ppcarm co

Re: [Lazarus] Can I rebuild Lazarus installed via apt on an RPi4B?

2023-12-06 Thread Mattias Gaertner via lazarus
not support this, so a "make" fails. If you want to compile lazarus with make, use a git clone of the lazarus repository. [...] Mattias -- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Attn. Mattias, adding x86 CPU detection function to DefineTemplates.pas

2023-11-23 Thread Mattias Gaertner via lazarus
to DefineTemplates.pas: function IsCPUX86(TargetCPU: string): boolean; begin   TargetCPU := GetFPCTargetCPU(TargetCPU);   Result:=(TargetCPU='i8086') or (TargetCPU='i386') or (TargetCPU='x86_64'); end; ok Mattias -- ___ lazarus mailing list lazarus

[Openvpn-users] stupid errors

2023-11-22 Thread mattias jonsson
i purchased an openvpn service but i cant connect see log 2023-11-23 02:29:34 TCP/UDP: Preserving recently used remote address: [AF_INET]176.126.84.121:9001 2023-11-23 02:29:34 Socket Buffers: R=[131072->131072] S=[131072->131072] 2023-11-23 02:29:34 Attempting to establish TCP connection with

Re: [blind-gamers] Forza Motorsport Racing Club

2023-11-08 Thread mattias
mac needs more audiogames > 9 nov. 2023 kl. 01:20 skrev Lenron : > > Lmao why would there be a mac version? This is a pc / xbox game. I > mean it does work on steam but that doesn't mean it would run on the > mac. > > On 11/8/23, Maureen McEntee wrote: >> Where do you get it, and is it free or

Re: [blind-gamers] Forza Motorsport Racing Club

2023-11-08 Thread mattias
and no mac version so no thanks > 8 nov. 2023 kl. 23:36 skrev Lenron : > > It's a main stream racing game that is pretty popular. It's something > we can play and there are loads of us that are enjoying it. There are > serval youtube blind driving videos out there. > > On 11/8/23, Maureen

Re: [fpc-pascal] fcl-pdf custom font from memstream

2023-11-02 Thread Mattias Gaertner via fpc-pascal
On 02.11.23 16:42, Mattias Gaertner via fpc-pascal wrote: On 02.11.23 14:00, Michael Van Canneyt via fpc-pascal wrote: On Thu, 2 Nov 2023, Alexey Torgashin via fpc-pascal wrote: How to load a custom font from a stream instead of from a file? Currently no way to my knowledge

Re: [fpc-pascal] fcl-pdf custom font from memstream

2023-11-02 Thread Mattias Gaertner via fpc-pascal
, maybe better share the TTFFileInfo? Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] fcl-pdf custom font from memstream

2023-11-02 Thread Mattias Gaertner via fpc-pascal
understood Mattias' request) Yes. I added two functions and extended the example. To my surprise it turns out that a ttf file is loaded up to 3 times: Once for AddFont, once for gTTFontCache and once in SaveDocument. SaveDocument now uses the TPDFFont stream if available, so only 2 times

Re: [fpc-pascal] fcl-pdf custom font from memstream

2023-11-02 Thread Mattias Gaertner via fpc-pascal
.     Procedure LoadFromFile(const AFileName : String);     Procedure LoadFromStream(AStream: TStream); virtual; Yes, but that is only one piece of the puzzle. I will add the rest. Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https

[fpc-pascal] fcl-pdf custom font from memstream

2023-11-02 Thread Mattias Gaertner via fpc-pascal
Hi, How to load a custom font from a stream instead of from a file? Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[PATCH v6 5/5] vfio-user: Fix config space access byte order

2023-11-01 Thread Mattias Nissler
PCI config space is little-endian, so on a big-endian host we need to perform byte swaps for values as they are passed to and received from the generic PCI config space access machinery. Signed-off-by: Mattias Nissler --- hw/remote/vfio-user-obj.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH v6 3/5] Update subprojects/libvfio-user

2023-11-01 Thread Mattias Nissler
ocket pair" Adds support for separate sockets for either command direction, addressing a bug where libvfio-user gets confused if both client and server send commands concurrently. Signed-off-by: Mattias Nissler --- subprojects/libvfio-user.wrap | 2 +- 1 file changed, 1 insertion(+), 1

  1   2   3   4   5   6   7   8   9   10   >