William Storey

Results 65 comments of William Storey

Yeah, I agree it would be useful to say something about this in the docs. Reloading should be sufficient to see the new version.

It shouldn't be the case that you have two conflicting versions of the database in use like you describe. How are you updating the database? The files get memory mapped,...

Do you have any more information about how you're building this? I tried on CentOS 8 and I was able to build it successfully.

One thought is we may need to adjust the Makefile [here](https://github.com/maxmind/mod_maxminddb/blob/master/src/Makefile.am#L2-L9) to something like: ``` -Wl,"$(LDFLAGS) $(LIBMAXMINDDB_LDFLAGS)" ``` instead of the part that says ``` $(LDFLAGS) $(LIBMAXMINDDB_LDFLAGS) ``` You'd have...

Regarding the commit de-optimizing the matrix `exp()` function. It is weird, but based on my debugging, it was causing invalid access. Valgrind output from the `test_crf_context.c` test before changing that:...

I see what caused it: The change to `CFLAGS` in `test/Makefile.am`. Without that change there is no invalid memory access. Looks like it is because we use the unoptimized version:...

Hi! I'm not familiar with OctoPrint. However, I have come to think that something videostreamer does is not really correct, so it might just not be working correctly generally. I...

I had the same problem. I fixed it by writing my geometry like so: 225x225!+105+32 From the imagemagick docs: widthxheight! Width and height emphatically given, original aspect ratio ignored. http://www.imagemagick.org/script/command-line-processing.php#geometry...

This is a great idea. However, I think we already do this. Do you have an example of the error that you saw?

That's a good idea. We do exit non-zero (1) already if there is an error, so I think this would need to be configurable and default off.