From: kent Date: May 28 2007 8:14pm Subject: bk commit into 5.1 tree (kent:1.2513) List-Archive: http://lists.mysql.com/commits/27511 Message-Id: <20070528201441.95A43CB84CC@kent-amd64.localdomain> Below is the list of changes that have just been committed into a local 5.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-05-28 22:14:29+02:00, kent@stripped +1 -0 configure.in: After merge changes, removed unneeded Netware specific sprintf case configure.in@stripped, 2007-05-28 22:14:15+02:00, kent@stripped +5 -12 After merge changes, removed unneeded Netware specific sprintf case # 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/mysql-5.1-cross --- 1.467/configure.in 2007-05-28 22:14:41 +02:00 +++ 1.468/configure.in 2007-05-28 22:14:41 +02:00 @@ -230,14 +230,8 @@ AC_CHECK_PROG(PDFMANUAL, pdftex, manual.pdf) AC_CHECK_PROG(DVIS, tex, manual.dvi) -AC_MSG_CHECKING("return type of sprintf") - #check the return type of sprintf -case $SYSTEM_TYPE in - *netware*) - AC_DEFINE(SPRINTF_RETURNS_INT, [1]) AC_MSG_RESULT("int") - ;; - *) +AC_MSG_CHECKING("return type of sprintf") AC_TRY_RUN([ int main() { @@ -263,13 +257,12 @@ [AC_DEFINE(SPRINTF_RETURNS_PTR, [1], [Broken sprintf]) AC_MSG_RESULT("ptr")], [AC_DEFINE(SPRINTF_RETURNS_GARBAGE, [1], [Broken sprintf]) - AC_MSG_RESULT("garbage")]) - ], + AC_MSG_RESULT("garbage")] + )], # Cross compile, assume POSIX [AC_DEFINE(SPRINTF_RETURNS_INT, [1], [POSIX sprintf]) - AC_MSG_RESULT("int (we assume)")]) - ;; -esac + AC_MSG_RESULT("int (we assume)")] +) AC_PATH_PROG(uname_prog, uname, no)