Navigation Menu

Skip to content

Commit

Permalink
make static name consistent with other storage engines.
Browse files Browse the repository at this point in the history
  • Loading branch information
fdiary committed Dec 27, 2011
1 parent d675e3d commit ec2f992
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile.am
Expand Up @@ -19,10 +19,10 @@ ha_groonga_la_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
ha_groonga_la_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
ha_groonga_la_SOURCES = ha_mroonga.cc mrn_sys.c mrn_table.cc

plugin_LIBRARIES = libha_groonga.a
libha_groonga_a_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS)
libha_groonga_a_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS)
libha_groonga_a_SOURCES = ha_mroonga.cc mrn_sys.c mrn_table.cc
plugin_LIBRARIES = libgroonga.a
libgroonga_la_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS)
libgroonga_la_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS)
libgroonga_la_SOURCES = ha_mroonga.cc mrn_sys.c mrn_table.cc

SUBDIRS = \
test \
Expand Down
2 changes: 1 addition & 1 deletion plug.in
Expand Up @@ -2,5 +2,5 @@ MYSQL_STORAGE_ENGINE(groonga,,[groonga storage engine],
[Fulltext search, column base],
[max,max-no-ndb])
MYSQL_PLUGIN_DIRECTORY(groonga, [storage/groonga-storage-engine])
MYSQL_PLUGIN_STATIC(groonga, [libgroonga_storage_engine.a])
MYSQL_PLUGIN_STATIC(groonga, [libgroonga.la])
MYSQL_PLUGIN_DYNAMIC(groonga, [ha_groonga.la])

0 comments on commit ec2f992

Please sign in to comment.