You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
394 B
18 lines
394 B
#MIN_CONFIG(3.3)
|
|
|
|
AM_INIT_AUTOMAKE(kscope, 1.6.2)
|
|
AC_C_BIGENDIAN
|
|
AC_CHECK_KDEMAXPATHLEN
|
|
|
|
AM_PROG_LEX
|
|
AC_CHECK_PROG(HAVE_LEX, $LEX, yes, no)
|
|
if [[ "$HAVE_LEX" = "no" ]]; then
|
|
AC_MSG_ERROR(Lex/Flex is required in order to build KScope)
|
|
fi
|
|
|
|
AC_PROG_YACC
|
|
AC_CHECK_PROG(HAVE_YACC, $YACC, yes, no)
|
|
if [[ "$HAVE_YACC" = "no" ]]; then
|
|
AC_MSG_ERROR(Yacc/Bison is required in order to build KScope)
|
|
fi
|