diff options
author | Sergey Vojtovich <svoj@sun.com> | 2009-06-17 14:38:41 +0500 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2009-06-17 14:38:41 +0500 |
commit | f873067a166264b3a0aa9fb4f77bb23831014d98 (patch) | |
tree | 3f784cc40a3011ea088711f041ce6f2796c0d79a /storage/innodb_plugin | |
parent | 8b30b46cd0c960506cb9f1425ffa72660048704a (diff) | |
download | mariadb-git-f873067a166264b3a0aa9fb4f77bb23831014d98.tar.gz |
When using bundled zlib, INNODB_PLUGIN was looking for
zlib headers in wrong location.
Fixed by using path exported by zlib.m4 macro.
storage/innodb_plugin/Makefile.am:
Include zlib headers from a proper location.
Diffstat (limited to 'storage/innodb_plugin')
-rw-r--r-- | storage/innodb_plugin/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/Makefile.am b/storage/innodb_plugin/Makefile.am index 09e5e89e323..9f593635088 100644 --- a/storage/innodb_plugin/Makefile.am +++ b/storage/innodb_plugin/Makefile.am @@ -24,7 +24,7 @@ INCLUDES= -I$(top_srcdir)/include -I$(top_builddir)/include \ -I$(top_srcdir)/regex \ -I$(srcdir)/include \ -I$(top_srcdir)/sql \ - -I$(srcdir) + -I$(srcdir) @ZLIB_INCLUDES@ DEFS= @DEFS@ |