summaryrefslogtreecommitdiff
path: root/openwrt/package/mysql/patches/750-mysql_config.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-01-10 22:52:34 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-01-10 22:52:34 +0000
commitb89d51ca661ae4cda8b1e874458f534766cb52cc (patch)
treeea5ee1c44507db2d394139fd34830a73735a7ff0 /openwrt/package/mysql/patches/750-mysql_config.patch
parent9125da75c97d219d5e040ee50a01fe4e07aa260e (diff)
downloadmtk-20170518-b89d51ca661ae4cda8b1e874458f534766cb52cc.zip
mtk-20170518-b89d51ca661ae4cda8b1e874458f534766cb52cc.tar.gz
mtk-20170518-b89d51ca661ae4cda8b1e874458f534766cb52cc.tar.bz2
update mysql to 5.0 (fix #9)
SVN-Revision: 2889
Diffstat (limited to 'openwrt/package/mysql/patches/750-mysql_config.patch')
-rw-r--r--openwrt/package/mysql/patches/750-mysql_config.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/package/mysql/patches/750-mysql_config.patch b/openwrt/package/mysql/patches/750-mysql_config.patch
deleted file mode 100644
index 972a71a..0000000
--- a/openwrt/package/mysql/patches/750-mysql_config.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- 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