Re: [Qemu-devel] [PATCH qemu] configure/fdt: Use more strict test for libfdt version

2018-11-15 Thread Daniel P . Berrangé
On Thu, Nov 15, 2018 at 09:33:08PM +1100, David Gibson wrote: > On Thu, Nov 15, 2018 at 10:11:12AM +, Daniel P. Berrangé wrote: > > On Thu, Nov 15, 2018 at 02:56:59PM +1100, Alexey Kardashevskiy wrote: > > > The libfdt installed in the system is preferred to the dtc submodule by > > > default.

Re: [Qemu-devel] [PATCH qemu] configure/fdt: Use more strict test for libfdt version

2018-11-15 Thread David Gibson
On Thu, Nov 15, 2018 at 10:11:12AM +, Daniel P. Berrangé wrote: > On Thu, Nov 15, 2018 at 02:56:59PM +1100, Alexey Kardashevskiy wrote: > > The libfdt installed in the system is preferred to the dtc submodule by > > default. The recent libfdt update added a new symbol - fdt_check_full - > > and

Re: [Qemu-devel] [PATCH qemu] configure/fdt: Use more strict test for libfdt version

2018-11-15 Thread Daniel P . Berrangé
On Thu, Nov 15, 2018 at 02:56:59PM +1100, Alexey Kardashevskiy wrote: > The libfdt installed in the system is preferred to the dtc submodule by > default. The recent libfdt update added a new symbol - fdt_check_full - > and this breaks compile if there is an older libfdt installed in > the system.

[Qemu-devel] [PATCH qemu] configure/fdt: Use more strict test for libfdt version

2018-11-14 Thread Alexey Kardashevskiy
The libfdt installed in the system is preferred to the dtc submodule by default. The recent libfdt update added a new symbol - fdt_check_full - and this breaks compile if there is an older libfdt installed in the system. This changes the test to force ./configure into using newer libfdt. Signed-o