Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0f8f444b
Commit
0f8f444b
authored
Dec 21, 2005
by
acurtis@xiphis.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change for plugin storage engine to be built after mysqld
parent
e2870b24
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
9 deletions
+7
-9
Makefile.am
Makefile.am
+1
-0
config/ac-macros/storage.m4
config/ac-macros/storage.m4
+4
-2
configure.in
configure.in
+1
-0
storage/Makefile.am
storage/Makefile.am
+1
-1
storage/csv/Makefile.am
storage/csv/Makefile.am
+0
-3
storage/example/Makefile.am
storage/example/Makefile.am
+0
-3
No files found.
Makefile.am
View file @
0f8f444b
...
...
@@ -26,6 +26,7 @@ SUBDIRS = . include @docs_dirs@ @zlib_dir@ @yassl_dir@ \
@thread_dirs@ pstack
\
@sql_union_dirs@ @mysql_se_dirs@
\
@sql_server@ scripts @man_dirs@ tests
\
@mysql_se_plugins@
\
netware @libmysqld_dirs@
\
@bench_dirs@ support-files @tools_dirs@
...
...
config/ac-macros/storage.m4
View file @
0f8f444b
...
...
@@ -40,9 +40,11 @@ then
mysql_se_decls="${mysql_se_decls},$6"
mysql_se_htons="${mysql_se_htons},&$6"
mysql_se_objs="$mysql_se_objs $8"
mysql_se_dirs="$mysql_se_dirs $7"
mysql_se_libs="$mysql_se_libs $9"
else
mysql_se_plugins="$mysql_se_plugins $7"
fi
mysql_se_dirs="$mysql_se_dirs $7"
mysql_se_libs="$mysql_se_libs $9"
$10
fi
])
...
...
configure.in
View file @
0f8f444b
...
...
@@ -2520,6 +2520,7 @@ AC_SUBST(mysql_se_libs)
AC_SUBST
(
mysql_se_objs
)
AC_SUBST
(
mysql_se_htons
)
AC_SUBST
(
mysql_se_decls
)
AC_SUBST
(
mysql_se_plugins
)
# Now that sql_client_dirs and sql_server_dirs are stable, determine the union.
...
...
storage/Makefile.am
View file @
0f8f444b
...
...
@@ -21,7 +21,7 @@ AUTOMAKE_OPTIONS = foreign
# These are built from source in the Docs directory
EXTRA_DIST
=
SUBDIRS
=
DIST_SUBDIRS
=
.
bdb heap innobase myisam myisammrg ndb
DIST_SUBDIRS
=
.
csv example
bdb heap innobase myisam myisammrg ndb
# Don't update the files from bitkeeper
%
::
SCCS/s.%
storage/csv/Makefile.am
View file @
0f8f444b
...
...
@@ -26,9 +26,6 @@ INCLUDES = -I$(top_srcdir)/include \
-I
$(srcdir)
WRAPLIBS
=
$(top_builddir)/sql/sql_yacc.h
:
$(top_builddir)/sql/sql_yacc.yy
(
cd
$(top_builddir)
/sql
&&
$(MAKE)
sql_yacc.cc
)
pkglib_LTLIBRARIES
=
ha_csv.la
ha_csv_la_LDFLAGS
=
-module
...
...
storage/example/Makefile.am
View file @
0f8f444b
...
...
@@ -26,9 +26,6 @@ INCLUDES = -I$(top_srcdir)/include \
-I
$(srcdir)
WRAPLIBS
=
$(top_builddir)/sql/sql_yacc.h
:
$(top_builddir)/sql/sql_yacc.yy
(
cd
$(top_builddir)
/sql
&&
$(MAKE)
sql_yacc.cc
)
pkglib_LTLIBRARIES
=
ha_example.la
ha_example_la_LDFLAGS
=
-module
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment