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
e1e48d82
Commit
e1e48d82
authored
Apr 01, 2009
by
Paul McCullagh
Browse files
Options
Browse Files
Download
Plain Diff
Corrected automake
parents
a61584ad
6120cc96
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
69 deletions
+29
-69
mysys/my_malloc.c
mysys/my_malloc.c
+3
-0
mysys/my_once.c
mysys/my_once.c
+3
-0
mysys/my_realloc.c
mysys/my_realloc.c
+3
-0
storage/pbxt/plug.in
storage/pbxt/plug.in
+4
-5
storage/pbxt/src/Makefile-dzl.am
storage/pbxt/src/Makefile-dzl.am
+0
-49
storage/pbxt/src/Makefile.am
storage/pbxt/src/Makefile.am
+16
-15
No files found.
mysys/my_malloc.c
View file @
e1e48d82
...
...
@@ -13,6 +13,9 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* my_global.h may define SAFEMALLOC (through my_config.h). */
#include <my_global.h>
#ifdef SAFEMALLOC
/* We don't need SAFEMALLOC here */
#undef SAFEMALLOC
#endif
...
...
mysys/my_once.c
View file @
e1e48d82
...
...
@@ -15,6 +15,9 @@
/* Not MT-SAFE */
/* my_global.h may define SAFEMALLOC (through my_config.h). */
#include <my_global.h>
#ifdef SAFEMALLOC
/* We don't need SAFEMALLOC here */
#undef SAFEMALLOC
#endif
...
...
mysys/my_realloc.c
View file @
e1e48d82
...
...
@@ -13,6 +13,9 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* my_global.h may define SAFEMALLOC (through my_config.h). */
#include <my_global.h>
#ifdef SAFEMALLOC
/* We don't need SAFEMALLOC here */
#undef SAFEMALLOC
#endif
...
...
storage/pbxt/plug.in
View file @
e1e48d82
DRIZZLE
_STORAGE_ENGINE(pbxt,no, [PBXT Storage Engine],
MYSQL
_STORAGE_ENGINE(pbxt,no, [PBXT Storage Engine],
[MVCC-based transactional engine], [max,max-no-ndb])
DRIZZLE_PLUGIN_DIRECTORY(pbxt, [storage/pbxt])
DRIZZLE_PLUGIN_STATIC(pbxt, [src/libpbxt.a])
DRIZZLE_PLUGIN_MANDATORY(pbxt) dnl Default
DRIZZLE_PLUGIN_ACTIONS(pbxt, [
MYSQL_PLUGIN_DIRECTORY(pbxt, [storage/pbxt])
MYSQL_PLUGIN_STATIC(pbxt, [src/libpbxt.a])
MYSQL_PLUGIN_ACTIONS(pbxt, [
AC_CONFIG_FILES(storage/pbxt/src/Makefile)
])
storage/pbxt/src/Makefile-dzl.am
deleted
100644 → 0
View file @
a61584ad
# Used to build Makefile.in
MYSQLDATAdir = $(localstatedir)
MYSQLSHAREdir = $(pkgdatadir)
MYSQLBASEdir= $(prefix)
MYSQLLIBdir= $(pkglibdir)
pkgplugindir = $(pkglibdir)/plugin
AM_CPPFLAGS = -I$(top_srcdir)/../../
LIBS =
LDADD =
noinst_HEADERS = bsearch_xt.h cache_xt.h ccutils_xt.h database_xt.h \
datadic_xt.h datalog_xt.h filesys_xt.h hashtab_xt.h \
ha_pbxt.h heap_xt.h index_xt.h linklist_xt.h \
memory_xt.h myxt_xt.h pthread_xt.h restart_xt.h \
streaming_xt.h sortedlist_xt.h strutil_xt.h \
tabcache_xt.h table_xt.h trace_xt.h thread_xt.h \
util_xt.h xaction_xt.h xactlog_xt.h lock_xt.h \
systab_xt.h ha_xtsys.h discover_xt.h \
mybs.h xt_config.h xt_defs.h xt_errno.h
EXTRA_LTLIBRARIES = libpbxt.la
libpbxt_la_SOURCES = bsearch_xt.cc cache_xt.cc ccutils_xt.cc database_xt.cc \
datadic_xt.cc datalog_xt.cc filesys_xt.cc hashtab_xt.cc \
ha_pbxt.cc heap_xt.cc index_xt.cc linklist_xt.cc \
memory_xt.cc myxt_xt.cc pthread_xt.cc restart_xt.cc \
streaming_xt.cc sortedlist_xt.cc strutil_xt.cc \
tabcache_xt.cc table_xt.cc trace_xt.cc thread_xt.cc \
systab_xt.cc ha_xtsys.cc discover_xt.cc \
util_xt.cc xaction_xt.cc xactlog_xt.cc lock_xt.cc
libpbxt_la_LDFLAGS = -module
# These are the warning Drizzle uses:
# DRIZZLE_WARNINGS = -W -Wall -Wextra -pedantic -Wundef -Wredundant-decls -Wno-strict-aliasing -Wno-long-long -Wno-unused-parameter
libpbxt_la_CXXFLAGS = $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
libpbxt_la_CFLAGS = $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN -std=c99
EXTRA_LIBRARIES = libpbxt.a
noinst_LIBRARIES = libpbxt.a
libpbxt_a_SOURCES = $(libpbxt_la_SOURCES)
libpbxt_a_CXXFLAGS = $(AM_CFLAGS) -DDRIZZLED -Wno-long-long
libpbxt_a_CFLAGS = $(AM_CFLAGS) -DDRIZZLED -std=c99
EXTRA_DIST = CMakeLists.txt
storage/pbxt/src/Makefile.am
View file @
e1e48d82
# Used to build Makefile.in
INCLUDES
=
$(ENG_MYSQL_INC)
MYSQLDATAdir
=
$(localstatedir)
MYSQLSHAREdir
=
$(pkgdatadir)
MYSQLBASEdir
=
$(prefix)
MYSQLLIBdir
=
$(pkglibdir)
pkgplugindir
=
$(pkglibdir)
/plugin
INCLUDES
=
-I
$(top_srcdir)
/include
-I
$(top_builddir)
/include
\
-I
$(top_srcdir)
/regex
\
-I
$(top_srcdir)
/storage/innobase/include
\
-I
$(top_srcdir)
/sql
\
-I
$(srcdir)
LIBS
=
LDADD
=
plugindir
=
$(ENG_PLUGIN_DIR)
noinst_HEADERS
=
bsearch_xt.h cache_xt.h ccutils_xt.h database_xt.h
\
datadic_xt.h datalog_xt.h filesys_xt.h hashtab_xt.h
\
ha_pbxt.h heap_xt.h index_xt.h linklist_xt.h
\
...
...
@@ -17,8 +24,7 @@ noinst_HEADERS = bsearch_xt.h cache_xt.h ccutils_xt.h database_xt.h \
util_xt.h xaction_xt.h xactlog_xt.h lock_xt.h
\
systab_xt.h ha_xtsys.h discover_xt.h
\
pbms.h xt_config.h xt_defs.h xt_errno.h locklist_xt.h
plugin_LTLIBRARIES
=
libpbxt.la
EXTRA_LTLIBRARIES
=
libpbxt.la
libpbxt_la_SOURCES
=
bsearch_xt.cc cache_xt.cc ccutils_xt.cc database_xt.cc
\
datadic_xt.cc datalog_xt.cc filesys_xt.cc hashtab_xt.cc
\
...
...
@@ -31,21 +37,16 @@ libpbxt_la_SOURCES = bsearch_xt.cc cache_xt.cc ccutils_xt.cc database_xt.cc \
libpbxt_la_LDFLAGS
=
-module
# These are the warning
s
Drizzle uses:
# These are the warning Drizzle uses:
# DRIZZLE_WARNINGS = -W -Wall -Wextra -pedantic -Wundef -Wredundant-decls -Wno-strict-aliasing -Wno-long-long -Wno-unused-parameter
libpbxt_la_CXXFLAGS
=
$(AM_CXXFLAGS)
-DMYSQL_DYNAMIC_PLUGIN
libpbxt_la_CFLAGS
=
$(AM_CFLAGS)
-DMYSQL_DYNAMIC_PLUGIN
-std
=
c99
EXTRA_LIBRARIES
=
libpbxt.a
libxtutil.a
noinst_LIBRARIES
=
libpbxt.a
libxtutil.a
EXTRA_LIBRARIES
=
libpbxt.a
noinst_LIBRARIES
=
libpbxt.a
libpbxt_a_SOURCES
=
$(libpbxt_la_SOURCES)
libpbxt_a_CXXFLAGS
=
$(AM_CXXFLAGS)
$(DRIZZLE_WARNINGS)
libpbxt_a_CFLAGS
=
$(AM_CFLAGS)
-std
=
c99
$(DRIZZLE_WARNINGS)
libxtutil_a_SOURCES
=
strutil_xt.cc
\
trace_xt.cc
libxtutil_a_CXXFLAGS
=
$(AM_CXXFLAGS)
libxtutil_a_CFLAGS
=
$(AM_CFLAGS)
libpbxt_a_CXXFLAGS
=
$(AM_CXXFLAGS)
-Wno-long-long
libpbxt_a_CFLAGS
=
$(AM_CFLAGS)
-std
=
c99
EXTRA_DIST
=
CMakeLists.txt
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