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
cbe9d229
Commit
cbe9d229
authored
Nov 27, 2006
by
kent@mysql.com/kent-amd64.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/kent/bk/mysql-4.1
into mysql.com:/home/kent/bk/mysql-5.0
parents
9d328d7d
6c85ba39
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
56 additions
and
29 deletions
+56
-29
libmysql_r/Makefile.am
libmysql_r/Makefile.am
+5
-5
libmysqld/Makefile.am
libmysqld/Makefile.am
+18
-5
ndb/config/type_kernel.mk.am
ndb/config/type_kernel.mk.am
+4
-1
ndb/config/type_ndbapi.mk.am
ndb/config/type_ndbapi.mk.am
+4
-1
ndb/config/type_ndbapitest.mk.am
ndb/config/type_ndbapitest.mk.am
+4
-1
ndb/config/type_ndbapitools.mk.am
ndb/config/type_ndbapitools.mk.am
+4
-1
ndb/config/type_util.mk.am
ndb/config/type_util.mk.am
+2
-0
ndb/src/kernel/Makefile.am
ndb/src/kernel/Makefile.am
+15
-15
No files found.
libmysql_r/Makefile.am
View file @
cbe9d229
...
...
@@ -29,8 +29,6 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
## automake barfs if you don't use $(srcdir) or $(top_srcdir) in include
include
$(top_srcdir)/libmysql/Makefile.shared
libmysql_dir
=
$(top_srcdir)
/libmysql
libmysqlclient_r_la_SOURCES
=
$(target_sources)
libmysqlclient_r_la_LIBADD
=
$(target_libadd)
$(yassl_las)
libmysqlclient_r_la_LDFLAGS
=
$(target_ldflags)
...
...
@@ -38,7 +36,9 @@ libmysqlclient_r_la_LDFLAGS = $(target_ldflags)
# This is called from the toplevel makefile
link_sources
:
set
-x
;
\
for
f
in
`
cd
$(libmysql_dir)
&&
echo
*
.[ch]
`
;
do
\
for
d
in
$(top_srcdir)
/libmysql
$(top_builddir)
/libmysql
;
do
\
for
f
in
`
cd
$$
d
&&
echo
*
.[ch]
`
;
do
\
rm
-f
$$
f
;
\
@LN_CP_F@
$(libmysql_dir)
/
$$
f
$$
f
;
\
@LN_CP_F@
$$
d/
$$
f
$$
f
;
\
done
;
\
done
libmysqld/Makefile.am
View file @
cbe9d229
...
...
@@ -25,9 +25,10 @@ DEFS = -DEMBEDDED_LIBRARY -DMYSQL_SERVER \
-DDEFAULT_MYSQL_HOME
=
"
\"
$(MYSQLBASEdir)
\"
"
\
-DDATADIR
=
"
\"
$(MYSQLDATAdir)
\"
"
\
-DSHAREDIR
=
"
\"
$(MYSQLSHAREdir)
\"
"
INCLUDES
=
@bdb_includes@
\
INCLUDES
=
@bdb_includes@
@innodb_includes@ @ndbcluster_includes@
\
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
-I
$(top_srcdir)
/sql
-I
$(top_srcdir)
/sql/examples
\
-I
$(top_builddir)
/sql
-I
$(top_srcdir)
/sql
\
-I
$(top_srcdir)
/sql/examples
\
-I
$(top_srcdir)
/regex
\
$(openssl_includes)
@ZLIB_INCLUDES@
...
...
@@ -118,16 +119,28 @@ endif
#libmysqld_la_LDFLAGS = -version-info @SHARED_LIB_VERSION@
#CLEANFILES = $(libmysqld_la_LIBADD) libmysqld.la
# This is called from the toplevel makefile
# This is called from the toplevel makefile. If we can link now
# to an existing file in source, we do that, else we assume it
# will show up in the build tree eventually (generated file).
link_sources
:
set
-x
;
\
for
f
in
$(sqlsources)
;
do
\
rm
-f
$$
f
;
\
if
test
-e
$(top_srcdir)
/sql/
$$
f
;
\
then
\
@LN_CP_F@
$(top_srcdir)
/sql/
$$
f
$$
f
;
\
else
\
@LN_CP_F@
$(top_builddir)
/sql/
$$
f
$$
f
;
\
fi
;
\
done
;
\
for
f
in
$(libmysqlsources)
;
do
\
rm
-f
$$
f
;
\
if
test
-e
$(top_srcdir)
/libmysql/
$$
f
;
\
then
\
@LN_CP_F@
$(top_srcdir)
/libmysql/
$$
f
$$
f
;
\
else
\
@LN_CP_F@
$(top_builddir)
/libmysql/
$$
f
$$
f
;
\
fi
;
\
done
;
\
for
f
in
$(sqlexamplessources)
;
do
\
rm
-f
$$
f
;
\
...
...
ndb/config/type_kernel.mk.am
View file @
cbe9d229
INCLUDES += \
-I$(srcdir) -I$(top_srcdir)/include \
-I$(srcdir) \
-I$(top_builddir)/include \
-I$(top_builddir)/ndb/include \
-I$(top_srcdir)/include \
-I$(top_srcdir)/ndb/include \
-I$(top_srcdir)/ndb/src/kernel/vm \
-I$(top_srcdir)/ndb/src/kernel/error \
...
...
ndb/config/type_ndbapi.mk.am
View file @
cbe9d229
INCLUDES += \
-I$(srcdir) -I$(top_srcdir)/include \
-I$(srcdir) \
-I$(top_builddir)/include \
-I$(top_builddir)/ndb/include \
-I$(top_srcdir)/include \
-I$(top_srcdir)/mysys \
-I$(top_srcdir)/ndb/include \
-I$(top_srcdir)/ndb/include/kernel \
...
...
ndb/config/type_ndbapitest.mk.am
View file @
cbe9d229
...
...
@@ -5,7 +5,10 @@ LDADD += $(top_builddir)/ndb/test/src/libNDBT.a \
$(top_builddir)/mysys/libmysys.a \
$(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@
INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/include \
INCLUDES += -I$(top_srcdir) \
-I$(top_builddir)/include \
-I$(top_builddir)/ndb/include \
-I$(top_srcdir)/include \
-I$(top_srcdir)/ndb/include \
-I$(top_srcdir)/ndb/include/ndbapi \
-I$(top_srcdir)/ndb/include/util \
...
...
ndb/config/type_ndbapitools.mk.am
View file @
cbe9d229
...
...
@@ -5,7 +5,10 @@ LDADD += \
$(top_builddir)/mysys/libmysys.a \
$(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@
INCLUDES += -I$(srcdir) -I$(top_srcdir)/include \
INCLUDES += -I$(srcdir) \
-I$(top_builddir)/include \
-I$(top_builddir)/ndb/include \
-I$(top_srcdir)/include \
-I$(top_srcdir)/ndb/include \
-I$(top_srcdir)/ndb/include/ndbapi \
-I$(top_srcdir)/ndb/include/util \
...
...
ndb/config/type_util.mk.am
View file @
cbe9d229
INCLUDES += -I$(srcdir) \
-I$(top_builddir)/include \
-I$(top_builddir)/ndb/include \
-I$(top_srcdir)/include \
-I$(top_srcdir)/mysys \
-I$(top_srcdir)/ndb/include \
...
...
ndb/src/kernel/Makefile.am
View file @
cbe9d229
...
...
@@ -9,21 +9,21 @@ ndbd_SOURCES = main.cpp SimBlockList.cpp
include
$(top_srcdir)/ndb/config/type_kernel.mk.am
INCLUDES
+=
\
-I
blocks
/cmvmi
\
-I
blocks
/dbacc
\
-I
blocks
/dbdict
\
-I
blocks
/dbdih
\
-I
blocks
/dblqh
\
-I
blocks
/dbtc
\
-I
blocks
/dbtup
\
-I
blocks
/ndbfs
\
-I
blocks
/ndbcntr
\
-I
blocks
/qmgr
\
-I
blocks
/trix
\
-I
blocks
/backup
\
-I
blocks
/dbutil
\
-I
blocks
/suma
\
-I
blocks
/dbtux
-I
$(srcdir)
/
blocks/cmvmi
\
-I
$(srcdir)
/
blocks/dbacc
\
-I
$(srcdir)
/
blocks/dbdict
\
-I
$(srcdir)
/
blocks/dbdih
\
-I
$(srcdir)
/
blocks/dblqh
\
-I
$(srcdir)
/
blocks/dbtc
\
-I
$(srcdir)
/
blocks/dbtup
\
-I
$(srcdir)
/
blocks/ndbfs
\
-I
$(srcdir)
/
blocks/ndbcntr
\
-I
$(srcdir)
/
blocks/qmgr
\
-I
$(srcdir)
/
blocks/trix
\
-I
$(srcdir)
/
blocks/backup
\
-I
$(srcdir)
/
blocks/dbutil
\
-I
$(srcdir)
/
blocks/suma
\
-I
$(srcdir)
/
blocks/dbtux
LDADD
+=
\
blocks/cmvmi/libcmvmi.a
\
...
...
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