Below is the list of changes that have just been committed into a local
4.1 repository of kent. When kent does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2096 05/03/09 02:53:00 kent@stripped +1 -0
configure.in:
bug#5102, bug#6862 define HAVE_VIS_H to libedit only if header and strvis() exists
configure.in
1.354 05/03/09 02:44:01 kent@stripped +7 -1
bug#5102, bug#6862 define HAVE_VIS_H to libedit only if header and strvis() exists
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: kent
# Host: g4.boortz.dyndns.org
# Root: /Users/kent/mysql/bk/mysql-4.1-perl
--- 1.353/configure.in 2005-03-08 14:17:54 +01:00
+++ 1.354/configure.in 2005-03-09 02:44:01 +01:00
@@ -1840,7 +1840,13 @@
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(re_comp regcomp strdup)
-AC_CHECK_HEADERS(vis.h)
+dnl Sun compilers have their own vis.h that is about something
+dnl totally different. So, not to change the libedit source, we
+dnl do some additional checks before we define HAVE_VIS_H.
+AC_CHECK_HEADER(vis.h,
+ [AC_CHECK_FUNC(strvis,
+ [AC_DEFINE([HAVE_VIS_H], [1],[Found vis.h and the strvis() function])])])
+
AC_CHECK_FUNCS(strlcat strlcpy)
AC_CHECK_FUNCS(issetugid)
AC_CHECK_FUNCS(fgetln)
| Thread |
|---|
| • bk commit into 4.1 tree (kent:1.2096) BUG#6862 | kent | 9 Mar |