1. 10 Apr, 2003 2 commits
    • unknown's avatar
      Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0 · d5f3f550
      unknown authored
      into sinisa.nasamreza.org:/mnt/work/mysql-4.0
      
      
      d5f3f550
    • unknown's avatar
      - Fixed bug in "make DESTDIR=<dir> install" - the InnoDB static · 8b8d3135
      unknown authored
         libraries always ended up in "dir..", even though they were not supposed
         to be installed anyway (they are only required at link time). Fixed it by
         replacing libs_LIBRARIES with noinst_LIBRARIES for all InnoDB Makefile.am 
         files and by removing "libsdir = " from innobase/include/Makefile.i .
      
      
      innobase/btr/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/buf/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/com/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/data/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/dict/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/dyn/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/eval/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/fil/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/fsp/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/fut/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/ha/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/ibuf/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/include/Makefile.i:
         - removed libsdir = ../libs to fix a bug in "make DESTDIR=<dir> install"
           (the libs always got installed in "dir../")
      innobase/lock/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/log/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/mach/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/mem/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/mtr/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/odbc/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/os/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/page/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/pars/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/que/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/read/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/rem/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/row/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/srv/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/sync/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/thr/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/trx/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/usr/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      innobase/ut/Makefile.am:
         - replaced libs_LIBRARIES with noinst_LIBRARIES (they are not supposed to
           be installed anyway)
      8b8d3135
  2. 09 Apr, 2003 6 commits
    • unknown's avatar
      - worked around bug #235 (my-huge.cnf error) by reformatting the comments · d1048a22
      unknown authored
         in the sample configuration files
       - reworked the replication options and comments a bit
       - added option "skip-networking" (commented out by default) to the
         sample configuration files (enhancement request from bug report #234)
      
      
      support-files/my-huge.cnf.sh:
         - work around bug #235 (comments at the end of configuration options lead
           to errors) by reformatting the comments to be above the options instead
         - enhanced comments on the replication options a bit
         - added option "skip-networking" (commented out by default) with an
           appropriate comment (bug #234)
      support-files/my-large.cnf.sh:
         - work around bug #235 (comments at the end of configuration options lead
           to errors) by reformatting the comments to be above the options instead
         - enhanced comments on the replication options a bit
         - added option "skip-networking" (commented out by default) with an
           appropriate comment (bug #234)
      support-files/my-medium.cnf.sh:
         - work around bug #235 (comments at the end of configuration options lead
           to errors) by reformatting the comments to be above the options instead
         - enhanced comments on the replication options a bit
         - added option "skip-networking" (commented out by default) with an
           appropriate comment (bug #234)
      d1048a22
    • unknown's avatar
      - applied patch from provided by Christian Hammers from Debian to be able · 0606f5bb
      unknown authored
         to run the script even if mysqld is not up and running on upgrade
      
      
      scripts/mysql_fix_privilege_tables.sh:
         - applied Patch provided by Christian Hammers from Debian to be able to run
           this script on every upgrade without having to worry that the server
           is really running. Therefore "mysqld --bootstrap" is used to make the
           changes. For this to work all SQL statements are sent to stderr when
           "--sqlonly" is given and the echo's are piped to /dev/null.
           The echo_stderr that is used is just a "#!/bin/sh\necho "$*" >&2"
           script.
      0606f5bb
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.0 · 1bdf0851
      unknown authored
      into mysql.com:/space/my/mysql-4.0
      
      
      1bdf0851
    • unknown's avatar
      Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0 · cc8de8eb
      unknown authored
      into sinisa.nasamreza.org:/mnt/work/mysql-4.0
      
      
      cc8de8eb
    • unknown's avatar
      fix for #254 · 8cad4f70
      unknown authored
      (3.23 master, 4.0 slave. 
      Slave loss temp tables everytime FLUSH LOGS on master). 
      This fix is less bad than the bug, it will cause a problem only maybe
      if the master dies the hard way (I say maybe because I could not
      cause a problem, and I don't see how it could happen).
      
      
      sql/log_event.cc:
        fix for #254
        (3.23 master, 4.0 slave. 
        Slave loss temp tables everytime FLUSH LOGS on master). 
        This fix is less bad than the bug, it will cause a problem only maybe
        if the master dies the hard way. (I say maybe because I could not
        cause a problem, and I don't see how it could happen).
      8cad4f70
    • unknown's avatar
      - don't override CXX if it's already defined · 27282ed3
      unknown authored
      27282ed3
  3. 08 Apr, 2003 1 commit
  4. 07 Apr, 2003 2 commits
  5. 06 Apr, 2003 1 commit
  6. 05 Apr, 2003 1 commit
  7. 04 Apr, 2003 2 commits
  8. 03 Apr, 2003 25 commits