List:Internals« Previous MessageNext Message »
From:msvensson Date:April 7 2005 2:39pm
Subject:bk commit into 5.0 tree (magnus:1.1887)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of magnus. When magnus 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
  1.1887 05/04/07 14:39:30 magnus@stripped +1 -0
  Fix linking problem on bsd53
   - See article http://archive.netbsd.se/?ml=freebsd-current&a=2004-07&m=257561
    or http://www.geocrawler.com/archives/3/254/2003/3/450/10409564/

  configure.in
    1.282 05/04/07 14:36:55 magnus@stripped +9 -0
    The libsupc++ library on freebsd with gcc 3.4.2 is dependent on libstdc++, disable it 
since other solution works fine

# 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:	magnus
# Host:	msdesk.mysql.com
# Root:	/home/magnus/mysql-5.0-build

--- 1.281/configure.in	2005-04-06 14:15:35 +02:00
+++ 1.282/configure.in	2005-04-07 14:36:55 +02:00
@@ -351,6 +351,15 @@
   if echo $CXX | grep gcc > /dev/null 2>&1
   then
     GCC_VERSION=`gcc -v 2>&1 | grep version | sed -e 's/[[^0-9. ]]//g; s/^ *//g;
s/ .*//g'`
+    case $SYSTEM_TYPE in
+      *freebsd*)
+        # The libsupc++ library on freebsd with gcc 3.4.2 is dependent on 
+        # libstdc++, disable it  since other solution works fine
+        GCC_VERSION="NOSUPCPP_$GCC_VERSION"
+      ;;
+      *) 
+      ;;
+    esac
     echo "Using gcc version '$GCC_VERSION'"
     case "$GCC_VERSION" in
       3.4.*|3.5.*)
Thread
bk commit into 5.0 tree (magnus:1.1887)msvensson7 Apr