Re: Does anyone still feel strongly about -Wdeclaration-after-statement ?

2024-07-31 Thread Jeremy Sequoia
I feel very strongly that we should be able to leverage language features that have existed for longer than college graduates have been alive and should remove warnings designed to ensure we maintain compatibility with compilers that existed when pinball machines were all the rage. I'd even go

Re: "Modern C" and the X.Org software

2023-12-12 Thread Jeremy Sequoia
> On Dec 11, 2023, at 14:29, Alan Coopersmith > wrote: > > I also added -std=gnu23 to my build flags, which found one more issue > due to C23 defining "true" as an rvalue, not an lvalue: > > Fix C23 build by renaming variable 'true' >

X (Twitter) Logo

2023-07-24 Thread Jeremy Sequoia
Did Elon just steal our logo for Twitter's rebranding?

BadValue from X_OpenFont with some TrueType fonts

2022-06-30 Thread Jeremy Sequoia
Hi folks, I'm trying to track down an issue reported against XQuartz related to fonts. I'm a bit out of my depth in this area, so I'm hoping to get some advice from others that know more about this than me. https://github.com/XQuartz/XQuartz/issues/216

Re: xserver: Branch 'master' - 3 commits

2022-06-21 Thread Jeremy Sequoia
> On Jun 21, 2022, at 2:19 AM, Michel Dänzer wrote: > > On 2022-06-21 05:37, Jeremy Sequoia wrote: >> I reverted > > Thanks. > > Note that "make dist" is still broken on server-22.1-branch: > https://gitlab.freedesktop.org/xorg/xserver/-/jobs/24

Re: xserver: Branch 'master' - 3 commits

2022-06-21 Thread Jeremy Sequoia
/xserver/-/merge_requests/912 Thanks, and sorry for the noise. > On Jun 20, 2022, at 17:41, Jeremy Sequoia wrote: > > Shoot, sorry about that. Do you want me to revert it? I figured the warning > meant the build wouldn't even work with older meson :/ > > Sent from my iPhone.

Re: xserver: Branch 'master' - 3 commits

2022-06-20 Thread Jeremy Sequoia
Shoot, sorry about that. Do you want me to revert it? I figured the warning meant the build wouldn't even work with older meson :/ Sent from my iPhone... > On Jun 20, 2022, at 02:09, Michel Dänzer wrote: > >  > Hi Jeremy, > > > good to see you working on Xquartz again! > > > We are

504 to gitlab.freedesktop.org

2022-06-12 Thread Jeremy Sequoia
Hey folks, I was going to spend a little bit of time putting out an update to XQuartz to address a few bugs that I've been meaning to squash, but I'm having a bit of an issue pulling down sources. Fetching via ssh://g...@gitlab.freedesktop.org is giving me Permission denied

Re: Repos to archive?

2018-11-20 Thread Jeremy Sequoia
Sent from my iPhone... > On Nov 20, 2018, at 11:04, Adam Jackson wrote: > >> On Tue, 2018-11-20 at 09:34 -0800, Eric Anholt wrote: >> Alan Coopersmith writes: >> >>> While iterating over all the /xorg/ repos to update their READMEs >>> (which I think I've now finished - let me know if you

Re: [PATCH:xserver] Use pthread_setname_np to set thread names if available

2016-10-17 Thread Jeremy Sequoia
Sent from my iPhone... > On Oct 17, 2016, at 18:48, Alan Coopersmith > wrote: > >> On 10/17/16 06:36 PM, Peter Hutterer wrote: >>> On Sat, Sep 10, 2016 at 09:14:19PM -0700, Alan Coopersmith wrote: >>> I have only tested this on Solaris, not MacOS or Linux, but

Re: [PATCH x11proto] Fix typo __has_extenstion -> __has_extension

2016-09-22 Thread Jeremy Sequoia
Crap, my bad. Sorry. Reviewed-by: Jeremy Huddleston Sequoia Sent from my iPhone... > On Sep 22, 2016, at 16:38, Keith Packard wrote: > > Signed-off-by: Keith Packard > --- > Xfuncproto.h.in | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [ANNOUNCE] xorg-server 1.18.99.2

2016-09-17 Thread Jeremy Sequoia
Sent from my iPhone... > On Sep 17, 2016, at 21:43, Keith Packard wrote: > > Jeremy Huddleston Sequoia writes: > >> [ Unknown signature status ] >> >>> On Sep 16, 2016, at 13:57, Keith Packard wrote: >>> >>> >>> I think we're

Re: [PATCH:xorg-docs 3/4] X.man: document protocol/ syntax in display string

2015-10-28 Thread Jeremy Sequoia
Sent from my iPhone... > On Oct 28, 2015, at 10:01, Alan Coopersmith > wrote: > >> On 10/28/15 07:46 AM, Jeremy Huddleston Sequoia wrote: >> Should we also mention the extension that was added for launchd support >> where we DISPLAY=[.] > > That sounds like a

Re: [PATCH xserver 1/1] list: Use offsetof() to determine member offsets within a structure

2012-08-29 Thread Jeremy Sequoia
On 08/28/12, Peter Hutterer peter.hutte...@who-t.net wrote: -#define __container_of(ptr, sample, member) \ -    (void *)((char *)(ptr) \ - - ((char *)(sample)-member - (char *)(sample))) +#define