# HG changeset patch # User John W. Eaton # Date 1531244103 14400 # Node ID 0bee767e21edc06134174a2304c7fe3003333b3d # Parent a800e350d88b08a485aa3128177d8de5fc7155b6 gdal: fix build failure * src/gdal.mk: Remove --without-threads from configure args. This is no longer needed for building on mingw systems with pthreads installed and causes the build to fail on non-Windows systems with pthreads. diff -r a800e350d88b -r 0bee767e21ed src/gdal.mk --- a/src/gdal.mk Mon Jul 09 14:38:21 2018 -0400 +++ b/src/gdal.mk Tue Jul 10 13:35:03 2018 -0400 @@ -18,7 +18,6 @@ endef define $(PKG)_BUILD - # The option '--without-threads' means native win32 threading without pthread. cd '$(1)' && ./configure \ $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ $(ENABLE_SHARED_OR_STATIC) \ @@ -28,7 +27,6 @@ --with-ogr \ --with-vfk \ --with-pam \ - --without-threads \ --with-libz='$(HOST_PREFIX)' \ --with-png='$(HOST_PREFIX)' \ --with-libtiff='$(HOST_PREFIX)' \