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
5c8eb706
Commit
5c8eb706
authored
Sep 26, 2004
by
hartmut@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added --without-man option similar to --without-docs
(part of BUG#5379)
parent
42b063c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
Makefile.am
Makefile.am
+1
-1
configure.in
configure.in
+15
-0
No files found.
Makefile.am
View file @
5c8eb706
...
...
@@ -22,7 +22,7 @@ AUTOMAKE_OPTIONS = foreign
EXTRA_DIST
=
INSTALL-SOURCE README COPYING EXCEPTIONS-CLIENT
SUBDIRS
=
.
include @docs_dirs@ @readline_dir@
\
@thread_dirs@ pstack @sql_client_dirs@
\
@sql_server_dirs@ scripts
man
tests
\
@sql_server_dirs@ scripts
@man_dirs@
tests
\
BUILD netware os2 @libmysqld_dirs@
\
@bench_dirs@ support-files @fs_dirs@ @tools_dirs@
...
...
configure.in
View file @
5c8eb706
...
...
@@ -2181,6 +2181,21 @@ else
fi
AC_SUBST
(
docs_dirs
)
# Shall we build the man pages?
AC_ARG_WITH
(
man,
[
--without-man
Skip building of the man pages.],
[
with_man
=
$withval
]
,
[
with_man
=
yes
]
)
if
test
"
$with_man
"
=
"yes"
then
man_dirs
=
"man"
else
man_dirs
=
""
fi
AC_SUBST
(
man_dirs
)
# Shall we build the bench code?
AC_ARG_WITH
(
bench,
[
--without-bench
Skip building of the benchmark suite.],
...
...
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