Ryan Carsten Schmidt

Results 570 comments of Ryan Carsten Schmidt

metaproxy failed to build: ``` /opt/local/include/libxml2/libxml/xinclude.h:120:7: error: unknown type name 'xmlStructuredErrorFunc' xmlStructuredErrorFunc handler, ^ ``` Probably needs `#include `. ----- pazpar2 failed to build: ``` pazpar2.c:113:5: error: call to undeclared...

> metaproxy failed to build: > > ``` > /opt/local/include/libxml2/libxml/xinclude.h:120:7: error: unknown type name 'xmlStructuredErrorFunc' > xmlStructuredErrorFunc handler, > ^ > ``` > > Probably needs `#include `. This is...

> This is fixed in libxml2 2.13.1 (#24676) Now that this is merged you can rebase from master to fix this one but will still need patches for the other...

On arm64 `port test` says: ``` Warning: pnpm is configured to build for the architecture(s) 'arm64', but installed Mach-O files built for the following archs: Warning: x86_64: Warning: /opt/local/lib/node_modules/pnpm/dist/reflink.darwin-x64-CDTBYYIZ.node ```...

> CI on macOS-13 is MPICH-related, we cannot do anything about that here. Really? It says: ``` ********************************************************************************************* UNABLE to CONFIGURE with GIVEN OPTIONS (see configure.log for details): --------------------------------------------------------------------------------------------- C...

MacPorts supports Mac OS X 10.4 and later. There are a handful of MacPorts users very passionate about supporting older systems. If you do not wish to include this simple...

> Do we have statistics about installations? MacPorts opt-in installation statistics are here: https://ports.macports.org/statistics/

> But `brk` is documented to return a `void *`, not an `int`. Huh. This appears to be a platform difference. [On macOS](https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/brk.2.html), `brk` returns a `void *`: the new...

This is the fix I've added to MacPorts: ```diff --- vmem_sbrk.c.orig 2009-03-05 18:56:48.000000000 -0600 +++ vmem_sbrk.c 2024-10-11 10:55:35.000000000 -0500 @@ -108,7 +108,7 @@ uintptr_t ret_brk; uintptr_t high_brk; uintptr_t new_brk; -...