aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2013-09-08 23:59:24 +0000
committerrowanbeentje <rowan@beent.je>2013-09-08 23:59:24 +0000
commit43271f8e86b54c7d953c0e1c4059a2530693eb39 (patch)
treed06ffec20d6680489127832366e563ac86f4bbba /Frameworks
parent2aaee4e4813af7e56ffb4fe0a115a9de90aa3489 (diff)
downloadsequelpro-43271f8e86b54c7d953c0e1c4059a2530693eb39.tar.gz
sequelpro-43271f8e86b54c7d953c0e1c4059a2530693eb39.tar.bz2
sequelpro-43271f8e86b54c7d953c0e1c4059a2530693eb39.zip
- Alter the MySQL library build script to explicitly use the system zlib. This is documented as being the default, but setting this has resulted in a smaller binary and lower CPU usage with compressed MySQL connection transport.
- Rebuild the libraries with the new setting - Update localisable strings
Diffstat (limited to 'Frameworks')
-rw-r--r--Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.abin8059472 -> 7884800 bytes
-rwxr-xr-xFrameworks/SPMySQLFramework/build-mysql-client.sh2
2 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a b/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a
index a345cc0b..aad3f2a3 100644
--- a/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a
+++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a
Binary files differ
diff --git a/Frameworks/SPMySQLFramework/build-mysql-client.sh b/Frameworks/SPMySQLFramework/build-mysql-client.sh
index 4109d283..5fd1accb 100755
--- a/Frameworks/SPMySQLFramework/build-mysql-client.sh
+++ b/Frameworks/SPMySQLFramework/build-mysql-client.sh
@@ -47,7 +47,7 @@ CLEAN='NO'
MIN_OS_X_VERSION='10.6'
ARCHITECTURES='-arch i386 -arch x86_64'
-CONFIGURE_OPTIONS='-DBUILD_CONFIG=mysql_release -DENABLED_LOCAL_INFILE=1 -DWITH_SSL=bundled -DWITH_MYSQLD_LDFLAGS="-all-static --disable-shared" -DWITHOUT_SERVER=1'
+CONFIGURE_OPTIONS='-DBUILD_CONFIG=mysql_release -DENABLED_LOCAL_INFILE=1 -DWITH_SSL=bundled -DWITH_MYSQLD_LDFLAGS="-all-static --disable-shared" -DWITHOUT_SERVER=1 -DWITH_ZLIB=system'
OUTPUT_DIR='SPMySQLFiles.build'
ESC=`printf '\033'`