From 8ecd66fc89409e08562dbc314ac2bb297da18e70 Mon Sep 17 00:00:00 2001 From: def Date: Thu, 5 Feb 2015 23:56:03 +0100 Subject: [PATCH] Fix windows build --- scripts/make_release.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/make_release.py b/scripts/make_release.py index 6b097d692..272367ded 100644 --- a/scripts/make_release.py +++ b/scripts/make_release.py @@ -82,6 +82,9 @@ if include_data and not use_bundle: #shutil.copy("libmysql.dll", package_dir) #shutil.copy("mysqlcppconn.dll", package_dir) shutil.copy("libcurl.dll", package_dir) + shutil.copy("libeay32.dll", package_dir) + shutil.copy("libidn-11.dll", package_dir) + shutil.copy("ssleay32.dll", package_dir) if include_exe and not use_bundle: shutil.copy(name+exe_ext, package_dir)