diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-27 05:35:14 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-27 05:35:14 +0000 |
commit | 103ef5cc485e4dc454dd8bc4edaef6ffb7ed06d0 (patch) | |
tree | 8fcadb349e81e3c38dd2f13d7c7c0b5448280b09 /openwrt/package | |
parent | f2c6a4ab56f68b261c79c3bf56410e780657aa20 (diff) | |
download | mtk-20170518-103ef5cc485e4dc454dd8bc4edaef6ffb7ed06d0.zip mtk-20170518-103ef5cc485e4dc454dd8bc4edaef6ffb7ed06d0.tar.gz mtk-20170518-103ef5cc485e4dc454dd8bc4edaef6ffb7ed06d0.tar.bz2 |
Remove host include and lib search pathes from mysql_config
SVN-Revision: 1074
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/mysql/patches/750-mysql_config.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/package/mysql/patches/750-mysql_config.patch b/openwrt/package/mysql/patches/750-mysql_config.patch new file mode 100644 index 0000000..972a71a --- /dev/null +++ b/openwrt/package/mysql/patches/750-mysql_config.patch @@ -0,0 +1,21 @@ +--- mysql-4.0.24/scripts/mysql_config.sh.orig 2005-03-05 01:38:14.000000000 +0100 ++++ mysql-4.0.24/scripts/mysql_config.sh 2005-05-27 06:55:46.000000000 +0200 +@@ -86,13 +86,13 @@ + + # Create options + +-libs="$ldflags -L$pkglibdir -lmysqlclient $client_libs" ++libs="-lmysqlclient $client_libs" + libs=`echo "$libs" | sed -e 's; \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'` +-libs_r="$ldflags -L$pkglibdir -lmysqlclient_r @LIBS@ @openssl_libs@" ++libs_r="-lmysqlclient_r @LIBS@ @openssl_libs@" + libs_r=`echo "$libs_r" | sed -e 's; \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'` +-cflags="-I$pkgincludedir @CFLAGS@ " #note: end space! +-include="-I$pkgincludedir" +-embedded_libs="$ldflags -L$pkglibdir -lmysqld @LIBS@ @WRAPLIBS@ @innodb_system_libs@" ++cflags=" " #note: end space! ++include="" ++embedded_libs="-lmysqld @LIBS@ @WRAPLIBS@ @innodb_system_libs@" + embedded_libs=`echo "$embedded_libs" | sed -e 's; \+; ;g' | sed -e 's;^ *;;' | sed -e 's; *\$;;'` + + # Remove some options that a client doesn't have to care about |