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
1b61612f
Commit
1b61612f
authored
Nov 27, 2006
by
kent@mysql.com/kent-amd64.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ha_innodb.m4, Makefile.am, ha_ndbcluster.m4, Makefile.shared, ha_berkeley.m4:
Reenabled build outside source tree
parent
27ead71f
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
16 deletions
+16
-16
config/ac-macros/ha_berkeley.m4
config/ac-macros/ha_berkeley.m4
+6
-6
config/ac-macros/ha_innodb.m4
config/ac-macros/ha_innodb.m4
+1
-1
config/ac-macros/ha_ndbcluster.m4
config/ac-macros/ha_ndbcluster.m4
+1
-1
extra/yassl/src/Makefile.am
extra/yassl/src/Makefile.am
+1
-1
extra/yassl/taocrypt/benchmark/Makefile.am
extra/yassl/taocrypt/benchmark/Makefile.am
+1
-1
extra/yassl/taocrypt/src/Makefile.am
extra/yassl/taocrypt/src/Makefile.am
+1
-1
extra/yassl/taocrypt/test/Makefile.am
extra/yassl/taocrypt/test/Makefile.am
+1
-1
extra/yassl/testsuite/Makefile.am
extra/yassl/testsuite/Makefile.am
+1
-1
libmysql/Makefile.shared
libmysql/Makefile.shared
+2
-2
ndb/src/mgmsrv/Makefile.am
ndb/src/mgmsrv/Makefile.am
+1
-1
No files found.
config/ac-macros/ha_berkeley.m4
View file @
1b61612f
...
@@ -243,20 +243,20 @@ bdb_version_ok=yes
...
@@ -243,20 +243,20 @@ bdb_version_ok=yes
])
])
AC_DEFUN([MYSQL_TOP_BUILDDIR], [
AC_DEFUN([MYSQL_TOP_BUILDDIR], [
# Remove trailing "./" if any
[$1]=`echo $[$1] | sed -e 's,^\./,,'`
case "$[$1]" in
case "$[$1]" in
/* ) ;; # don't do anything with an absolute path
"bdb" | "$srcdir/bdb" | "$top_srcdir/bdb" | "$abs_top_srcdir/bdb" )
"$srcdir"/* )
# If BDB is under the source directory, we need to look under the
# If BDB is under the source directory, we need to look under the
# build directory for bdb/build_unix.
# build directory for bdb/build_unix.
# NOTE: I'm being lazy, and assuming the user did not specify
[$1]="\$(top_builddir)/bdb"
# something like --with-berkeley-db=bdb (it would be missing "./").
[$1]="\$(top_builddir)/"`echo "$[$1]" | sed -e "s,^$srcdir/,,"`
;;
;;
/* ) ;; # Other absolute path is assume to be external BDB directory
* )
* )
AC_MSG_ERROR([The BDB directory must be directly under the MySQL source directory, or be specified using the full path. ('$srcdir'; '$[$1]')])
AC_MSG_ERROR([The BDB directory must be directly under the MySQL source directory, or be specified using the full path. ('$srcdir'; '$[$1]')])
;;
;;
esac
esac
if test X"$[$1]" != "/"
if test X"$[$1]" !=
X
"/"
then
then
[$1]=`echo $[$1] | sed -e 's,/$,,'`
[$1]=`echo $[$1] | sed -e 's,/$,,'`
fi
fi
...
...
config/ac-macros/ha_innodb.m4
View file @
1b61612f
...
@@ -20,7 +20,7 @@ AC_DEFUN([MYSQL_CHECK_INNODB], [
...
@@ -20,7 +20,7 @@ AC_DEFUN([MYSQL_CHECK_INNODB], [
AC_MSG_RESULT([Using Innodb])
AC_MSG_RESULT([Using Innodb])
AC_DEFINE([HAVE_INNOBASE_DB], [1], [Using Innobase DB])
AC_DEFINE([HAVE_INNOBASE_DB], [1], [Using Innobase DB])
have_innodb="yes"
have_innodb="yes"
innodb_includes="-I
..
/innobase/include"
innodb_includes="-I
\$(top_builddir)/innobase/include -I\$(top_srcdir)
/innobase/include"
innodb_system_libs=""
innodb_system_libs=""
dnl Some libs are listed several times, in order for gcc to sort out
dnl Some libs are listed several times, in order for gcc to sort out
dnl circular references.
dnl circular references.
...
...
config/ac-macros/ha_ndbcluster.m4
View file @
1b61612f
...
@@ -140,7 +140,7 @@ AC_DEFUN([MYSQL_CHECK_NDBCLUSTER], [
...
@@ -140,7 +140,7 @@ AC_DEFUN([MYSQL_CHECK_NDBCLUSTER], [
AC_MSG_RESULT([Using NDB Cluster])
AC_MSG_RESULT([Using NDB Cluster])
AC_DEFINE([HAVE_NDBCLUSTER_DB], [1], [Using Ndb Cluster DB])
AC_DEFINE([HAVE_NDBCLUSTER_DB], [1], [Using Ndb Cluster DB])
have_ndbcluster="yes"
have_ndbcluster="yes"
ndbcluster_includes="-I
../ndb/include -I../ndb/include/ndbapi -I..
/ndb/include/mgmapi"
ndbcluster_includes="-I
\$(top_builddir)/ndb/include -I\$(top_srcdir)/ndb/include -I\$(top_srcdir)/ndb/include/ndbapi -I\$(top_srcdir)
/ndb/include/mgmapi"
ndbcluster_libs="\$(top_builddir)/ndb/src/.libs/libndbclient.a"
ndbcluster_libs="\$(top_builddir)/ndb/src/.libs/libndbclient.a"
ndbcluster_system_libs=""
ndbcluster_system_libs=""
ndb_mgmclient_libs="\$(top_builddir)/ndb/src/mgmclient/libndbmgmclient.la"
ndb_mgmclient_libs="\$(top_builddir)/ndb/src/mgmclient/libndbmgmclient.la"
...
...
extra/yassl/src/Makefile.am
View file @
1b61612f
INCLUDES
=
-I
../include
-I
../taocrypt/include
-I
../taocrypt/mySTL
INCLUDES
=
-I
$(srcdir)
/../include
-I
$(srcdir)
/../taocrypt/include
-I
$(srcdir)
/
../taocrypt/mySTL
noinst_LTLIBRARIES
=
libyassl.la
noinst_LTLIBRARIES
=
libyassl.la
libyassl_la_SOURCES
=
buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp
\
libyassl_la_SOURCES
=
buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp
\
...
...
extra/yassl/taocrypt/benchmark/Makefile.am
View file @
1b61612f
INCLUDES
=
-I
../include
-I
../mySTL
INCLUDES
=
-I
$(srcdir)
/../include
-I
$(srcdir)
/
../mySTL
bin_PROGRAMS
=
benchmark
bin_PROGRAMS
=
benchmark
benchmark_SOURCES
=
benchmark.cpp
benchmark_SOURCES
=
benchmark.cpp
benchmark_LDADD
=
$(top_builddir)
/extra/yassl/taocrypt/src/libtaocrypt.la
benchmark_LDADD
=
$(top_builddir)
/extra/yassl/taocrypt/src/libtaocrypt.la
...
...
extra/yassl/taocrypt/src/Makefile.am
View file @
1b61612f
INCLUDES
=
-I
../include
-I
../mySTL
INCLUDES
=
-I
$(srcdir)
/../include
-I
$(srcdir)
/
../mySTL
noinst_LTLIBRARIES
=
libtaocrypt.la
noinst_LTLIBRARIES
=
libtaocrypt.la
...
...
extra/yassl/taocrypt/test/Makefile.am
View file @
1b61612f
INCLUDES
=
-I
../include
-I
../mySTL
INCLUDES
=
-I
$(srcdir)
/../include
-I
$(srcdir)
/
../mySTL
bin_PROGRAMS
=
test
bin_PROGRAMS
=
test
test_SOURCES
=
test.cpp
test_SOURCES
=
test.cpp
test_LDADD
=
$(top_builddir)
/extra/yassl/taocrypt/src/libtaocrypt.la
test_LDADD
=
$(top_builddir)
/extra/yassl/taocrypt/src/libtaocrypt.la
...
...
extra/yassl/testsuite/Makefile.am
View file @
1b61612f
INCLUDES
=
-I
../include
-I
../taocrypt/include
-I
../taocrypt/mySTL
INCLUDES
=
-I
$(srcdir)
/../include
-I
$(srcdir)
/../taocrypt/include
-I
$(srcdir)
/
../taocrypt/mySTL
bin_PROGRAMS
=
testsuite
bin_PROGRAMS
=
testsuite
testsuite_SOURCES
=
testsuite.cpp ../taocrypt/test/test.cpp
\
testsuite_SOURCES
=
testsuite.cpp ../taocrypt/test/test.cpp
\
../examples/client/client.cpp ../examples/server/server.cpp
\
../examples/client/client.cpp ../examples/server/server.cpp
\
...
...
libmysql/Makefile.shared
View file @
1b61612f
...
@@ -89,8 +89,8 @@ DEFS = -DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
...
@@ -89,8 +89,8 @@ DEFS = -DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
-DSHAREDIR
=
"
\"
$(MYSQLSHAREdir)
\"
"
$(target_defs)
-DSHAREDIR
=
"
\"
$(MYSQLSHAREdir)
\"
"
$(target_defs)
if
HAVE_YASSL
if
HAVE_YASSL
yassl_las
=
$(top_
src
dir)
/extra/yassl/src/libyassl.la
\
yassl_las
=
$(top_
build
dir)
/extra/yassl/src/libyassl.la
\
$(top_
src
dir)
/extra/yassl/taocrypt/src/libtaocrypt.la
$(top_
build
dir)
/extra/yassl/taocrypt/src/libtaocrypt.la
endif
endif
# The automatic dependencies miss this
# The automatic dependencies miss this
...
...
ndb/src/mgmsrv/Makefile.am
View file @
1b61612f
...
@@ -23,7 +23,7 @@ INCLUDES_LOC = -I$(top_srcdir)/ndb/src/ndbapi \
...
@@ -23,7 +23,7 @@ INCLUDES_LOC = -I$(top_srcdir)/ndb/src/ndbapi \
-I
$(top_srcdir)
/ndb/src/common/mgmcommon
\
-I
$(top_srcdir)
/ndb/src/common/mgmcommon
\
-I
$(top_srcdir)
/ndb/src/mgmclient
-I
$(top_srcdir)
/ndb/src/mgmclient
LDADD_LOC
=
$(top_
src
dir)
/ndb/src/mgmclient/CommandInterpreter.o
\
LDADD_LOC
=
$(top_
build
dir)
/ndb/src/mgmclient/CommandInterpreter.o
\
$(top_builddir)
/ndb/src/libndbclient.la
\
$(top_builddir)
/ndb/src/libndbclient.la
\
$(top_builddir)
/dbug/libdbug.a
\
$(top_builddir)
/dbug/libdbug.a
\
$(top_builddir)
/mysys/libmysys.a
\
$(top_builddir)
/mysys/libmysys.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