Changes to Guile not effecting built binary

2024-03-21 Thread Ryan Raymond
Hello, all. Earlier I mentioned a patch I wanted to apply to the guile source code. I have implemented my change but the guile binary I build with the default build instructions still has the unmodified function. For example, I modified "parse-http-method" and completely removed all error throwing

Re: Changes to Guile not effecting built binary

2024-03-21 Thread Dr. Arne Babenhauserheide
Ryan Raymond writes: > For example, I modified "parse-http-method" and completely removed all error > throwing capabilities but I am still getting an error thrown from > within that function. > (bad-request "Invalid method: ~a" (substring str start end)) > > I am assuming that the modules are n

Re: Changes to Guile not effecting built binary

2024-03-21 Thread Ryan Raymond
Arne, you're my hero. Meta/guile does include my changes *and* has a quicker turnaround for testing changes than building every time. Thank you! As for the dependencies, make clean is what I used and that didn't reflect the changes I made. I will try more things before I submit a pull request but a