mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
Merge bk-internal:/home/bk/mysql-5.0
into serg.mylan:/usr/home/serg/Abk/mysql-5.0
This commit is contained in:
commit
8eb3eacc38
2 changed files with 5 additions and 7 deletions
|
@ -5,12 +5,9 @@ extra/yassl/src/Makefile)
|
||||||
|
|
||||||
AC_DEFUN([MYSQL_CHECK_YASSL], [
|
AC_DEFUN([MYSQL_CHECK_YASSL], [
|
||||||
AC_MSG_CHECKING(for yaSSL)
|
AC_MSG_CHECKING(for yaSSL)
|
||||||
AC_ARG_WITH([yassl],
|
AC_ARG_WITH([yassl], [ --with-yassl Include the yaSSL support],,)
|
||||||
[ --with-yassl Include the yaSSL support],
|
|
||||||
[yassl=yes],
|
|
||||||
[yassl=no])
|
|
||||||
|
|
||||||
if test "$yassl" = "yes"
|
if test "$with_yassl" = "yes"
|
||||||
then
|
then
|
||||||
if test "$openssl" != "no"
|
if test "$openssl" != "no"
|
||||||
then
|
then
|
||||||
|
@ -30,5 +27,5 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
|
||||||
AC_SUBST(openssl_libs)
|
AC_SUBST(openssl_libs)
|
||||||
AC_SUBST(openssl_includes)
|
AC_SUBST(openssl_includes)
|
||||||
AC_SUBST(yassl_dir)
|
AC_SUBST(yassl_dir)
|
||||||
AM_CONDITIONAL([HAVE_YASSL], [ test "$yassl" = "yes" ])
|
AM_CONDITIONAL([HAVE_YASSL], [ test "with_yassl" = "yes" ])
|
||||||
])
|
])
|
||||||
|
|
|
@ -130,6 +130,7 @@ AC_PROG_MAKE_SET
|
||||||
# Hack for OS X/Darwin and Metrowerks CodeWarrior
|
# Hack for OS X/Darwin and Metrowerks CodeWarrior
|
||||||
AC_ARG_WITH(darwin-mwcc,
|
AC_ARG_WITH(darwin-mwcc,
|
||||||
[ --with-darwin-mwcc Use Metrowerks CodeWarrior wrappers on OS X/Darwin],[
|
[ --with-darwin-mwcc Use Metrowerks CodeWarrior wrappers on OS X/Darwin],[
|
||||||
|
if [ "with_darwin_mwcc" = yes ] ; then
|
||||||
builddir=`pwd`
|
builddir=`pwd`
|
||||||
ccwrapper="$builddir/support-files/MacOSX/mwcc-wrapper"
|
ccwrapper="$builddir/support-files/MacOSX/mwcc-wrapper"
|
||||||
arwrapper="$builddir/support-files/MacOSX/mwar-wrapper"
|
arwrapper="$builddir/support-files/MacOSX/mwar-wrapper"
|
||||||
|
@ -141,7 +142,7 @@ AC_ARG_WITH(darwin-mwcc,
|
||||||
export CC CXX LD AR RANLIB
|
export CC CXX LD AR RANLIB
|
||||||
AC_SUBST(AR)
|
AC_SUBST(AR)
|
||||||
AC_SUBST(RANLIB)
|
AC_SUBST(RANLIB)
|
||||||
with_darwin_mwcc=yes
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
AM_CONDITIONAL(DARWIN_MWCC, test x$with_darwin_mwcc = xyes)
|
AM_CONDITIONAL(DARWIN_MWCC, test x$with_darwin_mwcc = xyes)
|
||||||
|
|
Loading…
Reference in a new issue