1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Configuration Makefile fragment
# Build the libxml2 binding?
# yes | no
WITH_LIBXML_BINDING := no
# Build the expat binding?
# yes | no
WITH_EXPAT_BINDING := yes
# Build the hubbub binding?
# yes | no
WITH_HUBBUB_BINDING := yes
# ----------------------------------------------------------------------------
# BeOS-specific options
# ----------------------------------------------------------------------------
ifeq ($(BUILD),i586-pc-haiku)
# temporary
WITH_LIBXML_BINDING := no
endif
-include Makefile.config.override
|