~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to scripts/mysql_config.sh

  • Committer: Brian Aker
  • Date: 2008-07-01 20:52:03 UTC
  • mfrom: (28.1.23 libtool-patch)
  • Revision ID: brian@tangent.org-20080701205203-3jm6ga57uzxy8k4t
Merge of taylor's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
libs=" $ldflags -L$pkglibdir -lmysqlclient @ZLIB_DEPS@ @NON_THREADED_LIBS@"
108
108
libs="$libs @openssl_libs@ @STATIC_NSS_FLAGS@ "
109
109
libs_r=" $ldflags -L$pkglibdir -lmysqlclient_r @ZLIB_DEPS@ @LIBS@ @openssl_libs@ "
 
110
libdir="-L$pkglibdir"
110
111
embedded_libs=" $ldflags -L$pkglibdir -lmysqld @ZLIB_DEPS@ @LIBS@ @WRAPLIBS@ @innodb_system_libs@ @openssl_libs@ "
111
112
 
112
113
if [ -r "$pkglibdir/libmygcc.a" ]; then
162
163
        --include        [$include]
163
164
        --libs           [$libs]
164
165
        --libs_r         [$libs_r]
 
166
        --libdir         [$libdir]
165
167
        --plugindir      [$plugindir]
166
168
        --socket         [$socket]
167
169
        --port           [$port]
179
181
        --include) echo "$include" ;;
180
182
        --libs)    echo "$libs" ;;
181
183
        --libs_r)  echo "$libs_r" ;;
 
184
        --libdir)  echo "$libdir" ;;
182
185
        --plugindir) echo "$plugindir" ;;
183
186
        --socket)  echo "$socket" ;;
184
187
        --port)    echo "$port" ;;