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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5db0768e
Commit
5db0768e
authored
Jun 01, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
into mysql.com:/Users/mikron/mycluster
parents
cd5130e1
efeb3c68
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
41 additions
and
31 deletions
+41
-31
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
acinclude.m4
acinclude.m4
+1
-1
configure.in
configure.in
+11
-3
ndb/Makefile.am
ndb/Makefile.am
+15
-5
ndb/config/type_ndbapitest.mk.am
ndb/config/type_ndbapitest.mk.am
+1
-0
ndb/config/type_ndbapitools.mk.am
ndb/config/type_ndbapitools.mk.am
+5
-0
ndb/include/Makefile.am
ndb/include/Makefile.am
+0
-5
ndb/src/Makefile.am
ndb/src/Makefile.am
+2
-0
ndb/src/common/transporter/Makefile.am
ndb/src/common/transporter/Makefile.am
+4
-16
ndb/tools/Makefile.am
ndb/tools/Makefile.am
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
5db0768e
...
...
@@ -168,6 +168,7 @@ tom@basil-firewall.home.com
tomas@mc05.(none)
tomas@poseidon.(none)
tomas@poseidon.bredbandsbolaget.se
tomas@poseidon.ndb.mysql.com
tonu@hundin.mysql.fi
tonu@volk.internalnet
tonu@x153.internalnet
...
...
acinclude.m4
View file @
5db0768e
...
...
@@ -1397,7 +1397,7 @@ AC_DEFUN([MYSQL_CHECK_NDBCLUSTER], [
AC_DEFINE(HAVE_NDBCLUSTER_DB)
have_ndbcluster="yes"
ndbcluster_includes="-I../ndb/include -I../ndb/include/ndbapi"
ndbcluster_libs="\$(top_builddir)/ndb/src/
libndbclient.l
a"
ndbcluster_libs="\$(top_builddir)/ndb/src/
.libs/libndbclient.
a"
ndbcluster_system_libs=""
MYSQL_CHECK_NDB_OPTIONS
;;
...
...
configure.in
View file @
5db0768e
...
...
@@ -2919,8 +2919,16 @@ AC_SUBST(mgmapiincludedir)
AC_SUBST
(
NDB_NDBAPICLIENT_INCLUDES
)
AC_SUBST
(
NDB_MGMAPICLIENT_INCLUDES
)
AM_CONDITIONAL
(
HAVE_NDB_SHM,
test
X
"
$have_ndb_shm
"
=
Xyes
)
AM_CONDITIONAL
(
HAVE_NDB_SCI,
test
X
"
$have_ndb_sci
"
=
Xyes
)
ndb_transporter_opt_objs
=
""
if
test
X
"
$have_ndb_shm
"
=
Xyes
then
ndb_transporter_opt_objs
=
"
$(
ndb_transporter_opt_objs
)
SHM_Transporter.lo SHM_Transporter.unix.lo"
fi
if
test
X
"
$have_ndb_sci
"
=
Xyes
then
ndb_transporter_opt_objs
=
"
$(
ndb_transporter_opt_objs
)
SCI_Transporter.lo"
fi
AC_SUBST
(
ndb_transporter_opt_objs
)
#NDB_TYPE_COMMON="include \$(top_srcdir)/ndb/config/common.mk.am"
#NDB_TYPE_NDBAPI="include \$(top_srcdir)/ndb/config/type_ndbapi.mk.am"
...
...
@@ -2937,7 +2945,7 @@ AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS)
# Output results
AC_OUTPUT
(
Makefile extra/Makefile mysys/Makefile isam/Makefile dnl
ndb/Makefile ndb/
include/Makefile ndb/
src/Makefile ndb/src/common/Makefile dnl
ndb/Makefile ndb/src/Makefile ndb/src/common/Makefile dnl
ndb/tools/Makefile dnl
ndb/src/common/debugger/Makefile ndb/src/common/debugger/signaldata/Makefile dnl
ndb/src/common/portlib/Makefile ndb/src/common/portlib/unix/Makefile dnl
...
...
ndb/Makefile.am
View file @
5db0768e
## find * -name '*.hpp' -print | grep -v SCCS | grep -v odbc | sed 's/\.hpp/\.hpp \\/' > tmp.out
## find * -name '*.h' -print | grep -v SCCS | grep -v odbc | sed 's/\.h/\.h \\/' >> tmp.out
SUBDIRS
=
.
include src
test
tools
SUBDIRS
=
src
test
tools .
ndbinclude_HEADERS
=
\
include/ndb_types.h
\
...
...
@@ -31,4 +28,17 @@ mgmapiinclude_HEADERS = \
include/mgmapi/mgmapi.h
\
include/mgmapi/mgmapi_debug.h
noinst_HEADERS
=
EXTRA_DIST
=
include
dist-hook
:
-
rm
-rf
`
find
$(distdir)
-type
d
-name
SCCS
`
list
=
'
$(SUBDIRS)
'
;
for
subdir
in
$$
list
;
do
\
if
test
"
$$
subdir"
!=
"."
;
then
\
files
=
"
`
find
$$
subdir
-name
'*\.h'
`
`
find
$$
subdir
-name
'*\.hpp'
`
"
;
\
for
f
in
$$
files
;
do
\
if
test
-d
"
$(distdir)
/
`
dirname
$$
f
`
"
-a
!
-e
"
$(distdir)
/
$$
f"
;
then
\
cp
$$
f
$(distdir)
/
$$
f
;
\
fi
;
\
done
;
\
fi
;
\
done
ndb/config/type_ndbapitest.mk.am
View file @
5db0768e
AM_LDFLAGS = -rpath @ndblibdir@
LDADD += $(top_srcdir)/ndb/test/src/libNDBT.a \
$(top_srcdir)/ndb/src/libndbclient.la
...
...
ndb/config/type_ndbapitools.mk.am
0 → 100644
View file @
5db0768e
LDADD += $(top_srcdir)/ndb/test/src/libNDBT.a \
$(top_srcdir)/ndb/src/.libs/libndbclient.a
INCLUDES += @NDB_NDBAPITEST_INCLUDES@
ndb/include/Makefile.am
deleted
100644 → 0
View file @
cd5130e1
noinst_HEADERS
=
# Don't update the files from bitkeeper
%
::
SCCS/s.%
ndb/src/Makefile.am
View file @
5db0768e
...
...
@@ -14,3 +14,5 @@ libndbclient_la_LIBADD = \
$(top_srcdir)
/ndb/src/common/logger/liblogger.la
\
$(top_srcdir)
/ndb/src/common/portlib/unix/libportlib.la
\
$(top_srcdir)
/ndb/src/common/util/libgeneral.la
AM_LDFLAGS
=
-rpath
@ndblibdir@
ndb/src/common/transporter/Makefile.am
View file @
5db0768e
noinst_LTLIBRARIES
=
libtransporter.la
#libtransporter_la_SOURCES = @NDB_TRANSPORTER_SOURCES@
libtransporter_la_SOURCES
=
\
Transporter.cpp
\
SendBuffer.cpp
\
...
...
@@ -10,20 +8,10 @@ libtransporter_la_SOURCES = \
TransporterRegistry.cpp
\
Packer.cpp
#libtransporter_la_SOURCES = \
# Transporter.cpp \
# SendBuffer.cpp \
# TCP_Transporter.cpp \
# TransporterRegistry.cpp \
# Packer.cpp
#
#if HAVE_NDB_SHM
# libtransporter_la_SOURCES += SHM_Transporter.cpp SHM_Transporter.unix.cpp
#endif
#
#if HAVE_NDB_SCI
# libtransporter_la_SOURCES += SCI_Transporter.cpp
#endif
EXTRA_libtransporter_la_SOURCES
=
SHM_Transporter.cpp SHM_Transporter.unix.cpp SCI_Transporter.cpp
libtransporter_la_LIBADD
=
@ndb_transporter_opt_objs@
libtransporter_la_DEPENDENCIES
=
@ndb_transporter_opt_objs@
INCLUDES_LOC
=
-I
$(top_srcdir)
/ndb/include/kernel
-I
$(top_srcdir)
/ndb/include/transporter
...
...
ndb/tools/Makefile.am
View file @
5db0768e
...
...
@@ -11,7 +11,7 @@ select_all_SOURCES = select_all.cpp
select_count_SOURCES
=
select_count.cpp
include
$(top_srcdir)/ndb/config/common.mk.am
include
$(top_srcdir)/ndb/config/type_ndbapit
est
.mk.am
include
$(top_srcdir)/ndb/config/type_ndbapit
ools
.mk.am
# Don't update the files from bitkeeper
%
::
SCCS/s.%
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