]> git.proxmox.com Git - mirror_ovs.git/commit
acinclude: Drop DPDK_EXTRA_LIB variable.
authorIlya Maximets <i.maximets@samsung.com>
Thu, 7 Feb 2019 12:20:20 +0000 (15:20 +0300)
committerIan Stokes <ian.stokes@intel.com>
Thu, 7 Feb 2019 14:50:19 +0000 (14:50 +0000)
commit47ab42a0b5f5a7b67f8a6f766144ae2b6052d783
tree1b437b4086b837e135c1948282278a695c134a81
parenta41b2aea4c574a625b2711c003d4419bbc2f38a3
acinclude: Drop DPDK_EXTRA_LIB variable.

AC_SEARCH_LIBS enables the libraries itself:

  checking for library containing get_mempolicy... -lnuma
  checking for library containing pcap_dump... -lpcap

So, they are available in LIBS. No need to add them twice.

Also, DPDK_EXTRA_LIB doesn't even work, because each check overwrites
the variable instead of appending the new library. It was first time
misused while making libnuma optional and copy-pasted to several places
after that.

Signed-off-by: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Ian Stokes <ian.stokes@intel.com>
acinclude.m4