Changed the dependencies file to use ?= instead of = to allow env vars
to override local settings.
This commit is contained in:
parent
d0938823af
commit
9f8387710f
@ -1,39 +1,39 @@
|
|||||||
################################################################
|
################################################################
|
||||||
# Dependency library which have been installed on this system
|
# Dependency library which have been installed on this system
|
||||||
|
|
||||||
GDAL_INSTALLED = no
|
GDAL_INSTALLED ?= no
|
||||||
JASPER_INSTALLED = no
|
JASPER_INSTALLED ?= no
|
||||||
|
|
||||||
FREETYPE_INSTALLED = yes
|
FREETYPE_INSTALLED ?= yes
|
||||||
|
|
||||||
ifeq ($(OS),Darwin)
|
ifeq ($(OS),Darwin)
|
||||||
DARWIN_QUICKTIME = yes
|
DARWIN_QUICKTIME ?= yes
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(DARWIN_QUICKTIME),yes)
|
ifeq ($(DARWIN_QUICKTIME),yes)
|
||||||
|
|
||||||
QUICKTIME_INSTALLED = yes
|
QUICKTIME_INSTALLED ?= yes
|
||||||
LIBJPEG_INSTALLED = no
|
LIBJPEG_INSTALLED ?= no
|
||||||
LIBUNGIF_INSTALLED = no
|
LIBUNGIF_INSTALLED ?= no
|
||||||
LIBTIFF_INSTALLED = no
|
LIBTIFF_INSTALLED ?= no
|
||||||
LIBPNG_INSTALLED = no
|
LIBPNG_INSTALLED ?= no
|
||||||
LIBMPEG3_INSTALLED = no
|
LIBMPEG3_INSTALLED ?= no
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
QUICKTIME_INSTALLED = no
|
QUICKTIME_INSTALLED ?= no
|
||||||
LIBJPEG_INSTALLED = yes
|
LIBJPEG_INSTALLED ?= yes
|
||||||
LIBUNGIF_INSTALLED = yes
|
LIBUNGIF_INSTALLED ?= yes
|
||||||
LIBTIFF_INSTALLED = yes
|
LIBTIFF_INSTALLED ?= yes
|
||||||
LIBPNG_INSTALLED = yes
|
LIBPNG_INSTALLED ?= yes
|
||||||
LIBMPEG3_INSTALLED = no
|
LIBMPEG3_INSTALLED ?= no
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
COIN_INSTALLED = no
|
COIN_INSTALLED ?= no
|
||||||
INVENTOR_INSTALLED = no
|
INVENTOR_INSTALLED ?= no
|
||||||
|
|
||||||
PERFORMER_INSTALLED = no
|
PERFORMER_INSTALLED ?= no
|
||||||
|
|
||||||
DEMETER_INSTALLED = no
|
DEMETER_INSTALLED ?= no
|
||||||
|
Loading…
Reference in New Issue
Block a user