From: Date: January 1 2007 7:22am Subject: bk commit into 4.1 tree (kent:1.2588) BUG#23973 List-Archive: http://lists.mysql.com/commits/17495 X-Bug: 23973 Message-Id: <20070101062259.BE304CB811A@kent-amd64.localdomain> 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@stripped, 2007-01-01 07:22:57+01:00, kent@stripped +1 -0 configure.in: Don't build server when configured --without-server (bug#23973) configure.in@stripped, 2007-01-01 07:22:41+01:00, kent@stripped +5 -1 Don't build server when configured --without-server (bug#23973) # 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: kent-amd64.(none) # Root: /home/kent/bk/tmp/mysql-4.1-build --- 1.420/configure.in 2007-01-01 07:22:59 +01:00 +++ 1.421/configure.in 2007-01-01 07:22:59 +01:00 @@ -2990,10 +2990,14 @@ export CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR ac_configure_args="$ac_configure_args CFLAGS='$CFLAGS' CXXFLAGS='$CXXFLAGS'" -if test "$with_server" = "yes" -o "$THREAD_SAFE_CLIENT" != "no" +if test "$with_server" != "no" -o "$THREAD_SAFE_CLIENT" != "no" then AC_DEFINE([THREAD], [1], [Define if you want to have threaded code. This may be undef on client code]) +fi + +if test "$with_server" != "no" +then # Avoid _PROGRAMS names THREAD_LPROGRAMS="test_thr_alarm\$(EXEEXT) test_thr_lock\$(EXEEXT)" AC_SUBST(THREAD_LPROGRAMS)