net/ark: fix build on FreeBSD
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 21 Apr 2017 13:50:21 +0000 (14:50 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 21 Apr 2017 14:19:40 +0000 (16:19 +0200)
On FreeBSD it's not necessary to use -ldl to link apps which use
dlopen. This error only showed up with a shared library gcc build,
not standard build using static libs.

Fixes: 1131cbf0fb2b ("net/ark: stub PMD for Atomic Rules Arkville")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: John Miller <john.miller@atomicrules.com>
drivers/net/ark/Makefile

index b3d462f..ca64b19 100644 (file)
@@ -59,6 +59,8 @@ SRCS-$(CONFIG_RTE_LIBRTE_ARK_PMD) += ark_udm.c
 
 # this lib depends upon:
 LDLIBS += -lpthread
+ifdef CONFIG_RTE_EXEC_ENV_LINUXAPP
 LDLIBS += -ldl
+endif
 
 include $(RTE_SDK)/mk/rte.lib.mk