0

不知道为什么会这样:pkg-config proj --libs

给出:-lproj

什么时候应该:-L/usr/lib/x86_64-linux-gnu -lproj

因为proj.pc/usr/lib/x86_64-linux-gnu/pkgconfig/

现在,这个问题与proj_api.h not found in standard or given locations? 我的 LMint 20.1 没有找到。我不断得到:

PROJ header location specified: -I/usr/include - check if proj_api.h is there...
checking proj_api.h usability... no
checking proj_api.h presence... no
checking for proj_api.h... no
configure: error: Did not find PROJ headers according to --with-proj-include - check the installation!

即使proj_api.h在这里:

$ locate proj_api.h
/usr/include/proj_api.h

这是 PROJ4 版本 7.2.1-1 的问题吗?我发现了一些关于这个的帖子(例如这个关于 .bashrc 中的 PKG_CONFIG_PATH 的帖子)但没有解决方案。任何帮助深表感谢,

-- PROJ4 版本:

ii  libproj-dev:amd64                          7.2.1-1~focal0                        amd64        Cartographic projection library (development files)
ii  libproj19:amd64                            7.2.1-1~focal0                        amd64        Cartographic projection library
ii  proj-bin                                   7.2.1-1~focal0                        amd64        Cartographic projection library (tools)
ii  proj-data                                  7.2.1-1~focal0                        all          Cartographic projection filter and library (datum package)
4

1 回答 1

0

找到了,解决方法是ACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1在configure调用之前放这样的:

sudo CFLAGS="-I/usr/include -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" ./configure --prefix=/home/gery/misProgramas/mb/mbsystem-trunk.r2346 --with-gmt-config=/home/gery/misProgramas/gmt/gmt-5.4.4/bin --with-otps-dir=/home/gery/misProgramas/mb/OTPS2

这些链接可能有用:https ://github.com/postgis/postgis/pull/354/files#和https://github.com/OSGeo/PROJ/issues/836

于 2021-02-17T22:48:20.013 回答