[Lunar-commits] r22034 - moonbase/trunk/doc-tools/doxygen
Dennis Veatch
stumbles at lunar-linux.org
Thu Nov 2 21:42:00 CET 2006
Author: stumbles
Date: 2006-11-02 21:42:00 +0100 (Thu, 02 Nov 2006)
New Revision: 22034
Modified:
moonbase/trunk/doc-tools/doxygen/BUILD
Log:
hmm. Don't remember this being a problem before;
<stdout>: In function `void configYY_init_buffer(yy_buffer_state*, FILE*)':
<stdout>:2079: error: `isatty' was not declared in this scope
<stdout>:2079: warning: unused variable 'isatty'
A google around and others have had the same issue. Deleting src/unistd.h
which appears to be a dummy file for Winders (figures) is the culprit. Gave
it a go and all seems well.
Modified: moonbase/trunk/doc-tools/doxygen/BUILD
===================================================================
--- moonbase/trunk/doc-tools/doxygen/BUILD 2006-11-02 20:27:54 UTC (rev 22033)
+++ moonbase/trunk/doc-tools/doxygen/BUILD 2006-11-02 20:42:00 UTC (rev 22034)
@@ -11,9 +11,11 @@
--install /usr/bin/install \
$OPTS &&
+ rm src/unistd.h &&
+
make &&
if which python 2> /dev/null 1>&2; then
- make docs
+ make docs
fi &&
prepare_install &&
make install
More information about the Lunar-commits
mailing list