Re: [GNC-dev] Possible fixes needed -- or maybe an anomaly with make and Ubuntu 23.10

2024-02-22 Thread Geert Janssens
Hi, I presume you are referring to the warning messages regarding the -py3 switch : Deprecated command line option: -py3. Ignored, this option is no longer supported. They are not specific to Ubuntu 23.10. I see the same warnings when building gnucash on Fedora 39. It's a change in the swig

Re: [GNC-dev] gnucash stable: Do a better job of including the -py3 option only for swig 4.1

2024-02-22 Thread john
> On Feb 22, 2024, at 05:25, Geert Janssens wrote: > > Op donderdag 22 februari 2024 13:41:43 CET schreef Derek Atkins: >> I'm going to throw some ideas out there, but... doesn't the "set" >> overwrite the variable?? In the original you had: >> >> set DSPF -python -Wall -Werror

Re: [GNC-dev] gnucash stable: Do a better job of including the -py3 option only for swig 4.1

2024-02-22 Thread Geert Janssens
Op vrijdag 23 februari 2024 01:37:40 CET schreef john: > > On Feb 22, 2024, at 05:25, Geert Janssens > > wrote:> > > Op donderdag 22 februari 2024 13:41:43 CET schreef Derek Atkins: > >> I'm going to throw some ideas out there, but... doesn't the "set" > >> > >> overwrite the variable?? In the

Re: [GNC-dev] gnucash stable: Do a better job of including the -py3 option only for swig 4.1

2024-02-22 Thread Geert Janssens
My last commit causes a CI failure on MacOS. Unfortunately I can't find why that would be. As far as I can see I haven't changed anything that could cause the distutils module not to be found by python. There are other errors later on in the configure output relating to a read-only file

Re: [GNC-dev] gnucash stable: Do a better job of including the -py3 option only for swig 4.1

2024-02-22 Thread Derek Atkins
I'm going to throw some ideas out there, but... doesn't the "set" overwrite the variable?? In the original you had: set DSPF -python -Wall -Werror $(SWIG_ARGS) if (swig_version < 4.1) set DSPF $(SWIG_ARGS) -py3 Wouldn't this override DSPF if swig is < 4.1, getting rid of -python -Wall

Re: [GNC-dev] gnucash stable: Do a better job of including the -py3 option only for swig 4.1

2024-02-22 Thread Geert Janssens
Op donderdag 22 februari 2024 13:41:43 CET schreef Derek Atkins: > I'm going to throw some ideas out there, but... doesn't the "set" > overwrite the variable?? In the original you had: > > set DSPF -python -Wall -Werror $(SWIG_ARGS) > if (swig_version < 4.1) > set DSPF $(SWIG_ARGS) -py3