Skip to content

Commit

Permalink
Look for PostgreSQL library properly and fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Apr 20, 2021
1 parent 1da7341 commit a24899b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -133,7 +133,7 @@ Compiling
| Dependency | Version | Commentary |
|------------|---------|------------|
| GCC | 4.9+ | Can be replaced with Clang 3.4+ |
| CMake | 2.6+ | |
| CMake | 3.5+ | |
| Irrlicht | - | Custom version required, see https://github.com/minetest/irrlicht |
| SQLite3 | 3.0+ | |
| LuaJIT | 2.0+ | Bundled Lua 5.1 is used if not present |
Expand Down
11 changes: 10 additions & 1 deletion src/CMakeLists.txt
Expand Up @@ -146,7 +146,16 @@ option(ENABLE_POSTGRESQL "Enable PostgreSQL backend" TRUE)
set(USE_POSTGRESQL FALSE)

if(ENABLE_POSTGRESQL)
find_package("PostgreSQL")
if(CMAKE_VERSION VERSION_LESS "3.20")
find_package(PostgreSQL QUIET)
# Before CMake 3.20 FindPostgreSQL.cmake always looked for server includes
# but we don't need them, so continue anyway if only those are missing.
if(PostgreSQL_INCLUDE_DIR AND PostgreSQL_LIBRARY)
set(PostgreSQL_FOUND TRUE)
endif()
else()
find_package(PostgreSQL)
endif()

if(PostgreSQL_FOUND)
set(USE_POSTGRESQL TRUE)
Expand Down
3 changes: 1 addition & 2 deletions util/ci/common.sh
Expand Up @@ -5,8 +5,7 @@ install_linux_deps() {
local pkgs=(cmake libpng-dev \
libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev \
libhiredis-dev libogg-dev libgmp-dev libvorbis-dev libopenal-dev \
gettext libpq-dev postgresql-server-dev-all libleveldb-dev \
libcurl4-openssl-dev)
gettext libpq-dev libleveldb-dev libcurl4-openssl-dev)

if [[ "$1" == "--old-irr" ]]; then
shift
Expand Down

0 comments on commit a24899b

Please sign in to comment.