Kaydet (Commit) 3d9c1b35 authored tarafından Michael Stahl's avatar Michael Stahl

configure: require doxygen 1.8.4 for UNO IDL support

Change-Id: I9a90bf06a70f6537f9671ef2cd47bf68c3cf5d57
üst 8b43736c
......@@ -6965,6 +6965,11 @@ else
DOXYGEN=$with_doxygen
AC_MSG_RESULT([$DOXYGEN])
fi
DOXYGEN_VERSION=`$DOXYGEN --version 2>/dev/null`
DOXYGEN_NUMVERSION=`echo $DOXYGEN_VERSION | $AWK -F. '{ print \$1*10000 + \$2*100 + \$3 }'`
if ! test "$DOXYGEN_NUMVERSION" -ge "10804" ; then
AC_MSG_ERROR([found doxygen is too old; need at least version 1.8.4 or specify --without-doxygen])
fi
fi
fi
AC_SUBST([DOXYGEN])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment