mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Check for presense of doxygen using autoconf
darcs-hash:20051225115940-ac50b-a8bc63a835c041f6648381934396392fc277cc49.gz
This commit is contained in:
parent
3a69fc997c
commit
b6630b5087
1 changed files with 9 additions and 0 deletions
|
@ -18,6 +18,15 @@ AC_PROG_INSTALL
|
||||||
#AC_ISC_POSIX
|
#AC_ISC_POSIX
|
||||||
#AC_PROG_MAKE_SET
|
#AC_PROG_MAKE_SET
|
||||||
|
|
||||||
|
AC_CHECK_PROG( has_doxygen, [doxygen], "true")
|
||||||
|
|
||||||
|
if ! test $has_doxygen = "true"; then
|
||||||
|
echo Could not find the Doxygen program in your path.
|
||||||
|
echo This program is needed to build fish.
|
||||||
|
echo Please install it and try again.
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Optionally drop xsel
|
# Optionally drop xsel
|
||||||
AC_ARG_WITH( xsel,
|
AC_ARG_WITH( xsel,
|
||||||
AC_HELP_STRING([--without-xsel],
|
AC_HELP_STRING([--without-xsel],
|
||||||
|
|
Loading…
Reference in a new issue