diff options
author | unknown <msvensson@neptunus.(none)> | 2005-04-27 11:25:08 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-04-27 11:25:08 +0200 |
commit | 072fa90d9e7f5ac4df1fb42054b906b872497113 (patch) | |
tree | ffe13a13497b747762b2e275e63a444e442611a6 /sql/ha_blackhole.cc | |
parent | 9e7028c8e0708877fa802a1b589f695d78ccd1ea (diff) | |
download | mariadb-git-072fa90d9e7f5ac4df1fb42054b906b872497113.tar.gz |
BUG#9714 libsupc++ problem
- Remove linking of libsupc++
- Move all local static variables to filescope
configure.in:
Remove linking with libsupc++
sql/examples/ha_archive.cc:
Move local static variables to file scope
sql/examples/ha_example.cc:
Move local static variables to file scope
sql/examples/ha_tina.cc:
Move local static variables to file scope
sql/ha_berkeley.cc:
Move local static variables to file scope
sql/ha_blackhole.cc:
Move local static variables to file scope
sql/ha_federated.cc:
Move local static variables to file scope
sql/ha_heap.cc:
Move local static variables to file scope
sql/ha_innodb.cc:
Move local static variables to file scope
sql/ha_myisam.cc:
Move local static variables to file scope
sql/ha_myisammrg.cc:
Move local static variables to file scope
sql/ha_ndbcluster.cc:
Move local static variables to file scope
sql/item.cc:
Move local static instance variables to file scope
sql/item_sum.cc:
Move local static variables to file scope
Diffstat (limited to 'sql/ha_blackhole.cc')
-rw-r--r-- | sql/ha_blackhole.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sql/ha_blackhole.cc b/sql/ha_blackhole.cc index e34d5d723a4..d9aedbe751d 100644 --- a/sql/ha_blackhole.cc +++ b/sql/ha_blackhole.cc @@ -25,10 +25,13 @@ #include "ha_blackhole.h" +static const char *ha_black_hole_exts[] = { + NullS +}; + const char **ha_blackhole::bas_ext() const -{ - static const char *ext[]= { NullS }; - return ext; +{ + return ha_blackhole_exts; } int ha_blackhole::open(const char *name, int mode, uint test_if_locked) |