package/ipcalc: fix static build
Fix the following static build failure raised since commit
77f4d2f8ef
:
../ipcalc-maxmind.c:41:11: fatal error: dlfcn.h: No such file or directory
41 | # include <dlfcn.h>
| ^~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/5f867aeab9c61538e34b14023d0ba327698d3c04
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
d66f0c0b62
commit
9c1b9c279e
@ -10,6 +10,12 @@ IPCALC_SOURCE = ipcalc-$(IPCALC_VERSION).tar.bz2
|
||||
IPCALC_LICENSE = GPL-2.0+
|
||||
IPCALC_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
IPCALC_CONF_OPTS += -Duse_runtime_linking=disabled
|
||||
else
|
||||
IPCALC_CONF_OPTS += -Duse_runtime_linking=enabled
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GEOIP),y)
|
||||
IPCALC_CONF_OPTS += -Duse_geoip=enabled
|
||||
IPCALC_DEPENDENCIES += host-pkgconf geoip
|
||||
|
Loading…
Reference in New Issue
Block a user