~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to scripts/mysql_config.sh

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Copyright (C) 2000-2006 MySQL AB
 
3
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; version 2 of the License.
 
7
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
# This script reports various configuration settings that may be needed
 
18
# when using the MySQL client library.
 
19
 
 
20
which ()
 
21
{
 
22
  IFS="${IFS=   }"; save_ifs="$IFS"; IFS=':'
 
23
  for file
 
24
  do
 
25
    for dir in $PATH
 
26
    do
 
27
      if test -f $dir/$file
 
28
      then
 
29
        echo "$dir/$file"
 
30
        continue 2
 
31
      fi
 
32
    done
 
33
    echo "which: no $file in ($PATH)"
 
34
    exit 1
 
35
  done
 
36
  IFS="$save_ifs"
 
37
}
 
38
 
 
39
#
 
40
# If we can find the given directory relatively to where mysql_config is
 
41
# we should use this instead of the incompiled one.
 
42
# This is to ensure that this script also works with the binary MySQL
 
43
# version
 
44
 
 
45
fix_path ()
 
46
{
 
47
  var=$1
 
48
  shift
 
49
  for filename
 
50
  do
 
51
    path=$basedir/$filename
 
52
    if [ -d "$path" ] ;
 
53
    then
 
54
      eval "$var"=$path
 
55
      return
 
56
    fi
 
57
  done
 
58
}
 
59
 
 
60
get_full_path ()
 
61
{
 
62
  file=$1
 
63
 
 
64
  # if the file is a symlink, try to resolve it
 
65
  if [ -h $file ];
 
66
  then
 
67
    file=`ls -l $file | awk '{ print $NF }'`
 
68
  fi
 
69
 
 
70
  case $file in
 
71
    /*) echo "$file";;
 
72
    */*) tmp=`pwd`/$file; echo $tmp | sed -e 's;/\./;/;' ;;
 
73
    *) which $file ;;
 
74
  esac
 
75
}
 
76
 
 
77
me=`get_full_path $0`
 
78
 
 
79
basedir=`echo $me | sed -e 's;/bin/mysql_config;;'`
 
80
 
 
81
ldata='@localstatedir@'
 
82
execdir='@libexecdir@'
 
83
bindir='@bindir@'
 
84
 
 
85
# If installed, search for the compiled in directory first (might be "lib64")
 
86
pkglibdir='@pkglibdir@'
 
87
pkglibdir_rel=`echo $pkglibdir | sed -e "s;^$basedir/;;"`
 
88
fix_path pkglibdir $pkglibdir_rel lib/mysql lib
 
89
 
 
90
plugindir='@pkgplugindir@'
 
91
 
 
92
pkgincludedir='@pkgincludedir@'
 
93
fix_path pkgincludedir include/mysql include
 
94
 
 
95
version='@VERSION@'
 
96
socket='@MYSQL_UNIX_ADDR@'
 
97
ldflags='@LDFLAGS@'
 
98
 
 
99
if [ @MYSQL_TCP_PORT_DEFAULT@ -eq 0 ]; then
 
100
  port=0
 
101
else
 
102
  port=@MYSQL_TCP_PORT@
 
103
fi
 
104
 
 
105
# Create options 
 
106
# We intentionally add a space to the beginning and end of lib strings, simplifies replace later
 
107
libs=" $ldflags -L$pkglibdir -lmysqlclient @ZLIB_DEPS@ @NON_THREADED_LIBS@"
 
108
libs="$libs @openssl_libs@ @STATIC_NSS_FLAGS@ "
 
109
libs_r=" $ldflags -L$pkglibdir -lmysqlclient_r @ZLIB_DEPS@ @LIBS@ @openssl_libs@ "
 
110
embedded_libs=" $ldflags -L$pkglibdir -lmysqld @ZLIB_DEPS@ @LIBS@ @WRAPLIBS@ @innodb_system_libs@ @openssl_libs@ "
 
111
 
 
112
if [ -r "$pkglibdir/libmygcc.a" ]; then
 
113
  # When linking against the static library with a different version of GCC
 
114
  # from what was used to compile the library, some symbols may not be defined
 
115
  # automatically.  We package the libmygcc.a from the build host, to provide
 
116
  # definitions for those.  Bugs 4921, 19561, 19817, 21158, etc.
 
117
  libs="$libs -lmygcc "
 
