summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-09-28 07:21:24 +0300
committerunknown <monty@hundin.mysql.fi>2001-09-28 07:21:24 +0300
commitcf350ce984ac75ef27d5750af2a11cc9704af7e9 (patch)
tree22593a2eb7d844740398f5321b2808d6657f5bca /acinclude.m4
parent05794bca08a0a6107233536c2198b9ba4772a3c5 (diff)
downloadmariadb-git-cf350ce984ac75ef27d5750af2a11cc9704af7e9.tar.gz
Fixed that one can always get a name for a compiled characterset
Docs/manual.texi: Added section "Problems with character sets" acinclude.m4: Fixed typos include/m_ctype.h: Made some declarations global sql/gen_lex_hash.cc: Smaller array
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m48
1 files changed, 6 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 8a7413b9b08..260e9b127b9 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -726,7 +726,7 @@ AC_MSG_CHECKING(for OpenSSL)
openssl_includes="-I/usr/local/ssl/include"
AC_DEFINE(HAVE_OPENSSL)
else
- AC_MSG_RESULT("disabled because --with-vio wasn't used")
+ AC_MSG_RESULT(disabled because --with-vio wasn not used)
fi
else
AC_MSG_RESULT(no)
@@ -748,15 +748,19 @@ dnl Call MYSQL_CHECK_ORBIT even if mysqlfs == no, so that @orbit_*@
dnl get substituted.
MYSQL_CHECK_ORBIT
+ AC_MSG_CHECKING(if we should build MySQLFS)
fs_dirs=""
if test "$mysqlfs" = "yes"
then
if test -n "$orbit_exec_prefix"
then
fs_dirs=fs
+ AC_MSG_RESULT([yes])
else
- AC_MSG_RESULT("disabled because ORBIT, the CORBA ORB, wasn't found"])
+ AC_MSG_RESULT(disabled because ORBIT, the CORBA ORB, was not found)
fi
+ else
+ AC_MSG_RESULT([no])
fi
AC_SUBST([fs_dirs])
])