View Ticket
Not logged in
Ticket Hash: ee52f4955f18bb4aed295582a51cb6d584da5ca6
Title: unportable test(1) operators
Status: Closed Type: Build_Problem
Severity: Important Priority: Immediate
Subsystem: Resolution: Fixed
Last Modified: 2023-07-23 09:42:42
Version Found In: 5.0.1
User Comments:
anonymous added on 2023-02-15 23:23:19:

The configure script uses the unportable test(1) '==' operator. POSIX defines that it should be '=' and only bash supports '=='.

This affects the following lines in configure.ac:

if test x"$enable_geocallbacks" == "xyes"; then

if test x"$enable_knn" == "xyes"; then

AM_CONDITIONAL([ENABLE_GEOPACKAGE], [test x"$enable_geopackage" == "xyes"])


sandro added on 2023-07-23 09:42:42:

thank a lot for noticing and reporting this glitch