summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2015-12-09 15:38:55 (GMT)
committerTony Theodore <tonyt@logyst.com>2015-12-09 15:38:55 (GMT)
commitb09bbbcf7002988fca94f30685f482b3246c3dd7 (patch)
tree834b919e0d3dc5c66773ec6d40b688f385871cb4
parentd466214b5523091801c5d5ccce4cf04a85cd8142 (diff)
parentd7a5efbbaa1e933031b4f911702310be4caeafb9 (diff)
downloadmxe-b09bbbcf7002988fca94f30685f482b3246c3dd7.zip
mxe-b09bbbcf7002988fca94f30685f482b3246c3dd7.tar.gz
mxe-b09bbbcf7002988fca94f30685f482b3246c3dd7.tar.bz2
Merge pull request #1044 from tonytheodore/doxygen
disable doxygen in MXE_CONFIGURE_OPTS
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9735725..9937986 100644
--- a/Makefile
+++ b/Makefile
@@ -68,13 +68,18 @@ endef
null :=
space := $(null) $(null)
+MXE_DISABLE_DOC_OPTS = \
+ ac_cv_prog_HAVE_DOXYGEN="false" \
+ --disable-doxygen
+
MXE_CONFIGURE_OPTS = \
--host='$(TARGET)' \
--build='$(BUILD)' \
--prefix='$(PREFIX)/$(TARGET)' \
$(if $(BUILD_STATIC), \
--enable-static --disable-shared , \
- --disable-static --enable-shared )
+ --disable-static --enable-shared ) \
+ $(MXE_DISABLE_DOC_OPTS)
MXE_GCC_THREADS = \
$(if $(findstring posix,$(TARGET)),posix,win32)