Download raw body.
[update] Brandy 1.20.1 -> 1.23.2
On 2024/08/05 09:05, Jag Talon wrote:
> I think I'm having trouble applying the patch I'm getting the following
> .rej files:
>
> https://okturing.com/src/20543/body
No issue patching here. Perhaps your mail client mangles something,
Try the "download raw body" link from marc.info.
> One thing I'd like to add is -DBRANDY_NOVERCHECK so that Brandy doesn't
> check for new versions whenever it starts up.
Makes sense.
> On Sun, 2024-08-04 at 20:54 +0200, Omar Polo wrote:
> > +SDL_CFLAGS !!= sdl-config --cflags
> > +SDL_LDFLAGS !!= sdl-config --libs
..
> > +CFLAGS += ${SDL_CFLAGS} -DDEFAULT_IGNORE -Wall
> > +LDFLAGS += ${SDL_LDFLAGS} -lm -pthread -L${X11BASE}/lib/ -lX11
I don't really like the make parse-time interpolation with !!=,
could you switch to this instead please?
CFLAGS += `sdl-config --cflags` -DDEFAULT_IGNORE -Wall
LDFLAGS += `sdl-config --libs` -lm -pthread -L${X11BASE}/lib/ -lX11
[update] Brandy 1.20.1 -> 1.23.2