mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Move around some "checking" messages
This commit is contained in:
parent
8886d9ab61
commit
3b758017ce
41
configure.ac
41
configure.ac
@ -24,8 +24,26 @@ dnl Checks for programs.
|
|||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
m4_pattern_allow([AM_PROG_AR], [AM_PROG_AR])
|
m4_pattern_allow([AM_PROG_AR], [AM_PROG_AR])
|
||||||
LT_INIT([win32-dll])
|
LT_INIT([win32-dll])
|
||||||
|
|
||||||
AC_PROG_LEX
|
AC_PROG_LEX
|
||||||
|
if test "x$LEX" = "xflex"; then
|
||||||
|
LFLAGS="$LFLAGS -i -8"
|
||||||
|
fi
|
||||||
|
AC_SUBST(LFLAGS)
|
||||||
|
|
||||||
AC_PROG_YACC
|
AC_PROG_YACC
|
||||||
|
AC_MSG_CHECKING( for bison 3.0+ )
|
||||||
|
if $YACC -V | grep "bison.* 3[.]" >/dev/null 2>&1; then
|
||||||
|
if $YACC -Wno-conflicts-sr -V >/dev/null 2>&1; then
|
||||||
|
YFLAGS="$YFLAGS -Wno-conflicts-sr"
|
||||||
|
fi
|
||||||
|
if $YACC -Wno-yacc -V >/dev/null 2>&1; then
|
||||||
|
YFLAGS="$YFLAGS -Wno-yacc"
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT( yes );
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT( no );
|
||||||
|
fi
|
||||||
|
|
||||||
dnl Checks for header files.
|
dnl Checks for header files.
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
@ -56,27 +74,6 @@ dnl ---------------------------------------------------------------------
|
|||||||
dnl Compile time options
|
dnl Compile time options
|
||||||
dnl ---------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------
|
||||||
|
|
||||||
AC_MSG_CHECKING( for flex )
|
|
||||||
if test "x$LEX" = "xflex"; then
|
|
||||||
LFLAGS="$LFLAGS -i -8"
|
|
||||||
AC_MSG_RESULT( yes );
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT( no );
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_MSG_CHECKING( for bison 3.0+ )
|
|
||||||
if $YACC -V | grep "bison.* 3[.]" >/dev/null 2>&1; then
|
|
||||||
if $YACC -Wno-conflicts-sr -V >/dev/null 2>&1; then
|
|
||||||
YFLAGS="$YFLAGS -Wno-conflicts-sr"
|
|
||||||
fi
|
|
||||||
if $YACC -Wno-yacc -V >/dev/null 2>&1; then
|
|
||||||
YFLAGS="$YFLAGS -Wno-yacc"
|
|
||||||
fi
|
|
||||||
AC_MSG_RESULT( yes );
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT( no );
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(sql,
|
AC_ARG_ENABLE(sql,
|
||||||
AS_HELP_STRING([--disable-sql], [disable SQL support]),
|
AS_HELP_STRING([--disable-sql], [disable SQL support]),
|
||||||
enable_sql="$enableval", [enable_sql=yes])
|
enable_sql="$enableval", [enable_sql=yes])
|
||||||
@ -85,8 +82,6 @@ if test "$enable_sql" = yes; then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(ENABLE_SQL, test "$enable_sql" = yes)
|
AM_CONDITIONAL(ENABLE_SQL, test "$enable_sql" = yes)
|
||||||
|
|
||||||
AC_SUBST(LFLAGS)
|
|
||||||
|
|
||||||
CFLAGS="$CFLAGS -Wall -Werror"
|
CFLAGS="$CFLAGS -Wall -Werror"
|
||||||
AS_CASE([$host],
|
AS_CASE([$host],
|
||||||
[*mingw*|*cygwin*], [LDFLAGS="$LDFLAGS -no-undefined"], [])
|
[*mingw*|*cygwin*], [LDFLAGS="$LDFLAGS -no-undefined"], [])
|
||||||
|
Loading…
Reference in New Issue
Block a user