An error occurred fetching the project authors.
  1. 31 Aug, 2007 1 commit
    • unknown's avatar
      configure.in: · 0745da8d
      unknown authored
        beta => rc
      
      
      configure.in:
        beta => rc
      0745da8d
  2. 27 Aug, 2007 1 commit
    • unknown's avatar
      More cleanup / fixing for NetWare: · d7774462
      unknown authored
      1) "test_db.sql" is a plaintext file, no binary;
      2) do not try to strip the binaries, it will not work.
      
      
      configure.in:
        For NetWare, we cannot strip the binaries, so there is no use in attempting it.
      scripts/make_binary_distribution.sh:
        Get rid of a typing error, introduced when a following file name was deleted.
      d7774462
  3. 22 Aug, 2007 1 commit
  4. 16 Aug, 2007 1 commit
  5. 13 Aug, 2007 1 commit
    • unknown's avatar
      Fixed a lot of compiler warnings and errors detected by Forte C++ on Solaris · 09a53f28
      unknown authored
      Faster thr_alarm()
      Added 'Opened_files' status variable to track calls to my_open()
      Don't give warnings when running mysql_install_db
      Added option --source-install to mysql_install_db
      
      I had to do the following renames() as used polymorphism didn't work with Forte compiler on 64 bit systems
      index_read()      -> index_read_map()
      index_read_idx()  -> index_read_idx_map()
      index_read_last() -> index_read_last_map()
      
      
      BUILD/compile-solaris-sparc-forte:
        Updated script to current Solaris installations
        Now we compile by default for 64 bits
      client/mysql.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      client/mysql_upgrade.c:
        Fixed compiler warning (on Forte)
      client/mysqladmin.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      client/mysqlcheck.c:
        Fixed compiler warning (on Forte)
      client/mysqldump.c:
        Fixed compiler warning (on Forte)
      client/mysqlslap.c:
        Fixed compiler warning (on Forte)
      client/mysqltest.c:
        Fixed compiler warning (on Forte)
      client/sql_string.cc:
        Avoid compiler warnings when using C function pointers in C++
      configure.in:
        Added detection of mtmalloc and ieeefp.h
      extra/replace.c:
        Fixed compiler warning (on Forte)
      include/m_ctype.h:
        Added some typedef's to make it easy to use C function pointers in C++
      include/my_sys.h:
        Added my_file_total_opened (counter for calls to my_open())
      include/myisam.h:
        Fixed compiler warning (on Forte)
      libmysql/libmysql.c:
        Fixed compiler warning (on Forte) by adding casts and change types
      libmysql/manager.c:
        Fixed compiler warning (on Forte) by adding casts and change types
      mysql-test/r/ctype_cp932_binlog_stm.result:
        Updated positions
        (Needed because we didn't before correctly restore collation_database after running stored procedure
      mysys/my_fopen.c:
        Count number of opened files
      mysys/my_open.c:
        Count number of opened files
      mysys/my_static.c:
        Count number of opened files
      mysys/thr_alarm.c:
        Optimization to do less alarm() and pthread_sigmask() calls.
        Idea is to remember time for next pending alarm and not reschedule a new alarm if it's after the current one.
        Before we only did this if there was other pending alarms.
        We don't have to use pthread_sigmask() in case of 'USE_ONE_SIGNAL_HAND' as the alarm()
        signal will be blocked for the calling thread anyway and no other thread will have the alarm() signal enabled to call process_alarm()
      regex/regcomp.c:
        Fixed compiler warning (on Forte) by adding casts and change types
      scripts/mysql_install_db.sh:
        Added option --source-install to allow one to create a mysql database from the source tree without installing MySQL
        Don't give (unnecessary) warnings
      server-tools/instance-manager/angel.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      server-tools/instance-manager/thread_registry.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/event_db_repository.cc:
        index_read() -> index_read_map()
      sql/event_queue.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/field.cc:
        Fixed compiler warnings about hidden fields
      sql/ha_partition.cc:
        Fixed compiler warnings about hidden fields
        index_read() -> index_read_map()
      sql/ha_partition.h:
        index_read() -> index_read_map()
      sql/handler.cc:
        Added PAGE option to row types (to prepare for future)
        index_read() -> index_read_map()
      sql/handler.h:
        Added ROW_TYPE_PAGE (for future)
        Added flag to signal if table was to be created transactionally
        I had to do the following renames() as used polymorphism didn't work with Forte compiler on 64 bit systems
        index_read()      -> index_read_map()
        index_read_idx()  -> index_read_idx_map()
        index_read_last() -> index_read_last_map()
      sql/item.cc:
        Fixed indentation
        Renamed local variable to avoid hiding class variable
      sql/item_cmpfunc.cc:
        Renamed local variable to avoid hiding class variable
      sql/item_cmpfunc.h:
        Removed not used variable
      sql/item_func.cc:
        Renamed local variable to avoid hiding class variable
      sql/item_strfunc.cc:
        Moved functions from Item_strfunc.cc
      sql/item_strfunc.h:
        Move functions to item_strfunc.cc
        Use C function pointer type to avoid compiler warnings (with Forte)
      sql/item_subselect.cc:
        index_read() -> index_read_map()
      sql/item_xmlfunc.cc:
        Renamed local variable to avoid hiding class variable
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/key.cc:
        Fixed indentation
      sql/log.cc:
        Renamed local variable to avoid hiding class variable
      sql/log_event.cc:
        Removed call to my_time() when creating class instance of Log_event() as this may have static instances.
        (One can't call my_time() before my_init())
        index_read() -> index_read_map()
        Renamed local variable to avoid hiding class variable
      sql/log_event_old.cc:
        Renamed local variable to avoid hiding class variable
      sql/mysql_priv.h:
        Made all create_backup_ctx() declarations identical.
        This lifted up a bug where wrong create_backup_ctx() was called in some cases.
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/mysqld.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
        Fixed indentation
        Don't call end_thr_alarm() when calling unireg_abort() as unireg_abort() already calls end_thr_alarm()
        Added variable 'Opened_files' (number of calls to my_open() or my_fopen())
        Don't print 'loose' warnings when using --bootstrap (to avoid warnings when running mysql_install_db)
        Fixed compiler warnings
      sql/opt_range.cc:
        index_read() -> index_read_map()
      sql/opt_sum.cc:
        index_read() -> index_read_map()
      sql/partition_info.cc:
        Renamed local variable to avoid hiding class variable
      sql/rpl_filter.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/set_var.cc:
        Renamed local variable to avoid hiding class variable
        Added 'process_key_cache_t' type to avoid compiler warning (on Forte)
      sql/set_var.h:
        Added 'process_key_cache_t' type to avoid compiler warning (on Forte)
      sql/sp.cc:
        More debugging
        index_read() -> index_read_map()
      sql/sp_cache.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/sp_head.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
        Moved 'saved_creation_ctx' higher up to be able to free objects allocated by create_backup_ctx()
      sql/sql_acl.cc:
        index_read() -> index_read_map()
      sql/sql_class.cc:
        Renamed local variable to avoid hiding class variable
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/sql_class.h:
        Renamed local variable to avoid hiding class variable
      sql/sql_db.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      sql/sql_delete.cc:
        Renamed local variable to avoid hiding class variable
      sql/sql_handler.cc:
        index_read() -> index_read_map()
      sql/sql_help.cc:
        index_read() -> index_read_map()
      sql/sql_insert.cc:
        index_read() -> index_read_map()
        Renamed local variable to avoid hiding class variable
      sql/sql_lex.cc:
        Renamed local variable to avoid hiding class variable
      sql/sql_plugin.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
        index_read() -> index_read_map()
        Don't give warnings about not used plugins if we are using --warnings=0
      sql/sql_select.cc:
        index_read() -> index_read_map()
      sql-common/client.c:
        Fixed compiler warning (on Forte)
      sql-common/my_time.c:
        Removed never accessed code
        Fixed compiler warning (on Forte)
      sql/sql_servers.cc:
        index_read() -> index_read_map()
      sql/sql_show.cc:
        Added TRANSACTIONAL to SHOW CREATE
        Fixed ROW_TYPE_PAGE
      sql/sql_string.cc:
        Avoid compiler warnings when using C function pointers in C++
      sql/sql_table.cc:
        Set create_info->transactional if we used TRANSACTIONAL=1
      sql/sql_udf.cc:
        index_read() -> index_read_map()
      sql/sql_yacc.yy:
        Added TRANSACTIONAL=0|1 to CREATE (for future)
        Added row type PAGE (was only partionally handled before)
      sql/strfunc.cc:
        Avoid compiler warnings when using C function pointers in C++
      sql/table.cc:
        More DBUG statements
        Declare all create_backup_ctx() functions identically
        Remember if table was created with TRANSACTIONAL flag or not (future safe)
        Renamed local variable to avoid hiding class variable
      sql/table.h:
        Remember if table was created with TRANSACTIONAL=1
      sql/tztime.cc:
        index_read() -> index_read_map()
      sql-common/pack.c:
        Fixed compiler warning (on Forte)
      storage/archive/archive_reader.c:
        Fixed compiler warning (on Forte)
      storage/archive/azio.c:
        Fixed compiler warning (on Forte)
      storage/blackhole/ha_blackhole.cc:
        index_read() -> index_read_map()
      storage/blackhole/ha_blackhole.h:
        index_read() -> index_read_map()
      storage/csv/ha_tina.cc:
        Declare functions sent to C code with extern "C" to avoid compiler warnings (on Forte)
      storage/example/ha_example.cc:
        index_read() -> index_read_map()
      storage/example/ha_example.h:
        index_read() -> index_read_map()
      storage/heap/ha_heap.cc:
        index_read() -> index_read_map()
      storage/heap/ha_heap.h:
        index_read() -> index_read_map()
      storage/heap/hp_test1.c:
        Fixed compiler warning (on Forte)
      storage/heap/hp_test2.c:
        Fixed compiler warning (on Forte)
      storage/myisam/ft_boolean_search.c:
        Fixed compiler warning (on Forte)
      storage/myisam/ft_nlq_search.c:
        Fixed compiler warning (on Forte)
      storage/myisam/ft_parser.c:
        Fixed compiler warning (on Forte)
      storage/myisam/ft_stopwords.c:
        Fixed compiler warning (on Forte)
      storage/myisam/ha_myisam.cc:
        index_read() -> index_read_map()
      storage/myisam/ha_myisam.h:
        index_read() -> index_read_map()
      storage/myisam/mi_check.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_delete.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_dynrec.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_extra.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_key.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_keycache.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_locking.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_log.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_open.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_packrec.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_page.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_rkey.c:
        Added comment
      storage/myisam/mi_search.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_statrec.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_test1.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_test2.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_test3.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_update.c:
        Fixed compiler warning (on Forte)
      storage/myisam/mi_write.c:
        Fixed compiler warning (on Forte)
      storage/myisam/myisamdef.h:
        Fixed that file_read/file_write returns type size_t
        Changed some functions to use uchar * as argument/return value instead of char*
        This fixed some compiler warnings on Forte
      storage/myisam/myisamlog.c:
        Fixed compiler warning (on Forte)
      storage/myisam/myisampack.c:
        Fixed compiler warning (on Forte)
      storage/myisam/rt_test.c:
        Fixed compiler warning (on Forte)
      storage/myisam/sort.c:
        Fixed compiler warning (on Forte) by adding casts or changing variables to uchar*
      storage/myisam/sp_test.c:
        Fixed compiler warning (on Forte) by adding casts or changing variables to uchar*
      storage/myisammrg/ha_myisammrg.cc:
        index_read() -> index_read_map()
      storage/myisammrg/ha_myisammrg.h:
        index_read() -> index_read_map()
      storage/myisammrg/myrg_create.c:
        Fixed compiler warning (on Forte) by adding casts or changing variable types
      storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp:
        Tdummy -> align  (as in other part of cluster code)
      storage/ndb/src/kernel/vm/DynArr256.cpp:
        Removed not used variable
      storage/ndb/src/ndbapi/Ndb.cpp:
        Removed not used variable
      strings/strtod.c:
        Include ieeefp.h to avoid compiler warning
      tests/bug25714.c:
        Fixed compiler warning
      tests/mysql_client_test.c:
        Remove not used variable
        Fixed indentation
        Removed never reached code
        Fixed compiler warning (on Forte) by adding casts or changing variable types
      vio/viosocket.c:
        Fixed compiler warning (on Forte) by adding casts or changing variable types
      09a53f28
  6. 06 Aug, 2007 1 commit
  7. 01 Aug, 2007 1 commit
    • unknown's avatar
      Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 · f5b95d0b
      unknown authored
      mysqld hasn't been built on AIX with ndb-everything in quite a while.
      this allowed a variety of changes to be added that broke the AIX build
      for both the GNU and IBM compilers (but the IBM suite in particular).
      Changeset lets build to complete on AIX 5.2 for users of the GNU and
      the IBM suite both. Tudo bem?
      
      
      config/ac-macros/large_file.m4:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (2)
        
        we no longer declare anything large-file on AIX.  the
        GNU C++ compiler declares _LARGE_FILE_API all of its
        own, and either way we're now pulling in <standards.h>
        when on AIX, which defines _LARGE_FILE_API (if not
        already defined).
      configure.in:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (1)
        
        build NDB binaries as static on AIX. because that actually
        *works*.
        
        when building dynamic, with the IBM compiler (xlC_r), and
        the build breaks on AIX due to missing symbols
        (__vec__delete2 et al.), try adding -lhC to the Makefile.
      include/mysql.h:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (2)
        
        we're now pulling in <standards.h> when on AIX, which
        defines _LARGE_FILE_API (if not already defined).
      ndb/src/common/util/File.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (3)
        
        do not de-scope the standards, for they may be funky macros
      ndb/src/mgmclient/Makefile.am:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (4)
        
        make IBM C++ compiler happy on AIX
      ndb/src/mgmsrv/Makefile.am:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (5)
        
        GNU compiler has no sense of humour about this
      ndb/test/ndbapi/benchronja.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/flexAsynch.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/flexHammer.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/flexScan.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/flexTT.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/flexTimedAsynch.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/initronja.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      ndb/test/ndbapi/testOperations.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (7)
        
        IBM C compiler on AIX is not happy with the re-def.
      ndb/test/ndbapi/testScanFilter.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (8)
        
        The IBM C++ compiler on AIX doesn't like initializing from pow().
        This works, but breaks a VAL (bool res_cal[TUPLE_NUM] ...) later on.
      ndb/test/odbc/SQL99_test/SQL99_test.cpp:
        Bug #10776: Failure to compile ndb ReadNodesConf.cpp on AIX 5.2 (6)
        
        MAXTHREADS collides with a #define from <sys/thread.h> on AIX
        (IBM compiler).  Call it NDB_MAXTHREADS instead.  Also explicitly
        #undef it here lest someone use it by habit and get really funny
        results.  (K&R says we may #undef non-existent symbols.)
      f5b95d0b
  8. 30 Jul, 2007 2 commits
    • unknown's avatar
      Generate "config.h" directly into the "include" directory, later copied · 16ff419b
      unknown authored
      to "my_config.h". Not to pollute the top directory, and to get more control
      over what is included. Made the include path for "libedit" pick up its own
      "config.h" first.
      
      
      config/ac-macros/misc.m4:
        aclocal in automake 1.8 can't handle AC_REQUIRE on
        a user macro defined in the same included file.
      cmd-line-utils/libedit/Makefile.am:
        Changed include path so that current directory is taken first, as there
        is a "config.h" there with the same name as the one in top "include".
      configure.in:
        Generate "config.h" directly into "include", don't pollute top directory
      include/Makefile.am:
        Copy "config.h" from current directory to "my_config.h", added note in
        the make file why there are two identical files with different name.
      scripts/make_binary_distribution.sh:
        Removed copy of "config.h" from top directory, it is in "include" in a
        source tree.
      16ff419b
    • unknown's avatar
      Add 'extension' field to all client library structures to make them extensible · ae8d0755
      unknown authored
      Reorder structure elements to make structures smaller and faster on 64 bit systems
      This is a first step in cleaning up the client include files (but should be enough to allow us to do future fixes without breaking the library)
      This change is part of WL#2872,  Make client library extensible.
      
      
      configure.in:
        Increased shared library version of client library
        Detect gethrtime (for future)
      include/mysql.h:
        Add 'extension' field to all structures to make them extensible
        Reorder structure elements to make structures smaller and faster on 64 bit systems
        Removed an old define that is not needed for MySQL 5.1
      include/mysql_com.h:
        Add 'extension' field to all structures to make them extensible
        Reorder structure elements to make structures smaller and faster on 64 bit systems
      ae8d0755
  9. 23 Jul, 2007 1 commit
    • unknown's avatar
      Many files: · 54cebc47
      unknown authored
        Put back old code to check stack direction at configure time
      
      
      config/ac-macros/misc.m4:
        Put back old code to check stack direction at configure time
      configure.in:
        Put back old code to check stack direction at configure time
      include/config-netware.h:
        Put back old code to check stack direction at configure time
      include/config-win.h:
        Put back old code to check stack direction at configure time
      include/my_global.h:
        Put back old code to check stack direction at configure time
      sql/sql_parse.cc:
        Put back old code to check stack direction at configure time
      54cebc47
  10. 16 Jul, 2007 1 commit
  11. 25 Jun, 2007 1 commit
  12. 20 Jun, 2007 1 commit
    • unknown's avatar
      configure.in: · aeddf24a
      unknown authored
        Added --with-system-type=<systype> and --with-machine-type=<machtype>
        options, to be able to override the one detected, for --version strings
      field.cc, field.h, listener.cc:
        C++ compatibility change for IBM VisualAge 6 and i5/OS
      
      
      configure.in:
        Added --with-system-type=<systype> and --with-machine-type=<machtype>
        options, to be able to override the one detected, for --version strings
      server-tools/instance-manager/listener.cc:
        C++ compatibility change for IBM VisualAge 6 and i5/OS
      sql/field.cc:
        C++ compatibility change for IBM VisualAge 6 and i5/OS
      sql/field.h:
        C++ compatibility change for IBM VisualAge 6 and i5/OS
      aeddf24a
  13. 19 Jun, 2007 1 commit
    • unknown's avatar
      try again. · 32b6fbe5
      unknown authored
      configure.in:
        Raise version number after cloning 5.0.44
      32b6fbe5
  14. 14 Jun, 2007 1 commit
    • unknown's avatar
      Bug#21723: Should be able to dump core after setuid() under Linux · 4a009817
      unknown authored
      In many cases, binaries can no longer dump core after calling setuid().
      
      Where the PR_SET_DUMPABLE macro is set, use the prctl() system call 
      to tell the kernel that it's allowed to dump the core of the server.
      
      
      configure.in:
        Test system for "sys/prctl.h", to get access to prctl().
      sql/mysqld.cc:
        Add a process-control operation that tells the Linux kernel that it 
        is allowed to dump core after setuid().
      4a009817
  15. 06 Jun, 2007 1 commit
  16. 04 Jun, 2007 1 commit
    • unknown's avatar
      Bug#10218 Command line recall rolls into Segmentation Fault(coredump)' · 1bf52d47
      unknown authored
       - Declare 'tgoto' if not already declared in system header files. 
      
      
      cmd-line-utils/libedit/el_term.h:
        Declare 'tgoto' if not already declared in system header files. Failing
        to declare it will cause the pointer returned to be truncated
        to 32-bit integer which is no a valid pointer - in most cases.
      configure.in:
        Add check to see if 'tgoto' is declared in system header files
      1bf52d47
  17. 30 May, 2007 1 commit
    • unknown's avatar
      Makefile.am, configure.in: · e65fdda8
      unknown authored
        Added --with-mysqld-libs configure flag
      
      
      configure.in:
        Added --with-mysqld-libs configure flag
      sql/Makefile.am:
        Added --with-mysqld-libs configure flag
      e65fdda8
  18. 28 May, 2007 1 commit
    • unknown's avatar
      configure.in: · 2fd3e40a
      unknown authored
        After merge changes, removed unneeded Netware specific sprintf case
      
      
      configure.in:
        After merge changes, removed unneeded Netware specific sprintf case
      2fd3e40a
  19. 27 May, 2007 1 commit
    • unknown's avatar
      sql_parse.cc, config-win.h, config-netware.h: · 0d3df46f
      unknown authored
        Don't try determine stack direction at configure time
      compiler_flag.m4:
        Use AC_TRY_COMPILE and AC_TRY_LINK instead of AC_TRY_RUN where possible
      misc.m4, configure.in:
        Use fourth argument to AC_TRY_RUN, to be used in cross compilation
        Don't try determine stack direction at configure time
      
      
      configure.in:
        Use fourth argument to AC_TRY_RUN, to be used in cross compilation
        Don't try determine stack direction at configure time
      config/ac-macros/compiler_flag.m4:
        Use AC_TRY_COMPILE and AC_TRY_LINK instead of AC_TRY_RUN where possible
      config/ac-macros/misc.m4:
        Use fourth argument to AC_TRY_RUN, to be used in cross compilation
        Don't try determine stack direction at configure time
      include/config-netware.h:
        Don't try determine stack direction at configure time
      include/config-win.h:
        Don't try determine stack direction at configure time
      sql/sql_parse.cc:
        Don't try determine stack direction at configure time
      0d3df46f
  20. 24 May, 2007 1 commit
  21. 16 May, 2007 1 commit
    • unknown's avatar
      Fix for bug #28240: "isinf()" cannot be used in C++ for lack of prototype · 9e1585ab
      unknown authored
      - Since isinf() portability across various platforms and
        compilers is a complicated question, we should not use
        it directly. Instead, the my_isinf() macro should be used,
        which is defined as an alias to the system-defined isinf()
        if it is safe to use, or a workaround implementation otherwise
      
      
      configure.in:
        Added a check to define HAVE_ISINF only if it can be used
        in C++ code as well.
      include/my_global.h:
        Define my_isinf() as an alias to isinf(), if it is available
        in both C and C++ code. Otherwise, define it to a workaround
        implementation.
      sql/item_func.cc:
        Replaced isinf() with my_isinf().
      strings/strtod.c:
        Replaced isinf() with my_isinf().
      9e1585ab
  22. 14 May, 2007 2 commits
  23. 08 May, 2007 4 commits
    • unknown's avatar
      Bug #23294: Detection of sem_xxx functions on NetBSD broken and \ · 6f742c90
      unknown authored
      	DragonflyBSD misc patches
      
      The bug reporter anticipated a problem, instead of experiencing one.
      
      IRC conversation:
      <xtraeme> sem_init is defined in librt on NetBSD
      	solaris uses libposix4 iirc
      	that's why I sent a patch
      <chadmiller> xtraeme: Agreed.  But, AFAICT, mysql doesn't use 
      	sem_init() anywhere.  Thus my confusion.
      <xtraeme> I didn't verify that, but I saw that sem_init wasn't detected 
      	correctly...
      	why are you checking for sem_init if it's unused then? :-)
      <chadmiller> xtraeme: In recent autoconf scripts, we change it to test 
      	for sched_yield() .
      <xtraeme> that's ok then
      	sched_yield is in libc
      	feel free to close the bug report then :-)
      
      
      configure.in:
        Remove useless test for sem_init() .
      6f742c90
    • unknown's avatar
      Fix for bug #28240: "isinf()" cannot be used in C++ for lack of prototype · 8931efa7
      unknown authored
      Since isinf() portability across various platforms and compilers is a complicated question, we should not use it directly. Instead, the my_isinf() macro should be used, which is defined as an alias to the system-defined isinf() if it is safe to use, or a workaround implementation otherwise.
      
      
      configure.in:
        Added a check to define HAVE_ISINF only if it can be used in C++ code as well.
      include/my_global.h:
        Define my_isinf() as an alias to isinf(), if it is available in both C and C++ code. Otherwise, define it to a workaround implementation.
      sql/item_func.cc:
        Replaced isinf() with my_isinf().
      strings/strtod.c:
        Replaced isinf() with my_isinf().
      8931efa7
    • unknown's avatar
      Bug #23294: Detection of sem_xxx functions on NetBSD broken and \ · 2013f17e
      unknown authored
      	DragonflyBSD misc patches
      
      Add the original intended test, since our current test for sched_yield
      is insufficient to copy.
      
      
      configure.in:
        We can't check for sched_yield, as that is in libc on FBSD.
        
        Re-add the check for sem_init in librt.
      2013f17e
    • unknown's avatar
      Raise version number after cloning 5.1.18-beta · 3a065ffa
      unknown authored
      3a065ffa
  24. 20 Apr, 2007 2 commits
    • unknown's avatar
      Branched for 5.1 · 6797b96d
      unknown authored
      6797b96d
    • unknown's avatar
      configure.in : Ensure that "icheck" is really the ABI checker, · 26aba3fb
      unknown authored
                       not some other tool (file system checker on Tru64).
      
      Patch originally supplied by Peter O'Gorman, slightly modified by me.
      
      Bug#27739 "build fails on Tru64 due to icheck test in configure"
      
      
      configure.in:
        We use "icheck" as a tool to check against ABI changes.
        However, some systems (like Tru64) have "icheck" as a file system checker.
        So if "icheck" is found, it should be verified that this really is the
        ABI checker and not some other tool.
        
        Patch originally supplied by Peter O'Gorman, slightly modified by me.
        
        Bug#27739 "build fails on Tru64 due to icheck test in configure"
      26aba3fb
  25. 18 Apr, 2007 2 commits
    • unknown's avatar
      Fixed make distcheck problem. · ad4922ef
      unknown authored
      Makefile.am:
        Removed debian/control creation from the top level dist-hook
      configure.in:
        Create debian/control from configure again
      debian/rules:
        Protect debian/control from the debuild distclean run. 
        Prevent a makefile variable loop when settin MYSQL_BASE_VERSION
      ad4922ef
    • unknown's avatar
      BUG#27769 - MySQL should include debian packaging dir · 6d296e5e
      unknown authored
      Replaced hardcoded sover reference with variable.
      Removed references to added manpages.
      ---
      BUG#27769 
      Cleaned up some things to make building the packages go a little smoother. 
      ---
      debian/rules really does need to be called from the source root.
      ---
      Fixed two problems with the build caused by adding debian to the source tree
      ---
      Left off the debian/ prefix to the Makefile filter.
      ---
      BUG#27769 - MySQL should include debian packaging dir
      Changed substitution variables to match already existing autoconf vars.
      Generate debian/control and debian/defs.mk from autoconf now, since we run that
      to make a source package. 
      ---
      Corrected incorrect variable name
      ---
      Renamed template files to have shorter names. 
      ---
      Moved generation of debian/control to dist-hook so make clean won't eat it.
      ---
      A few final changes to make debs build from a source tarball dist. 
      
      
      debian/libmysqlclientSLIB-dev.README.Maintainer.in:
        Rename: debian/libmysqlclientMYSOVER-dev.README.Maintainer.in -> debian/libmysqlclientSLIB-dev.README.Maintainer.in
      debian/libmysqlclientSLIB-dev.dirs.in:
        Rename: debian/libmysqlclientMYSOVER-dev.dirs.in -> debian/libmysqlclientSLIB-dev.dirs.in
      debian/libmysqlclientSLIB-dev.docs.in:
        Rename: debian/libmysqlclientMYSOVER-dev.docs.in -> debian/libmysqlclientSLIB-dev.docs.in
      debian/libmysqlclientSLIB-dev.examples.in:
        Rename: debian/libmysqlclientMYSOVER-dev.examples.in -> debian/libmysqlclientSLIB-dev.examples.in
      debian/libmysqlclientSLIB-dev.files.in:
        Rename: debian/libmysqlclientMYSOVER-dev.files.in -> debian/libmysqlclientSLIB-dev.files.in
      debian/libmysqlclientSLIB-dev.links.in:
        Rename: debian/libmysqlclientMYSOVER-dev.links.in -> debian/libmysqlclientSLIB-dev.links.in
      debian/libmysqlclientSLIB.README.Debian.in:
        Rename: debian/libmysqlclientMYSOVER.README.Debian.in -> debian/libmysqlclientSLIB.README.Debian.in
      debian/libmysqlclientSLIB.dirs.in:
        Rename: debian/libmysqlclientMYSOVER.dirs.in -> debian/libmysqlclientSLIB.dirs.in
      debian/libmysqlclientSLIB.docs.in:
        Rename: debian/libmysqlclientMYSOVER.docs.in -> debian/libmysqlclientSLIB.docs.in
      debian/libmysqlclientSLIB.files.in:
        Rename: debian/libmysqlclientMYSOVER.files.in -> debian/libmysqlclientSLIB.files.in
      debian/libmysqlclientSLIB.postinst.in:
        Rename: debian/libmysqlclientMYSOVER.postinst.in -> debian/libmysqlclientSLIB.postinst.in
      debian/libndbclientNLIB-dev.dirs.in:
        Rename: debian/libndbclientNDBSOVER-dev.dirs.in -> debian/libndbclientNLIB-dev.dirs.in
      debian/libndbclientNLIB-dev.files.in:
        Rename: debian/libndbclientNDBSOVER-dev.files.in -> debian/libndbclientNLIB-dev.files.in
      debian/libndbclientNLIB-dev.links.in:
        Rename: debian/libndbclientNDBSOVER-dev.links.in -> debian/libndbclientNLIB-dev.links.in
      debian/libndbclientNLIB.README.Debian.in:
        Rename: debian/libndbclientNDBSOVER.README.Debian.in -> debian/libndbclientNLIB.README.Debian.in
      debian/libndbclientNLIB.dirs.in:
        Rename: debian/libndbclientNDBSOVER.dirs.in -> debian/libndbclientNLIB.dirs.in
      debian/libndbclientNLIB.files.in:
        Rename: debian/libndbclientNDBSOVER.files.in -> debian/libndbclientNLIB.files.in
      debian/libndbclientNLIB.postinst.in:
        Rename: debian/libndbclientNDBSOVER.postinst.in -> debian/libndbclientNLIB.postinst.in
      debian/mysql-client-BASE.NEWS.in:
        Rename: debian/mysql-client-MYVER.NEWS.in -> debian/mysql-client-BASE.NEWS.in
      debian/mysql-client-BASE.README.Debian.in:
        Rename: debian/mysql-client-MYVER.README.Debian.in -> debian/mysql-client-BASE.README.Debian.in
      debian/mysql-client-BASE.dirs.in:
        Rename: debian/mysql-client-MYVER.dirs.in -> debian/mysql-client-BASE.dirs.in
      debian/mysql-client-BASE.docs.in:
        Rename: debian/mysql-client-MYVER.docs.in -> debian/mysql-client-BASE.docs.in
      debian/mysql-extra-BASE.dirs.in:
        Rename: debian/mysql-extra-MYVER.dirs.in -> debian/mysql-extra-BASE.dirs.in
      debian/mysql-extra-BASE.files.in:
        Rename: debian/mysql-extra-MYVER.files.in -> debian/mysql-extra-BASE.files.in
      debian/mysql-management-BASE.dirs.in:
        Rename: debian/mysql-management-MYVER.dirs.in -> debian/mysql-management-BASE.dirs.in
      debian/mysql-management-BASE.files.in:
        Rename: debian/mysql-management-MYVER.files.in -> debian/mysql-management-BASE.files.in
      debian/mysql-management-BASE.mysql-management.init.in:
        Rename: debian/mysql-management-MYVER.mysql-management.init.in -> debian/mysql-management-BASE.mysql-management.init.in
      debian/mysql-server-BASE.NEWS.in:
        Rename: debian/mysql-server-MYVER.NEWS.in -> debian/mysql-server-BASE.NEWS.in
      debian/mysql-server-BASE.README.Debian.in:
        Rename: debian/mysql-server-MYVER.README.Debian.in -> debian/mysql-server-BASE.README.Debian.in
      debian/mysql-server-BASE.dirs.in:
        Rename: debian/mysql-server-MYVER.dirs.in -> debian/mysql-server-BASE.dirs.in
      debian/mysql-server-BASE.docs.in:
        Rename: debian/mysql-server-MYVER.docs.in -> debian/mysql-server-BASE.docs.in
      debian/mysql-server-BASE.links.in:
        Rename: debian/mysql-server-MYVER.links.in -> debian/mysql-server-BASE.links.in
      debian/mysql-server-BASE.logcheck.ignore.paranoid.in:
        Rename: debian/mysql-server-MYVER.logcheck.ignore.paranoid.in -> debian/mysql-server-BASE.logcheck.ignore.paranoid.in
      debian/mysql-server-BASE.logcheck.ignore.server.in:
        Rename: debian/mysql-server-MYVER.logcheck.ignore.server.in -> debian/mysql-server-BASE.logcheck.ignore.server.in
      debian/mysql-server-BASE.logcheck.ignore.workstation.in:
        Rename: debian/mysql-server-MYVER.logcheck.ignore.workstation.in -> debian/mysql-server-BASE.logcheck.ignore.workstation.in
      debian/mysql-server-BASE.mysql-server.logrotate.in:
        Rename: debian/mysql-server-MYVER.mysql-server.logrotate.in -> debian/mysql-server-BASE.mysql-server.logrotate.in
      debian/mysql-server-BASE.preinst.in:
        Rename: debian/mysql-server-MYVER.preinst.in -> debian/mysql-server-BASE.preinst.in
      debian/mysql-server-BASE.prerm.in:
        Rename: debian/mysql-server-MYVER.prerm.in -> debian/mysql-server-BASE.prerm.in
      debian/mysql-server-PREV.preinst.in:
        Rename: debian/mysql-server-MYOLDVER.preinst.in -> debian/mysql-server-PREV.preinst.in
      debian/mysql-storage-BASE.dirs.in:
        Rename: debian/mysql-storage-MYVER.dirs.in -> debian/mysql-storage-BASE.dirs.in
      debian/mysql-storage-BASE.files.in:
        Rename: debian/mysql-storage-MYVER.files.in -> debian/mysql-storage-BASE.files.in
      debian/mysql-storage-BASE.mysql-storage.init.in:
        Rename: debian/mysql-storage-MYVER.mysql-storage.init.in -> debian/mysql-storage-BASE.mysql-storage.init.in
      debian/mysql-test-BASE.dirs.in:
        Rename: debian/mysql-test-MYVER.dirs.in -> debian/mysql-test-BASE.dirs.in
      debian/mysql-test-BASE.files.in:
        Rename: debian/mysql-test-MYVER.files.in -> debian/mysql-test-BASE.files.in
      debian/mysql-tools-BASE.dirs.in:
        Rename: debian/mysql-tools-MYVER.dirs.in -> debian/mysql-tools-BASE.dirs.in
      debian/mysql-tools-BASE.files.in:
        Rename: debian/mysql-tools-MYVER.files.in -> debian/mysql-tools-BASE.files.in
      Makefile.am:
        Moved generation of debian/control to dist-hook so make clean won't eat it.
        ---
        Need to generate the control file in the dist dir - not the source dir.
      configure.in:
        Added variables to support the generation of debian/control and debian/defs.mk from configure
        ---
        Moved generation of debian/control to dist-hook so make clean won't eat it.
      debian/Makefile.am:
        Distribute the generated control file so that debuild will work naturally.
        ---
        Broke the EXTRA_DIST line into separate lines. 
        Added defs.mk.in
        ---
        Modified debian/Makefile to use the new shorter template file names.
      debian/control.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/defs.mk.in:
        Changed substitution variables to match already existing autoconf vars.
        Made defs.mk.in generated from template. 
        Persisted variables here. 
        ---
        Corrected incorrect variable name
      debian/mysql-client-BASE.files.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-client-BASE.lintian-overrides.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.config.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.files.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.lintian-overrides.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.postinst.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.postrm.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/mysql-server-BASE.templates.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/po/POTFILES.in.in:
        Changed substitution variables to match already existing autoconf vars.
      debian/rules:
        BUG#27769 - MySQL should include debian packaging dir
        Replaced hardcoded sover reference with variable.
        Removed references to added manpages.
        ---
        Prevented the test suite from being run unless requested. 
        ---
        Needed a space between ifneq and (
        ---
        The variable substitution was stepping on the Makefile from automake. 
        ---
        Left off the debian/ prefix to the Makefile filter.
        ---
        Changed substitution variables to match already existing autoconf vars.
        ---
        Save debian/defs.mk from make distclean
      debian/source.lintian-overrides.in:
        Changed substitution variables to match already existing autoconf vars.
      6d296e5e
  26. 17 Apr, 2007 3 commits
    • unknown's avatar
      Raise version number after cloning 5.0.40 · 46e37afd
      unknown authored
      46e37afd
    • unknown's avatar
    • unknown's avatar
      Let the "configure" options that control table handlers (NDB, InnoDB) or features ("embedded") · 5c9123b5
      unknown authored
      also control the list of man pages installed, so that they correspond better to the binaries.
      
      This is the second version of this fix, including review comments.
      
      
      configure.in:
        Several of our man pages are specific to parts (table handlers, features, ...)
        which are controlled by "configure" options, so there are builds which do not
        include these parts.
        For such builds, remove those specific man pages from the list of man pages
        to be installed, so that the man pages correspond better to the binaries.
        
        In this patch, do it for NDB (modify Kent's approach), "embedded", and InnoDB.
        
        Ensure that the handling of the man pages is determined only after the options
        have been processed, the old nandling (NDB only) was done too early.
        
        This is the second version of this fix, including review comments.
      5c9123b5
  27. 11 Apr, 2007 3 commits
    • unknown's avatar
      Adding files to support building for debian. · 359594cc
      unknown authored
      ```yaml
      Removed reference to debian svn location of debian dir. 
      Changed verbage of comment to appease Timothy.
      ```
      
      Removed added manpages that aren't appropriate for our build. 
      ---
      Added debian dir to list of dist targets. 
      Added list of files needed to be distributed in debian dir.
      ---
      Added semi-colons to fix syntax error.
      ---
      BUG#27769 MySQL should include debian packaing dir
      Added debian/Makefile to configure.in to support make dist.
      
      
      BitKeeper/deleted/.del-configure.in.rej:
        Delete: configure.in.rej
      Makefile.am:
        Added debian dir to list of dist targets.
      configure.in:
        Added debian/Makefile to configure.in to support make dist
      BitKeeper/deleted/.del-comp_err.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-msql2mysql.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-my_print_defaults.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-myisam_ftdump.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-myisamchk.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-myisamlog.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-myisampack.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_config.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_convert_table_format.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_explain_log.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_find_rows.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_fix_extensions.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_install_db.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_secure_installation.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_setpermission.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_tableinfo.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysql_waitpid.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqlbinlog.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqlbug.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqlcheck.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqldumpslow.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqlimport.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqlmanager.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-mysqltest.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-pack_isam.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-resolve_stack_dump.1:
        Adding files to support building for debian.
      BitKeeper/deleted/.del-resolveip.1:
        Adding files to support building for debian.
      debian/Makefile.am:
        Added list of files needed to be distributed in debian dir.
      debian/README.Maintainer:
        Adding files to support building for debian.
        ---
        Removed reference to debian svn location of debian dir. 
        Changed verbage of comment to appease Timothy.
      debian/changelog:
        Adding files to support building for debian.
      debian/compat:
        Adding files to support building for debian.
      debian/control.in:
        Adding files to support building for debian.
      debian/copyright.more:
        Adding files to support building for debian.
      debian/copyright:
        Adding files to support building for debian.
      debian/defs.mk:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.README.Maintainer.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.dirs.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.docs.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.examples.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.files.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER-dev.links.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER.README.Debian.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER.dirs.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER.docs.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER.files.in:
        Adding files to support building for debian.
      debian/libmysqlclientMYSOVER.postinst.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER-dev.dirs.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER-dev.files.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER-dev.links.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER.README.Debian.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER.dirs.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER.files.in:
        Adding files to support building for debian.
      debian/libndbclientNDBSOVER.postinst.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.NEWS.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.README.Debian.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.docs.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-client-MYVER.lintian-overrides.in:
        Adding files to support building for debian.
      debian/mysql-common.README.Debian.in:
        Adding files to support building for debian.
      debian/mysql-common.dirs.in:
        Adding files to support building for debian.
      debian/mysql-common.files.in:
        Adding files to support building for debian.
      debian/mysql-common.postrm.in:
        Adding files to support building for debian.
      debian/mysql-common.preinst.in:
        Adding files to support building for debian.
      debian/mysql-extra-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-extra-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-management-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-management-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-management-MYVER.mysql-management.init.in:
        Adding files to support building for debian.
      debian/mysql-server-MYOLDVER.preinst.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.NEWS.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.README.Debian.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.config.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.docs.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.links.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.lintian-overrides.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.logcheck.ignore.paranoid.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.logcheck.ignore.server.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.logcheck.ignore.workstation.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.mysql-server.logrotate.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.postinst.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.postrm.in:
        Adding files to support building for debian.
      debian/additions/my.cnf:
        Adding files to support building for debian.
      debian/additions/mysql-server.lintian-overrides:
        Adding files to support building for debian.
      debian/additions/ndb_mgmd.cnf:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.preinst.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.prerm.in:
        Adding files to support building for debian.
      debian/mysql-server-MYVER.templates.in:
        Adding files to support building for debian.
      debian/mysql-server.preinst.in:
        Adding files to support building for debian.
      debian/mysql-storage-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-storage-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-storage-MYVER.mysql-storage.init.in:
        Adding files to support building for debian.
      debian/mysql-test-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-test-MYVER.files.in:
        Adding files to support building for debian.
      debian/mysql-tools-MYVER.dirs.in:
        Adding files to support building for debian.
      debian/mysql-tools-MYVER.files.in:
        Adding files to support building for debian.
      debian/po/POTFILES.in.in:
        Adding files to support building for debian.
      debian/po/ca.po:
        Adding files to support building for debian.
      debian/po/cs.po:
        Adding files to support building for debian.
      debian/po/da.po:
        Adding files to support building for debian.
      debian/po/de.po:
        Adding files to support building for debian.
      debian/po/es.po:
        Adding files to support building for debian.
      debian/po/eu.po:
        Adding files to support building for debian.
      debian/po/fr.po:
        Adding files to support building for debian.
      debian/po/gl.po:
        Adding files to support building for debian.
      debian/po/it.po:
        Adding files to support building for debian.
      debian/po/ja.po:
        Adding files to support building for debian.
      debian/po/nb.po:
        Adding files to support building for debian.
      debian/po/nl.po:
        Adding files to support building for debian.
      debian/po/pt.po:
        Adding files to support building for debian.
      debian/po/pt_BR.po:
        Adding files to support building for debian.
      debian/po/ro.po:
        Adding files to support building for debian.
      debian/po/ru.po:
        Adding files to support building for debian.
      debian/po/sv.po:
        Adding files to support building for debian.
      debian/po/templates.pot:
        Adding files to support building for debian.
      debian/po/tr.po:
        Adding files to support building for debian.
      debian/rules:
        Adding files to support building for debian.
        ---
        Added semi-colons to fix syntax error.
      debian/source.lintian-overrides.in:
        Adding files to support building for debian.
      debian/watch:
        Adding files to support building for debian.
      359594cc
    • unknown's avatar
      make configure handle service pack version strings · f89df01c
      unknown authored
      configure.in:
        recognize service pack version strings
      f89df01c
    • unknown's avatar
      60e587bd
  28. 05 Apr, 2007 1 commit
    • unknown's avatar
      zlib.m4: · 60289fba
      unknown authored
        Only require the more recent zlibCompileFlags() when
        building the server, client zlib don't need it.
      Makefile.am:
        Always build the bundled zlib static only
      configure.in:
        Look for dlopen() even if --with-mysqld-ldflags constains "-static",
        as this is not the same as the flag to "ld", it just informs
        "libtool" to link static with libraries created part of the build,
        even if there exists shared versions.
      make_binary_distribution.sh:
        Real "mysqlmanager" executable might be in ".libs"
      
      
      configure.in:
        Look for dlopen() even if --with-mysqld-ldflags constains "-static",
        as this is not the same as the flag to "ld", it just informs
        "libtool" to link static with libraries created part of the build,
        even if there exists shared versions.
      config/ac-macros/zlib.m4:
        Only require the more recent zlibCompileFlags() when
        building the server, client zlib don't need it.
      scripts/make_binary_distribution.sh:
        Real "mysqlmanager" executable might be in ".libs"
      zlib/Makefile.am:
        Always build the bundled zlib static only
      60289fba
  29. 28 Mar, 2007 1 commit
    • unknown's avatar
      configure.in: · 406fd12a
      unknown authored
        Don't install ndb man pages if no ndb configured
      config-win.h, CMakeLists.txt, README, configure.js:
        Removed Cybozu patches
      
      
      configure.in:
        Don't install ndb man pages if no ndb configured
      CMakeLists.txt:
        Removed Cybozu patches
      include/config-win.h:
        Removed Cybozu patches
      win/README:
        Removed Cybozu patches
      win/configure.js:
        Removed Cybozu patches
      406fd12a