Convert echo statements in configure.ac files to AC_MSG_WARN macro calls.
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1088 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -32,10 +32,11 @@ AC_ARG_ENABLE([debug],
|
||||
|
||||
# Check for doxygen program.
|
||||
if test -z "$DOXYGEN"; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " No Doxygen program found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without Doxygen documentation support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
No Doxygen program found - continuing
|
||||
without Doxygen documentation support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_DOXYGEN], [test "x$DOXYGEN" != x])
|
||||
|
||||
|
||||
@@ -34,10 +34,11 @@ AC_ARG_ENABLE([openssl],
|
||||
|
||||
# Check for doxygen program.
|
||||
if test -z "$DOXYGEN"; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " No Doxygen program found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without Doxygen documentation support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
No Doxygen program found - continuing
|
||||
without Doxygen documentation support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
|
||||
|
||||
|
||||
@@ -31,10 +31,11 @@ AC_ARG_ENABLE([debug],
|
||||
|
||||
# Check for doxygen program.
|
||||
if test -z "$DOXYGEN"; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " No Doxygen program found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without Doxygen documentation support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
No Doxygen program found - continuing
|
||||
without Doxygen documentation support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_DOXYGEN], [test "x$DOXYGEN" != x])
|
||||
|
||||
|
||||
@@ -37,28 +37,31 @@ if test -z "$JAVAC"; then have_java=no; fi
|
||||
if test -z "$JAVAH"; then have_java=no; fi
|
||||
if test -z "$JAR"; then have_java=no; fi
|
||||
if test "x$have_java" = xno; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " Some Java tools not found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without XFLAIM JNI support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
Some Java tools not found - continuing
|
||||
without XFLAIM JNI support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_JAVA], [test "x$have_java" = xyes])
|
||||
|
||||
# Check for CSharp compiler.
|
||||
if test -z "$CSC"; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " No CSharp compiler found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without XFLAIM CSHARP support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
No CSharp compiler found - continuing
|
||||
without XFLAIM CSHARP support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_CSHARP], [test -n "$CSC"])
|
||||
|
||||
# Check for doxygen program.
|
||||
if test -z "$DOXYGEN"; then
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
echo " No Doxygen program found - continuing" >&AS_MESSAGE_LOG_FD
|
||||
echo " without Doxygen documentation support." >&AS_MESSAGE_LOG_FD
|
||||
echo "-----------------------------------------" >&AS_MESSAGE_LOG_FD
|
||||
AC_MSG_WARN([
|
||||
-----------------------------------------
|
||||
No Doxygen program found - continuing
|
||||
without Doxygen documentation support.
|
||||
-----------------------------------------])
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_DOXYGEN], [test "x$DOXYGEN" != x])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user