Displaying 1 result from an estimated 1 matches for "doccomments_i_flags".
2007 Jun 04
0
Patch to enable python bindings in absence of docs build
...ython/Makefile.am (revision 8794)
+++ python/Makefile.am (working copy)
@@ -9,7 +9,12 @@
BUILT_SOURCES = modern/xapian_wrap.cc modern/xapian_wrap.h modern/xapian.py
-EXTRA_DIST = util.i extra.i extracomments.i except.i doccomments.i\
+if HAVE_DOCCOMMENTS_SOURCES
+DOCCOMMENTS_I = doccomments.i
+DOCCOMMENTS_I_FLAGS=-DDOCCOMMENTS_I_SOURCES
+endif
+
+EXTRA_DIST = util.i extra.i extracomments.i except.i $(DOCCOMMENTS_I)\
testsuite.py $(TESTS) $(BUILT_SOURCES)
SUBDIRS = docs
@@ -58,7 +63,7 @@
# "\" when extracting the output directory from the value passed to the -o
# option.
-BUILT_SOURCES +=...