From: Stuart Henderson Subject: Re: [update] Brandy 1.20.1 -> 1.23.2 To: Jag Talon Cc: Omar Polo , ports@openbsd.org Date: Mon, 5 Aug 2024 18:18:00 +0100 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