summaryrefslogtreecommitdiff
path: root/storage/myisam/plug.in
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/deer.(none)>2006-10-18 17:03:37 +0500
committerunknown <holyfoot/hf@mysql.com/deer.(none)>2006-10-18 17:03:37 +0500
commitfe68583216006791acb0ec170433a4d9efc93c17 (patch)
tree2f74e8b4163c17f3bbed2da8aef95953048655bc /storage/myisam/plug.in
parent86921c180f0120d5e1b0d13de516dfa8e5efa15d (diff)
downloadmariadb-git-fe68583216006791acb0ec170433a4d9efc93c17.tar.gz
bug #23369 (Embedded library can't be linked)
Problem is that some files moved to storage/*/ still are dependent on sql/ code (usually use members of THD structure) that can get different being compiled with another #define-s Code added to recompile these for the embedded server config/ac-macros/plugins.m4: macros added to check if the storage has sql/ - dependent code libmysqld/Makefile.am: symlink files from storage/*/ needed to be recompiled with EMBEDDED_LIBRARY storage/federated/plug.in: ha_federated.cc uses THD structure storage/heap/plug.in: ha_heap.cc uses THD structure storage/innobase/plug.in: ha_innodb.cc uses THD structure storage/myisam/plug.in: ha_myisam.cc uses THD structure storage/myisammrg/plug.in: ha_myisammrg.cc uses THD structure
Diffstat (limited to 'storage/myisam/plug.in')
-rw-r--r--storage/myisam/plug.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/myisam/plug.in b/storage/myisam/plug.in
index 3160752182d..051ec2d54aa 100644
--- a/storage/myisam/plug.in
+++ b/storage/myisam/plug.in
@@ -3,4 +3,5 @@ MYSQL_STORAGE_ENGINE(myisam,no, [MyISAM Storage Engine],
MYSQL_PLUGIN_DIRECTORY(myisam, [storage/myisam])
MYSQL_PLUGIN_STATIC(myisam, [libmyisam.a])
MYSQL_PLUGIN_MANDATORY(myisam) dnl Default
+MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS(myisam, [ha_myisam.cc])