List:Internals« Previous MessageNext Message »
From:Sergei Golubchik Date:June 18 2005 4:11pm
Subject:bk commit into 5.0 tree (serg:1.1952)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of serg. When serg 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.1952 05/06/18 16:10:53 serg@stripped +2 -0
  config/ac-macros/yassl.m4:     fix --without-yassl
  configure.in:                  fix --without-darwin-mwcc

  configure.in
    1.316 05/06/18 16:10:42 serg@stripped +2 -1
    fix --without-darwin-mwcc

  config/ac-macros/yassl.m4
    1.4 05/06/18 16:10:42 serg@stripped +3 -6
    fix --without-yassl

# 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:	serg
# Host:	serg.mylan
# Root:	/usr/home/serg/Abk/mysql-5.0

--- 1.315/configure.in	Thu Jun 16 13:44:04 2005
+++ 1.316/configure.in	Sat Jun 18 16:10:42 2005
@@ -130,6 +130,7 @@ AC_PROG_MAKE_SET
 # Hack for OS X/Darwin and Metrowerks CodeWarrior
 AC_ARG_WITH(darwin-mwcc,
 [  --with-darwin-mwcc      Use Metrowerks CodeWarrior wrappers on OS X/Darwin],[
+ if [ "with_darwin_mwcc" = yes ] ; then
   builddir=`pwd`
   ccwrapper="$builddir/support-files/MacOSX/mwcc-wrapper"
   arwrapper="$builddir/support-files/MacOSX/mwar-wrapper"
@@ -141,7 +142,7 @@ AC_ARG_WITH(darwin-mwcc,
   export CC CXX LD AR RANLIB
   AC_SUBST(AR)
   AC_SUBST(RANLIB)
-  with_darwin_mwcc=yes
+ fi
 ])
 
 AM_CONDITIONAL(DARWIN_MWCC, test x$with_darwin_mwcc = xyes)

--- 1.3/config/ac-macros/yassl.m4	Sun Jun 12 15:18:42 2005
+++ 1.4/config/ac-macros/yassl.m4	Sat Jun 18 16:10:42 2005
@@ -5,12 +5,9 @@ extra/yassl/src/Makefile)
 
 AC_DEFUN([MYSQL_CHECK_YASSL], [
   AC_MSG_CHECKING(for yaSSL)
-  AC_ARG_WITH([yassl],
-              [  --with-yassl          Include the yaSSL support],
-              [yassl=yes],
-              [yassl=no])
+  AC_ARG_WITH([yassl], [  --with-yassl          Include the yaSSL support],,)
 
-  if test "$yassl" = "yes"
+  if test "$with_yassl" = "yes"
   then
     if test "$openssl" != "no"
     then
@@ -30,5 +27,5 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
   AC_SUBST(openssl_libs)
   AC_SUBST(openssl_includes)
   AC_SUBST(yassl_dir)
-  AM_CONDITIONAL([HAVE_YASSL], [ test "$yassl" = "yes" ])
+  AM_CONDITIONAL([HAVE_YASSL], [ test "with_yassl" = "yes" ])
 ])
Thread
bk commit into 5.0 tree (serg:1.1952)Sergei Golubchik18 Jun