<div>I try to build GDAL on Ubuntu 18.04 using this guide: http://wiki.wildsong.biz/index.php/Building_GDAL_on_Linux:<br /><br /><span style="font-family:'courier new' , monospace">$ ./configure --with-python --with-poppler=yes --with-geos --with-geotiff --with-jpeg --with-png --with-expat --with-libkml --with-openjpeg --with-geos --with-pg --with-curl --with-spatialite --with-expat</span><br /><br />It stops with following output:<br /><br /><span style="font-family:'courier new' , monospace">checking for PROJ >= 6 library... checking for proj_create_from_wkt in -lproj... no<br />checking for proj_create_from_wkt in -lproj... no<br />checking for internal_proj_create_from_wkt in -lproj... no<br />checking for internal_proj_create_from_wkt in -lproj... no<br />checking for internal_proj_create_from_wkt in -linternalproj... no<br />checking for internal_proj_create_from_wkt in -linternalproj... (cached) no<br />configure: error: PROJ 6 symbols not found</span><br /><br />I've built proj 6.1.0 but it doesn't help:<br /><br /><span style="font-family:'courier new' , monospace">$ proj<br />Rel. 6.1.0, May 15th, 2019<br />usage: proj [-bdeEfiIlmorsStTvVwW [args]] [+opt[=arg] ...] [file ...]</span><br /><br />I tried to build proj 6.0.0 instead, but that made no difference. I followed instructions from here: https://proj.org/install.html. All tests were passed.<br />I also tried ./configure --with-proj=/usr/local/lib (/usr/local/lib contains files libproj.la, libproj.so.15.0.0, libproj.so, libproj.a and libproj.so.15)<br /><br />I need to use GDAL in my c++ app, so I need a shared lib. Is there no way to get it except for building from the source code? I already took great efforts to build it on Windows (all instructions I found were wrong, too, but I managed to do it somehow).<br /><br /><br /> </div>