Re: [ovs-dev] [PATCH 2/2] acinclude: Use AC_SEARCH_LIBS for linking with dl.

2019-02-21 Thread Flavio Leitner
On Thu, Feb 21, 2019 at 04:54:39PM +0300, Ilya Maximets wrote: > On 21.02.2019 16:48, Flavio Leitner wrote: > > On Tue, Feb 19, 2019 at 10:12:28AM +0300, Ilya Maximets wrote: > >> DPDK uses dlopen to load plugins and we need to search for > >> library containing this function. But we should not do

Re: [ovs-dev] [PATCH 2/2] acinclude: Use AC_SEARCH_LIBS for linking with dl.

2019-02-21 Thread Ilya Maximets
On 21.02.2019 16:48, Flavio Leitner wrote: > On Tue, Feb 19, 2019 at 10:12:28AM +0300, Ilya Maximets wrote: >> DPDK uses dlopen to load plugins and we need to search for >> library containing this function. But we should not do this >> in a loop because 'AC_SEARCH_LIBS' could do this for us. >> Als

Re: [ovs-dev] [PATCH 2/2] acinclude: Use AC_SEARCH_LIBS for linking with dl.

2019-02-21 Thread Flavio Leitner
On Tue, Feb 19, 2019 at 10:12:28AM +0300, Ilya Maximets wrote: > DPDK uses dlopen to load plugins and we need to search for > library containing this function. But we should not do this > in a loop because 'AC_SEARCH_LIBS' could do this for us. > Also, 'AC_SEARCH_LIBS' prints user-visible messages

[ovs-dev] [PATCH 2/2] acinclude: Use AC_SEARCH_LIBS for linking with dl.

2019-02-18 Thread Ilya Maximets
DPDK uses dlopen to load plugins and we need to search for library containing this function. But we should not do this in a loop because 'AC_SEARCH_LIBS' could do this for us. Also, 'AC_SEARCH_LIBS' prints user-visible messages that are useful for debuging. Also added the new 'checking' message and