Re: [Qemu-devel] [PATCH v2] Discover openpty(3) dynamically in configure

2017-11-02 Thread Peter Maydell
On 28 October 2017 at 18:07, Kamil Rytarowski wrote: > I've naively expected that once a build on a certain OS will be fixed, > it will be functional for longer period (at least few weeks). In one > month qemu has been broken on DragonFly and SmartOS so they are not just > broken in tests, but als

Re: [Qemu-devel] [PATCH v2] Discover openpty(3) dynamically in configure

2017-10-28 Thread Kamil Rytarowski
On 14.09.2017 15:52, Peter Maydell wrote: > On 11 September 2017 at 18:16, Kamil Rytarowski wrote: >> openpty(3) might: >> - exists in libc (OSX) >> - exists in libutil (GNU, BSD) >> - does not exist (SmartOS) >> >> Add a function to discover this function in the ./configure script. >> Add new

Re: [Qemu-devel] [PATCH v2] Discover openpty(3) dynamically in configure

2017-09-14 Thread Peter Maydell
On 11 September 2017 at 18:16, Kamil Rytarowski wrote: > openpty(3) might: > - exists in libc (OSX) > - exists in libutil (GNU, BSD) > - does not exist (SmartOS) > > Add a function to discover this function in the ./configure script. > Add new config types: CONFIG_OPENPTY_LIBC and CONFIG_OPENPT

[Qemu-devel] [PATCH v2] Discover openpty(3) dynamically in configure

2017-09-11 Thread Kamil Rytarowski
openpty(3) might: - exists in libc (OSX) - exists in libutil (GNU, BSD) - does not exist (SmartOS) Add a function to discover this function in the ./configure script. Add new config types: CONFIG_OPENPTY_LIBC and CONFIG_OPENPTY_LIBUTIL, respectively defined when openpts(3) links with -lc or -lu