package/libdbi: needs dynamic library
libdbi needs dynamic library to avoid the following build failure raised
since the addition of the package in commit
c6aac6ebdb
:
dbi_main.c:84:2: error: #error no dynamic loading support
84 | #error no dynamic loading support
| ^~~~~
Fixes:
- http://autobuild.buildroot.org/results/9cd56a625cbd52b0c070e2d462e02f5161d9631d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
78d7c5f803
commit
a24f0e8eee
@ -214,11 +214,15 @@ config BR2_PACKAGE_COLLECTD_CURL_XML
|
|||||||
|
|
||||||
config BR2_PACKAGE_COLLECTD_DBI
|
config BR2_PACKAGE_COLLECTD_DBI
|
||||||
bool "dbi"
|
bool "dbi"
|
||||||
|
depends on !BR2_STATIC_LIBS
|
||||||
select BR2_PACKAGE_LIBDBI
|
select BR2_PACKAGE_LIBDBI
|
||||||
help
|
help
|
||||||
Executes SQL statements on various databases and
|
Executes SQL statements on various databases and
|
||||||
interprets the returned data.
|
interprets the returned data.
|
||||||
|
|
||||||
|
comment "dbi support needs a toolchain w/ dynamic library"
|
||||||
|
depends on BR2_STATIC_LIBS
|
||||||
|
|
||||||
config BR2_PACKAGE_COLLECTD_DF
|
config BR2_PACKAGE_COLLECTD_DF
|
||||||
bool "df"
|
bool "df"
|
||||||
help
|
help
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
config BR2_PACKAGE_LIBDBI_DRIVERS
|
config BR2_PACKAGE_LIBDBI_DRIVERS
|
||||||
bool "libdbi-drivers"
|
bool "libdbi-drivers"
|
||||||
|
depends on !BR2_STATIC_LIBS # libdbi
|
||||||
select BR2_PACKAGE_LIBDBI
|
select BR2_PACKAGE_LIBDBI
|
||||||
help
|
help
|
||||||
The libdbi-drivers project provides the
|
The libdbi-drivers project provides the
|
||||||
database-specific drivers for the libdbi framework.
|
database-specific drivers for the libdbi framework.
|
||||||
|
|
||||||
http://libdbi-drivers.sourceforge.net
|
http://libdbi-drivers.sourceforge.net
|
||||||
|
|
||||||
|
comment "libdbi-drivers needs a toolchain w/ dynamic library"
|
||||||
|
depends on BR2_STATIC_LIBS
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
config BR2_PACKAGE_LIBDBI
|
config BR2_PACKAGE_LIBDBI
|
||||||
bool "lidbi"
|
bool "lidbi"
|
||||||
|
depends on !BR2_STATIC_LIBS
|
||||||
help
|
help
|
||||||
libdbi implements a database-independent abstraction layer
|
libdbi implements a database-independent abstraction layer
|
||||||
in C, similar to the DBI/DBD layer in Perl.
|
in C, similar to the DBI/DBD layer in Perl.
|
||||||
|
|
||||||
http://libdbi.sourceforge.net
|
http://libdbi.sourceforge.net
|
||||||
|
|
||||||
|
comment "libdbi needs a toolchain w/ dynamic library"
|
||||||
|
depends on BR2_STATIC_LIBS
|
||||||
|
Loading…
Reference in New Issue
Block a user