xref: /OK3568_Linux_fs/buildroot/package/postgis/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_POSTGIS
2*4882a593Smuzhiyun	bool "postgis"
3*4882a593Smuzhiyun	depends on BR2_PACKAGE_POSTGRESQL_FULL
4*4882a593Smuzhiyun	depends on !BR2_microblazeel && !BR2_microblazebe # ICE
5*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP # proj
6*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11, proj
7*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS # proj
8*4882a593Smuzhiyun	depends on BR2_USE_WCHAR # libgeos, proj
9*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_21464 # libgeos
10*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597 # libgeos
11*4882a593Smuzhiyun	select BR2_PACKAGE_LIBGEOS
12*4882a593Smuzhiyun	select BR2_PACKAGE_PROJ
13*4882a593Smuzhiyun	select BR2_PACKAGE_LIBXML2
14*4882a593Smuzhiyun	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
15*4882a593Smuzhiyun	help
16*4882a593Smuzhiyun	  PostGIS is a spatial database extender for PostgreSQL
17*4882a593Smuzhiyun	  object-relational database. It adds support for
18*4882a593Smuzhiyun	  geographic objects allowing location queries
19*4882a593Smuzhiyun	  to be run in SQL.
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun	  https://postgis.net/
22*4882a593Smuzhiyun
23*4882a593Smuzhiyuncomment "postgis needs a toolchain w/ C++, threads, wchar, gcc >= 4.7, not binutils bug 21464, 27597"
24*4882a593Smuzhiyun	depends on !BR2_microblazeel && !BR2_microblazebe # ICE
25*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
26*4882a593Smuzhiyun		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
27*4882a593Smuzhiyun		BR2_TOOLCHAIN_HAS_BINUTILS_BUG_21464 || \
28*4882a593Smuzhiyun		BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
29