1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

BUG#9714 libsupc++ problem

- Remove linking of libsupc++
 - Move all local static variables to filescope
This commit is contained in:
msvensson@neptunus.(none)
2005-04-27 11:25:08 +02:00
parent ea9cbd3bb4
commit c12ee8dc16
14 changed files with 103 additions and 63 deletions

View File

@@ -186,8 +186,14 @@ static int free_share(EXAMPLE_SHARE *share)
exist for the storage engine. This is also used by the default rename_table and
delete_table method in handler.cc.
*/
static const char *ha_example_exts[] = {
NullS
};
const char **ha_example::bas_ext() const
{ static const char *ext[]= { NullS }; return ext; }
{
return ha_example_exts;
}
/*