# Download from: http://www.remotesensing.org/proj
#
USE_PROJ=1
-ifeq (${PROJ_DIR},)
- PROJ_DIR=/usr/local
-endif
+PROJ_DIR ?= /usr/local
#
# Set USE_GEOS to 1 for GEOS spatial predicate and operator
# Download from: http://geos.refractions.net
#
USE_GEOS=1
-ifeq (${GEOS_DIR},)
- GEOS_DIR=/usr/local
-endif
+GEOS_DIR ?= /usr/local
#
# Set USE_STATS to 1 for new GiST statistics collection support
# set the PGSQL_SRC either below or in the environment (an absolute path).
#
# PGSQL_SRC=/usr/src/postgresql
-ifeq (${PGSQL_SRC},)
- PGSQL_SRC = ${PWD}/../..
-endif
+PGSQL_SRC ?= ${PWD}/../..
#
# Path to library (to be specified in CREATE FUNCTION queries)
# Set LPATH below or in the environment to change it.
#
# LPATH=/usr/src/postgis
-ifeq (${LPATH},)
- LPATH := \$$libdir
-endif
+LPATH ?= \$$libdir
#---------------------------------------------------------------
# END OF CONFIGURATION