List:Commits« Previous MessageNext Message »
From:Brian Aker Date:September 14 2006 5:09am
Subject:bk commit into 5.1 tree (brian:1.2318)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of brian. When brian 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, 2006-09-13 22:09:04-07:00, brian@dib. +3 -0
  This fixes support for building mysql on Solaris with GNU tools. 

  BUILD/check-cpu@stripped, 2006-09-13 22:01:38-07:00, brian@dib. +4 -0
    Simple Solaris support

  BUILD/compile-solaris-sparc@stripped, 2006-09-13 22:01:45-07:00, brian@dib. +5 -9
    Cleanup of Solars support

  BUILD/compile-solaris-sparc-debug@stripped, 2006-09-13 22:01:56-07:00, brian@dib. +5 -9
    Cleanup of solaris support

# 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:	brian
# Host:	dib.
# Root:	/export/home/brian/mysql/gnu-5.1

--- 1.10/BUILD/compile-solaris-sparc	2006-09-13 22:09:16 -07:00
+++ 1.11/BUILD/compile-solaris-sparc	2006-09-13 22:09:16 -07:00
@@ -1,11 +1,7 @@
-#! /bin/sh
-
-gmake -k clean || true
-/bin/rm -f */.deps/*.P config.cache
- 
+#!/usr/bin/bash
 path=`dirname $0`
-. "$path/autorun.sh"
-
-CFLAGS="-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Wunused  -O3 -fno-omit-frame-pointer -mcpu=v8 -Wa,-xarch=v8plusa" CXX=gcc CXXFLAGS="-Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -felide-constructors -fno-exceptions -fno-rtti  -O3 -fno-omit-frame-pointer -mcpu=v8 -Wa,-xarch=v8plusa -g" ./configure --prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client
+. "$path/SETUP.sh"
+extra_flags=""
+extra_configs="$max_configs"
 
-gmake -j 4
+. "$path/FINISH.sh"

--- 1.4/BUILD/compile-solaris-sparc-debug	2006-09-13 22:09:16 -07:00
+++ 1.5/BUILD/compile-solaris-sparc-debug	2006-09-13 22:09:16 -07:00
@@ -1,11 +1,7 @@
-#! /bin/sh
-
-gmake -k clean || true
-/bin/rm -f */.deps/*.P config.cache
- 
+#!/usr/bin/bash
 path=`dirname $0`
-. "$path/autorun.sh"
- 
-CFLAGS="-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Wunused  -O3 -fno-omit-frame-pointer -mcpu=v8 -Wa,-xarch=v8plusa" CXX=gcc CXXFLAGS="-Wimplicit -Wreturn-type -Wid-clash-51 -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -felide-constructors -fno-exceptions -fno-rtti  -O3 -fno-omit-frame-pointer -mcpu=v8 -Wa,-xarch=v8plusa -g" ./configure --prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-debug
+. "$path/SETUP.sh"
+extra_flags="$debug_cflags"
+extra_configs="$debug_configs $max_configs"
 
-gmake -j 4
+. "$path/FINISH.sh"

--- 1.15/BUILD/check-cpu	2006-09-13 22:09:16 -07:00
+++ 1.16/BUILD/check-cpu	2006-09-13 22:09:16 -07:00
@@ -113,6 +113,10 @@
     cpu_arg='powerpc'
     ;;
 
+  *SunOS*)
+    cpu_arg=''
+    ;;
+
   # unknown
   *)
     cpu_arg="";
Thread
bk commit into 5.1 tree (brian:1.2318)Brian Aker14 Sep