118
  libs_r="$libs_r -lmygcc "
 
119
  embedded_libs="$embedded_libs -lmygcc "
 
120
fi
 
121
 
 
122
cflags="-I$pkgincludedir @CFLAGS@ " #note: end space!
 
123
include="-I$pkgincludedir"
 
124
 
 
125
# Remove some options that a client doesn't have to care about
 
126
# FIXME until we have a --cxxflags, we need to remove -Xa
 
127
#       and -xstrconst to make --cflags usable for Sun Forte C++
 
128
# FIXME until we have a --cxxflags, we need to remove -AC99
 
129
#       to make --cflags usable for HP C++ (aCC)
 
130
for remove in DDBUG_OFF DSAFEMALLOC USAFEMALLOC DSAFE_MUTEX \
 
131
              DPEDANTIC_SAFEMALLOC DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS \
 
132
              DEXTRA_DEBUG DHAVE_purify O 'O[0-9]' 'xO[0-9]' 'W[-A-Za-z]*' \
 
133
              'mtune=[-A-Za-z0-9]*' 'mcpu=[-A-Za-z0-9]*' 'march=[-A-Za-z0-9]*' \
 
134
              Xa xstrconst "xc99=none" AC99 \
 
135
              unroll2 ip mp restrict
 
136
do
 
137
  # The first option we might strip will always have a space before it because
 
138
  # we set -I$pkgincludedir as the first option
 
139
  cflags=`echo "$cflags"|sed -e "s/ -$remove  */ /g"` 
 
140
done
 
141
cflags=`echo "$cflags"|sed -e 's/ *\$//'` 
 
142
 
 
143
# Same for --libs(_r)
 
144
for remove in lmtmalloc static-libcxa i-static static-intel
 
145
do
 
146
  # We know the strings starts with a space
 
147
  libs=`echo "$libs"|sed -e "s/ -$remove  */ /g"` 
 
148
  libs_r=`echo "$libs_r"|sed -e "s/ -$remove  */ /g"` 
 
149
  embedded_libs=`echo "$embedded_libs"|sed -e "s/ -$remove  */ /g"` 
 
150
done
 
151
 
 
152
# Strip trailing and ending space if any, and '+' (FIXME why?)
 
153
libs=`echo "$libs" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
 
154
libs_r=`echo "$libs_r" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
 
155
embedded_libs=`echo "$embedded_libs" | sed -e 's;  \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'`
 
156
 
 
157
usage () {
 
158
        cat <<EOF
 
159
Usage: $0 [OPTIONS]
 
160
Options:
 
161
        --cflags         [$cflags]
 
162
        --include        [$include]
 
163
        --libs           [$libs]
 
164
        --libs_r         [$libs_r]
 
165
        --plugindir      [$plugindir]
 
166
        --socket         [$socket]
 
167
        --port           [$port]
 
168
        --version        [$version]
 
169
        --libmysqld-libs [$embedded_libs]
 
170
EOF
 
171
        exit 1
 
172
}
 
173
 
 
174
if test $# -le 0; then usage; fi
 
175
 
 
176
while test $# -gt 0; do
 
177
        case $1 in
 
178
        --cflags)  echo "$cflags" ;;
 
179
        --include) echo "$include" ;;
 
180
        --libs)    echo "$libs" ;;
 
181
        --libs_r)  echo "$libs_r" ;;
 
182
        --plugindir) echo "$plugindir" ;;
 
183
        --socket)  echo "$socket" ;;
 
184
        --port)    echo "$port" ;;
 
185
        --version) echo "$version" ;;
 
186
        --embedded-libs | --embedded | --libmysqld-libs) echo "$embedded_libs" ;;
 
187
        *)         usage ;;
 
188
        esac
 
189
 
 
190
        shift
 
191
done
 
192
 
 
193
#echo "ldata: '"$ldata"'"
 
194
#echo "execdir: '"$execdir"'"
 
195
#echo "bindir: '"$bindir"'"
 
196
#echo "pkglibdir: '"$pkglibdir"'"
 
197
#echo "pkgincludedir: '"$pkgincludedir"'"
 
198
#echo "version: '"$version"'"
 
199
#echo "socket: '"$socket"'"
 
200
#echo "port: '"$port"'"
 
201
#echo "ldflags: '"$ldflags"'"
 
202
#echo "client_libs: '"$client_libs"'"
 
203
 
 
204
exit 0