mysql_config
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. # This script reports various configuration settings that may be needed
  15. # when using the MySQL client library.
  16. which ()
  17. {
  18.   IFS="${IFS=   }"; save_ifs="$IFS"; IFS=':'
  19.   for file
  20.   do
  21.     for dir in $PATH
  22.     do
  23.       if test -f $dir/$file
  24.       then
  25.         echo "$dir/$file"
  26.         continue 2
  27.       fi
  28.     done
  29.     echo "which: no $file in ($PATH)"
  30.     exit 1
  31.   done
  32.   IFS="$save_ifs"
  33. }
  34. #
  35. # If we can find the given directory relatively to where mysql_config is
  36. # we should use this instead of the incompiled one.
  37. # This is to ensure that this script also works with the binary MySQL
  38. # version
  39. fix_path ()
  40. {
  41.   var=$1
  42.   shift
  43.   for filename
  44.   do
  45.     path=$basedir/$filename
  46.     if [ -d "$path" ] ;
  47.     then
  48.       eval "$var"=$path
  49.       return
  50.     fi
  51.   done
  52. }
  53. get_full_path ()
  54. {
  55.   file=$1
  56.   # if the file is a symlink, try to resolve it
  57.   if [ -h $file ];
  58.   then
  59.     file=`ls -l $file | awk '{ print $NF }'`
  60.   fi
  61.   case $file in
  62.     /*) echo "$file";;
  63.     */*) tmp=`pwd`/$file; echo $tmp | sed -e 's;/./;/;' ;;
  64.     *) which $file ;;
  65.   esac
  66. }
  67. me=`get_full_path $0`
  68. basedir=`echo $me | sed -e 's;/bin/mysql_config;;'`
  69. ldata='/usr/local/var'
  70. execdir='/usr/local/libexec'
  71. bindir='/usr/local/bin'
  72. pkglibdir='/usr/local/lib/mysql'
  73. fix_path pkglibdir lib/mysql lib
  74. pkgincludedir='/usr/local/include/mysql'
  75. fix_path pkgincludedir include/mysql include
  76. version='4.1.16'
  77. socket='/tmp/mysql.sock'
  78. port='3306'
  79. ldflags=''
  80. # Create options
  81. libs="$ldflags -L$pkglibdir -lmysqlclient -lz -lcrypt -lnsl -lm "
  82. libs="$libs  "
  83. libs=`echo "$libs" | sed -e 's;  +; ;g' | sed -e 's;^ *;;' | sed -e 's; *$;;'`
  84. libs_r="$ldflags -L$pkglibdir -lmysqlclient_r -lz -lpthread -lcrypt -lnsl -lm  -lpthread  "
  85. libs_r=`echo "$libs_r" | sed -e 's;  +; ;g' | sed -e 's;^ *;;' | sed -e 's; *$;;'`
  86. cflags="-I$pkgincludedir  " #note: end space!
  87. include="-I$pkgincludedir"
  88. embedded_libs="$ldflags -L$pkglibdir -lmysqld -lz -lpthread -lcrypt -lnsl -lm  -lpthread   -lrt"
  89. embedded_libs=`echo "$embedded_libs" | sed -e 's;  +; ;g' | sed -e 's;^ *;;' | sed -e 's; *$;;'`
  90. # Remove some options that a client doesn't have to care about
  91. # FIXME until we have a --cxxflags, we need to remove -Xa
  92. #       and -xstrconst to make --cflags usable for Sun Forte C++
  93. for remove in DDBUG_OFF DSAFEMALLOC USAFEMALLOC DSAFE_MUTEX 
  94.               DPEDANTIC_SAFEMALLOC DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS 
  95.               DEXTRA_DEBUG DHAVE_purify 'O[0-9]' 'W[-A-Za-z]*' 
  96.               Xa xstrconst
  97. do
  98.   # The first option we might strip will always have a space before it because
  99.   # we set -I$pkgincludedir as the first option
  100.   cflags=`echo "$cflags"|sed -e "s/ -$remove  */ /g"` 
  101. done
  102. cflags=`echo "$cflags"|sed -e 's/ *$//'` 
  103. usage () {
  104.         cat <<EOF
  105. Usage: $0 [OPTIONS]
  106. Options:
  107.         --cflags         [$cflags]
  108.         --include        [$include]
  109.         --libs           [$libs]
  110.         --libs_r         [$libs_r]
  111.         --socket         [$socket]
  112.         --port           [$port]
  113.         --version        [$version]
  114.         --libmysqld-libs [$embedded_libs]
  115. EOF
  116.         exit 1
  117. }
  118. if test $# -le 0; then usage; fi
  119. while test $# -gt 0; do
  120.         case $1 in
  121.         --cflags)  echo "$cflags" ;;
  122.         --include) echo "$include" ;;
  123.         --libs)    echo "$libs" ;;
  124.         --libs_r)  echo "$libs_r" ;;
  125.         --socket)  echo "$socket" ;;
  126.         --port)    echo "$port" ;;
  127.         --version) echo "$version" ;;
  128.         --embedded-libs | --embedded | --libmysqld-libs) echo "$embedded_libs" ;;
  129.         *)         usage ;;
  130.         esac
  131.         shift
  132. done
  133. #echo "ldata: '"$ldata"'"
  134. #echo "execdir: '"$execdir"'"
  135. #echo "bindir: '"$bindir"'"
  136. #echo "pkglibdir: '"$pkglibdir"'"
  137. #echo "pkgincludedir: '"$pkgincludedir"'"
  138. #echo "version: '"$version"'"
  139. #echo "socket: '"$socket"'"
  140. #echo "port: '"$port"'"
  141. #echo "ldflags: '"$ldflags"'"
  142. #echo "client_libs: '"$client_libs"'"
  143. exit 0