[Kicad-developers] Feature request: Gerbview - Print - Pagination option

2021-05-05 Thread Clifford Neal Simon
Hi devs, New mailing-list member here. When I print multiple layers from Gerbview, the layers appear one per page. Would like a radio button for pagination, to choose all layers on one page or one layer on each page. Pcbnew has this but not Gerbview. In my engineering workflow I print out a

Re: [Kicad-developers] Build issue

2021-05-05 Thread Holger Vogt
As an aside, it would be very helpful when typedefing a new value to include a define (like #define HAS_NG_BOOL 1) with it.  That would allow us to test for the new signature when compiling. Done Holger ___ Mailing list:

Re: [Kicad-developers] Build issue

2021-05-05 Thread Seth Hillbrand
You will need to upgrade ngspice as well. The variable is renamed to NG_BOOL. -Seth On Wed, May 5, 2021 at 12:21 PM BERTRAND Joël wrote: > Thanks for your patch. > > Nevertheless, after make clean && make, build process now aborts > with : > > [ 47%] Building CXX object >

Re: [Kicad-developers] Build issue

2021-05-05 Thread BERTRAND Joël
Thanks for your patch. Nevertheless, after make clean && make, build process now aborts with : [ 47%] Building CXX object eeschema/CMakeFiles/eeschema_kiface_objects.dir/sim/ngspice.cpp.o In file included from /home/bertrand/git/kicad/eeschema/sim/ngspice.cpp:31:

Re: [Kicad-developers] Build issue

2021-05-05 Thread Seth Hillbrand
I have conditionally adjusted the signature based on a secondary tag that also seems new since NGSPICE34. We can't adjust the API without packaging sharedspice.h ourselves, which I don't think we want. As an aside, it would be very helpful when typedefing a new value to include a define (like

Re: [Kicad-developers] Build issue

2021-05-05 Thread Holger Vogt
Am 04.05.2021 um 23:32 schrieb Seth Hillbrand: We can adjust our interface to cope with the change to int as an underlying type. That is great. Thus we may avoid any potential problems. However, one concern is that the typedef exists unscoped inside a header file.  The term "BOOL" is

Re: [Kicad-developers] Build issue

2021-05-05 Thread BERTRAND Joël
Jon Evans a écrit : > What version of ngspice are you using? I don't know, maybe a version pulled last week. But yesterday, I have rebuild ngspice from scratch (I have deleted my build directory). In ngspice header, I can read : /* ... All boolean signals (BOOL) are of type int.