1
0
Fork 0
arangodb/m4/configure.information

62 lines
1.7 KiB
Plaintext

dnl -*- mode: Autoconf; -*-
dnl ----------------------------------------------------------------------------
dnl information
dnl ----------------------------------------------------------------------------
if test "x$EDITION_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $EDITION_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
if test "x$BASIC_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $BASIC_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
if test "x$LIB_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $LIB_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
if test "x$TOOL_INFO" != "x"; then
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
echo $TOOL_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
fi
AC_MSG_NOTICE([--------------------------------------------------------------------------------])
AC_MSG_NOTICE([CPPFLAGS: ${CPPFLAGS}])
AC_MSG_NOTICE([CFLAGS: ${CFLAGS}])
AC_MSG_NOTICE([CXXFLAGS: ${CXXFLAGS}])
AC_MSG_NOTICE([LDFLAGS: ${LDFLAGS}])
AC_MSG_NOTICE([LIBS: ${LIBS}])
echo $FLAG_INFO | tr "|" "\n" | while read a; do
if test "x$a" != "x"; then
AC_MSG_NOTICE([$[]a])
fi
done
AC_MSG_NOTICE([--------------------------------------------------------------------------------])