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
8278d716
Commit
8278d716
authored
Jun 15, 2004
by
tomas@mc05.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb fixes for make dist
parent
6c899a3b
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
8 deletions
+33
-8
acinclude.m4
acinclude.m4
+16
-0
configure.in
configure.in
+9
-2
mysql-test/ndb/Makefile.am
mysql-test/ndb/Makefile.am
+2
-2
mysql-test/ndb/ndbcluster.sh
mysql-test/ndb/ndbcluster.sh
+0
-0
ndb/Makefile.am
ndb/Makefile.am
+2
-1
ndb/docs/Makefile.am
ndb/docs/Makefile.am
+4
-3
No files found.
acinclude.m4
View file @
8278d716
...
...
@@ -1383,6 +1383,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
--with-ndb-test Include the NDB Cluster ndbapi test programs],
[ndb_test="$withval"],
[ndb_test=no])
AC_ARG_WITH([ndb-docs],
[
--with-ndb-docs Include the NDB Cluster ndbapi and mgmapi documentation],
[ndb_docs="$withval"],
[ndb_docs=no])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_RESULT([])
...
...
@@ -1422,6 +1427,17 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
;;
esac
have_ndb_docs=no
case "$ndb_docs" in
yes )
AC_MSG_RESULT([-- including ndbapi and mgmapi documentation])
have_ndb_docs="yes"
;;
* )
AC_MSG_RESULT([-- not including ndbapi and mgmapi documentation])
;;
esac
AC_MSG_RESULT([done.])
])
...
...
configure.in
View file @
8278d716
...
...
@@ -2919,16 +2919,23 @@ then
fi
AC_SUBST([ndb_transporter_opt_objs])
ndb_opt_subdirs=
ndb_bin_am_ldflags="
-static
"
if test X"
$have_ndb_test
" = Xyes
then
ndb_opt_test_subdirs="
test
"
ndb_opt_subdirs="
test
"
ndb_bin_am_ldflags=""
fi
if test X"
$have_ndb_docs
" = Xyes
then
ndb_opt_subdirs="
$ndb_opt_subdirs
docs
"
ndb_bin_am_ldflags=""
fi
AC_SUBST([ndb_bin_am_ldflags])
AC_SUBST([ndb_opt_
test_
subdirs])
AC_SUBST([ndb_opt_subdirs])
AC_CONFIG_FILES(ndb/Makefile ndb/include/Makefile dnl
ndb/src/Makefile ndb/src/common/Makefile dnl
ndb/docs/Makefile dnl
ndb/tools/Makefile dnl
ndb/src/common/debugger/Makefile ndb/src/common/debugger/signaldata/Makefile dnl
ndb/src/common/portlib/Makefile dnl
...
...
mysql-test/ndb/Makefile.am
View file @
8278d716
...
...
@@ -4,9 +4,9 @@ testdir = $(benchdir_root)/mysql-test/ndb
test_SCRIPTS
=
ndbcluster
EXTRA_SCRIPT
S
=
ndbcluster.sh
noinst_HEADER
S
=
ndbcluster.sh
test_DATA
=
ndb_config_2_node.ini
dist_
test_DATA
=
ndb_config_2_node.ini
SUFFIXES
=
.sh
...
...
mysql-test/ndb/ndbcluster.sh
100755 → 100644
View file @
8278d716
File mode changed from 100755 to 100644
ndb/Makefile.am
View file @
8278d716
SUBDIRS
=
src tools
.
include
$(ndb_opt_test_subdirs)
SUBDIRS
=
src tools
.
include @ndb_opt_subdirs@
DIST_SUBDIRS
=
src tools include
test
docs
EXTRA_DIST
=
config
include
$(top_srcdir)/ndb/config/common.mk.am
...
...
ndb/docs/Makefile.am
View file @
8278d716
DOXYDIR
=
doxygen
noinst_HEADERS
=
$(DOXYDIR)
/predoxy.pl
$(DOXYDIR)
/postdoxy.pl
$(DOXYDIR)
/Doxyfile.ndbapi
$(DOXYDIR)
/Doxyfile.mgmapi
$(DOXYDIR)
/header.ndbapi.tex
$(DOXYDIR)
/header.mgmapi.tex
all
:
do-check ndbapidoc mgmapidoc
DOXYDIR
=
doxygen
DOXYTMP
=
.doxytmp
DOXYOUT
=
.doxyout
...
...
@@ -35,7 +36,7 @@ do-check:
#
ndbapidoc
:
ndbapi.pdf
ndbapi.pdf
:
$(
top_srcdir)/ndb/include/ndb_version.h
ndbapi.pdf
:
$(
noinst_HEADERS)
@
set
-x
;
\
export
NDB_RELEASE
=
$(NDB_RELEASE)
\
@RM@
-f
ndbapi.pdf ndbapi.html
;
\
...
...
@@ -59,7 +60,7 @@ ndbapi.pdf: $(top_srcdir)/ndb/include/ndb_version.h
#
mgmapidoc
:
mgmapi.pdf
mgmapi.pdf
:
$(
top_srcdir)/ndb/include/ndb_version.h
mgmapi.pdf
:
$(
noinst_HEADERS)
@
set
-x
;
\
export
NDB_RELEASE
=
$(NDB_RELEASE)
\
@RM@
-f
mgmapi.pdf mgmapi.html
;
\
...
...
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