diff options
author | unknown <petr@mysql.com> | 2005-05-18 16:05:58 +0400 |
---|---|---|
committer | unknown <petr@mysql.com> | 2005-05-18 16:05:58 +0400 |
commit | 832a2b27fb6c585e49ff6da3d4919ede2dd0cf67 (patch) | |
tree | 7f6424c0ef70b4fcbed7304cab2d8e388962d6ee /server-tools | |
parent | 625bf498ebd6cede1e54bf5445bb72dd6945629f (diff) | |
download | mariadb-git-832a2b27fb6c585e49ff6da3d4919ede2dd0cf67.tar.gz |
fix for compilation problem with --with-openssl reported by Guilhem
server-tools/instance-manager/Makefile.am:
fix for compilation problem with --with-openssl
Diffstat (limited to 'server-tools')
-rw-r--r-- | server-tools/instance-manager/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server-tools/instance-manager/Makefile.am b/server-tools/instance-manager/Makefile.am index 18f62a04bfb..2788aef8f82 100644 --- a/server-tools/instance-manager/Makefile.am +++ b/server-tools/instance-manager/Makefile.am @@ -14,7 +14,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -INCLUDES= -I$(top_srcdir)/include -I$(top_builddir)/include +INCLUDES= @ZLIB_INCLUDES@ -I$(top_srcdir)/include \ + $(openssl_includes) -I$(top_builddir)/include DEFS= -DMYSQL_INSTANCE_MANAGER -DMYSQL_SERVER |